:root{
  --azul:#0647A8;
  --azul-oscuro:#042A66;
  --turquesa:#0EAFC6;
  --verde:#00A86B;
  --gris:#F5F8FC;
  --texto:#0B1F3A;
  --suave:#EEF6FF;
}

*{
  box-sizing:border-box;
}

html,
body{
  max-width:100%;
  overflow-x:hidden;
}

body{
  color:var(--texto);
  background:#fff;
}

/* =========================
   TOP BAR
========================= */

.site-header{
  background:linear-gradient(90deg,var(--azul),var(--turquesa));
  padding:6px 0;
}

.site-header .container,
.navbar .container{
  max-width:1320px;
}

/* =========================
   NAVBAR
========================= */

.navbar{
  padding:8px 0;
}

.navbar .container{
  display:flex;
  align-items:center;
}

.navbar-brand{
  width:270px;
  min-width:270px;
  margin-right:18px;
  padding:0;
}

.logo-migra{
  max-height:58px !important;
  width:auto !important;
}

.navbar-nav{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
}

.navbar .nav-link{
  font-weight:800;
  color:#1b2b45;
  font-size:15px;
  padding:8px 4px !important;
  white-space:nowrap;
}

.navbar .nav-link:hover,
.navbar .nav-link.active{
  color:var(--azul);
}

.btn-migra{
  background:var(--azul);
  color:#fff !important;
  border-radius:13px;
  padding:11px 16px;
  font-weight:900;
  border:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  white-space:nowrap;
  min-width:200px;
  font-size:15px;
}

.btn-migra:hover{
  background:var(--azul-oscuro);
}

.btn-outline-migra{
  border:2px solid var(--azul);
  color:var(--azul) !important;
  border-radius:12px;
  padding:10px 18px;
  font-weight:900;
  background:#fff;
  display:inline-flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
}

/* =========================
   HERO COMO FONDO
   IMPORTANTE:
   Este CSS está en Landing/css/landing.css
   Por eso la imagen se llama con ../images/
========================= */

.hero-migra{
  position:relative;
  overflow:hidden;
  min-height:620px;
  display:flex;
  align-items:center;
  background:#f3f8ff;
}

.hero-migra::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.97) 0%,
      rgba(245,248,252,.90) 34%,
      rgba(245,248,252,.20) 55%,
      rgba(245,248,252,.03) 100%
    ),
    url('../images/PrimeraBox.png');
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  z-index:1;
}

.hero-migra .container{
  position:relative;
  z-index:2;
}

.hero-content{
  max-width:620px;
  position:relative;
  z-index:2;
  padding-top:30px;
  padding-bottom:30px;
}

.hero-title{
  font-size:52px;
  font-weight:900;
  color:var(--azul-oscuro);
  line-height:1.08;
}

.hero-title span{
  color:var(--azul);
}

.hero-text{
  font-size:18px;
  line-height:1.8;
  color:#30415f;
  max-width:560px;
}

.hero-img{
  display:none;
}

.mini-benefit{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-right:20px;
  margin-bottom:10px;
  color:#233a5e;
  font-weight:800;
  font-size:14px;
}

.mini-benefit i{
  color:var(--azul);
  font-size:20px;
}

/* =========================
   GENERAL
========================= */

.section-padding{
  padding-top:65px;
  padding-bottom:65px;
}

.section-soft{
  background:linear-gradient(180deg,#f4f8fd,#eef4fb);
}

.section-title{
  color:var(--azul-oscuro);
  font-weight:900;
  text-align:center;
  margin-bottom:12px;
}

.section-title:after{
  content:"";
  display:block;
  width:60px;
  height:4px;
  background:var(--turquesa);
  margin:14px auto 0;
  border-radius:20px;
}

/* =========================
   CARDS GENERALES
========================= */

.help-card,
.service-card,
.news-card,
.faq-item,
.testimonial-card{
  background:#fff;
  border-radius:20px;
  box-shadow:0 10px 28px rgba(10,40,80,.08);
  border:1px solid #edf1f6;
  transition:all .25s ease;
}

/* =========================
   AYUDA
========================= */

.help-card{
  padding:28px 18px;
  text-align:center;
  height:100%;
}

.help-card:hover{
  background:linear-gradient(180deg,#ffffff,#edf7ff);
  border-color:var(--turquesa);
  transform:translateY(-8px);
}

.help-icon{
  width:68px;
  height:68px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
  font-size:32px;
  color:var(--azul);
  background:#edf5ff;
}

.help-card h5{
  font-weight:900;
  color:var(--azul-oscuro);
  font-size:17px;
}

.help-card p{
  font-size:14px;
  color:#5b6b82;
  margin:0;
}

/* =========================
   FORMULARIOS
========================= */

.form-panel{
  background:linear-gradient(135deg,#0647A8,#042A66);
  border-radius:22px;
  padding:34px;
  color:#fff;
  height:100%;
}

.form-panel h3{
  color:#fff;
  font-weight:900;
}

.form-panel p{
  color:#dceaff;
}

.form-control,
.form-select{
  border-radius:12px;
  border:1px solid #e1e8f0;
  min-height:52px;
  font-weight:700;
}

.btn-whatsapp{
  background:var(--verde);
  color:#fff;
  border-radius:12px;
  min-height:52px;
  font-weight:900;
  border:0;
}

/* =========================
   RECORDATORIOS
========================= */

.reminder-panel{
  background:#fff;
  border-radius:22px;
  padding:34px;
  height:100%;
  box-shadow:0 10px 28px rgba(10,40,80,.08);
  position:relative;
  overflow:hidden;
}

.reminder-panel h3{
  color:var(--azul-oscuro);
  font-weight:900;
}

.reminder-panel:after{
  content:"\F18A";
  font-family:"bootstrap-icons";
  position:absolute;
  right:35px;
  top:55px;
  font-size:110px;
  color:rgba(6,71,168,.10);
}

.check-list{
  list-style:none;
  padding:0;
  margin:18px 0;
}

.check-list li{
  margin-bottom:9px;
  font-weight:800;
  color:#31415d;
}

.check-list i{
  color:var(--verde);
  margin-right:7px;
}

/* =========================
   PASOS
========================= */

.step-box{
  text-align:center;
  padding:28px 20px;
  border-radius:20px;
  transition:all .25s ease;
}

.step-box:hover{
  background:#f1f8ff;
  transform:translateY(-5px);
}

.step-number{
  width:54px;
  height:54px;
  background:var(--azul);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  margin:0 auto 18px;
  box-shadow:0 10px 25px rgba(6,71,168,.25);
}

.step-box:hover .step-number{
  background:var(--turquesa);
}

/* =========================
   SERVICIOS
========================= */

.service-card{
  padding:32px;
  height:100%;
}

.service-card i{
  color:var(--turquesa);
  font-size:40px;
  margin-bottom:16px;
  display:block;
}

.service-card h5{
  font-weight:900;
  color:var(--azul-oscuro);
}

.service-card:hover{
  background:linear-gradient(135deg,var(--azul),var(--turquesa));
  color:#fff;
  transform:translateY(-8px);
}

.service-card:hover h5,
.service-card:hover p,
.service-card:hover i{
  color:#fff !important;
}

/* =========================
   NOVEDADES
========================= */

.news-card{
  overflow:hidden;
  height:100%;
}

.news-card:hover{
  transform:translateY(-8px);
}

.news-card img{
  width:100%;
  height:165px;
  object-fit:cover;
}

.news-card-body{
  padding:24px;
}

.news-card h5{
  color:var(--azul-oscuro) !important;
  font-weight:900;
  line-height:1.25;
}

.news-card:hover h5{
  color:var(--turquesa) !important;
}

.badge-migra{
  background:#eaf3ff;
  color:var(--azul);
  font-weight:900;
  border-radius:10px;
  padding:7px 12px;
  font-size:13px;
}

/* =========================
   FAQ Y TESTIMONIOS
========================= */

.faq-item{
  padding:18px 22px;
  margin-bottom:12px;
  font-weight:800;
  color:var(--azul-oscuro);
}

.faq-item:hover{
  background:#eef7ff;
  border-color:var(--turquesa);
}

.testimonial-card{
  padding:28px;
  height:100%;
  text-align:center;
}

.testimonial-card p{
  color:#5b6b82;
  line-height:1.7;
}

.testimonial-mini{
  background:#fff;
  border-radius:18px;
  padding:22px;
  box-shadow:0 8px 22px rgba(10,40,80,.07);
  border-left:5px solid var(--turquesa);
  height:100%;
}

.testimonial-mini strong{
  color:var(--azul-oscuro);
}

/* =========================
   FOOTER
========================= */

.site-footer{
  background:linear-gradient(135deg,#042A66,#001B46);
  padding-top:50px;
}

.footer-logo{
  max-width:230px;
  filter:brightness(0) invert(1);
}

.footer-contact{
  color:#fff;
  margin-top:18px;
}

.footer-contact div{
  margin-bottom:10px;
}

.footer-contact i{
  color:var(--turquesa);
  margin-right:8px;
}

.site-footer-title{
  color:var(--turquesa) !important;
  font-weight:900;
}

.site-footer-bottom{
  background:rgba(0,0,0,.18);
}


/* =========================
   REGISTRO GOOGLE
========================= */

.form-panel-registro{
  min-height:540px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.registro-icono{
  width:82px;
  height:82px;
  margin:0 auto 22px;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  display:flex;
  align-items:center;
  justify-content:center;
}

.registro-icono i{
  font-size:38px;
  color:#ffffff;
}

.form-panel-registro h2{
  color:#ffffff !important;
  font-size:52px;
  font-weight:900;
  line-height:1.1;
  margin-bottom:20px;
}

.form-panel-registro p{
  color:#eaf3ff !important;
  font-size:21px;
  line-height:1.7;
  max-width:650px;
  margin-bottom:35px;
}

.btn-google-registro{
  background:#ffffff;
  color:#1b2b45;
  border:none;
  border-radius:14px;
  padding:15px 28px;
  font-size:20px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.20);
  transition:.3s;
}

.btn-google-registro:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.btn-google-registro i{
  color:#DB4437;
  font-size:24px;
}

.beneficio-registro{
  color:#ffffff;
  font-size:17px;
  font-weight:700;
  margin-bottom:10px;
}

.beneficio-registro i{
  color:#32d17d;
  margin-right:8px;
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:1399px){
  .navbar .container{
    max-width:1200px;
  }

  .navbar-brand{
    width:230px;
    min-width:230px;
    margin-right:12px;
  }

  .logo-migra{
    max-height:52px !important;
  }

  .navbar-nav{
    gap:7px;
  }

  .navbar .nav-link{
    font-size:14px;
  }

  .btn-migra{
    min-width:178px;
    padding:10px 12px;
    font-size:14px;
  }
}

@media(max-width:1199px){
  .navbar-brand{
    width:210px;
    min-width:210px;
  }

  .logo-migra{
    max-height:48px !important;
  }

  .navbar-nav{
    gap:5px;
  }

  .navbar .nav-link{
    font-size:13px;
  }

  .btn-migra{
    min-width:160px;
    padding:9px 10px;
    font-size:13px;
  }
}

@media(max-width:991px){
  .navbar .container{
    max-width:100%;
  }

  .navbar-brand{
    width:auto;
    min-width:auto;
  }

  .logo-migra{
    max-height:56px !important;
  }

  .navbar-nav{
    align-items:flex-start;
    gap:4px;
    padding-top:15px;
  }

    .hero-migra{
    min-height:560px;
    padding:45px 0;
    }

    .hero-migra::before{
    background-position:68% center;
    opacity:.45;
    }

    .hero-content{
    max-width:100%;
    padding-top:20px;
    padding-bottom:20px;
    }

    .hero-title{
    font-size:38px;
    }

    .beneficio-registro{
    color:#ffffff;
    font-size:15px;
    font-weight:700;
    margin-bottom:10px;
    }

    .beneficio-registro i{
    color:#32d17d;
    margin-right:8px;
    }


}



