/* =============================================
   Variables
   ============================================= */
/* =============================================
   Reset y base
   ============================================= */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: #1c282c;
  background: #0059b5;
  font-family: Arial, Helvetica, sans-serif;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
section {
  scroll-margin-top: 90px;
}
.container {
  max-width: 1180px;
}
/* Deshabilita delay en pantallas medianas */
@media screen and (max-width: 1199px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}
main {
  position: relative;
  background: url(../img/bg/BG_secciones.png) center center / cover no-repeat;
}
@media (max-width: 576px) {
  main {
    position: relative;
    background: url(../img/bg/BG_secciones.png) center top / cover no-repeat;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  main {
    position: relative;
    background: url(../img/bg/BG_secciones.png) center top / cover no-repeat;
  }
}
@media (min-width: 992px) and (max-width: 1300px) {
  main {
    position: relative;
    background: url(../img/bg/BG_secciones.png) center top / cover no-repeat;
  }
}
/* =============================================
   Utilidades generales
   ============================================= */
.section-title {
  text-align: center;
  margin: 0 auto 60px;
  padding: 0 15px;
}
.section-title h2 {
  margin: 0;
  color: #ffffff;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
}
/* Botón principal (hero CTA) */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  padding: 12px 36px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: #f94ba8;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-main:hover {
  color: #ffffff;
  background: #f82d9a;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}
@media (max-width: 576px) {
  .section-title {
    margin-bottom: 32px;
  }
  .section-title h2 {
    font-size: 28px;
    line-height: 1.15;
  }
  .btn-main {
    min-width: 200px;
    min-height: 48px;
    font-size: 14px;
    padding: 10px 24px;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .section-title {
    margin-bottom: 44px;
  }
  .section-title h2 {
    font-size: 36px;
  }
}
@media (min-width: 992px) and (max-width: 1300px) {
  .section-title h2 {
    font-size: 40px;
  }
}
/* =============================================
   Botón volver arriba
   ============================================= */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  width: 44px;
  height: 44px;
  border: 1px solid #ffffff;
  border-radius: 12px;
  background: #3a669c;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}
.scroll-top:hover {
  background: #f94ba8;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/* =============================================
   Header
   ============================================= */
.header {
  width: 100%;
  max-width: 1920px;
  height: 64px;
  padding: 0 28px;
  margin: 0 auto;
  background: transparent;
  transition: all 0.35s ease;
  z-index: 997;
}
.header .logo img {
  max-height: 36px;
  width: auto;
  display: block;
}
.header.sticked {
  height: 60px;
  background: rgba(0, 64, 132, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}
@media (max-width: 576px) {
  .header {
    height: 58px;
    padding: 0 16px;
  }
  .header .logo img {
    max-height: 30px;
  }
  .header.sticked {
    height: 58px;
  }
}
/* =============================================
   Navegación desktop
   ============================================= */
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }
  .navbar ul {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .navbar li {
    position: relative;
  }
  .navbar a,
  .navbar a:focus {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 2px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    white-space: nowrap;
    transition: color 0.25s ease;
  }
  .navbar a::before,
  .navbar a:focus::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: #f94ba8;
    visibility: hidden;
    transition: all 0.25s ease;
  }
  .navbar a:hover::before,
  .navbar li:hover > a::before,
  .navbar .active::before {
    width: 100%;
    visibility: visible;
  }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #ffffff;
  }
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}
/* =============================================
   Navegación mobile
   ============================================= */
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 100%;
    max-width: 380px;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 70px 0 20px;
    margin: 0;
    background: linear-gradient(180deg, #004b99 0%, #009ee3 100%);
    overflow-y: auto;
    list-style: none;
    z-index: 9998;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    transition: 0.25s;
  }
  .navbar a:hover,
  .navbar li:hover > a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
  }
  .navbar .active,
  .navbar .active:focus {
    color: #ffffff;
    background: rgba(249, 75, 168, 0.22);
    border-left: 5px solid #f94ba8;
    padding-left: 21px;
  }
  .mobile-nav-show {
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
  }
  .mobile-nav-hide {
    position: fixed;
    top: 20px;
    right: 22px;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .navbar {
    right: 0;
  }
  .mobile-nav-active .navbar::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 21, 60, 0.7);
    z-index: 9996;
  }
}
/* =============================================
   Hero
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0059b5;
}
.hero .hero-cont {
  position: relative;
  min-height: 70vh;
  padding: 100px 24px 60px;
  background: linear-gradient(180deg, rgba(0, 157, 227, 0.18) 0%, rgba(0, 75, 155, 0.28) 100%), url('../img/bg/bg_HOME.png') center bottom no-repeat;
  background-size: cover;
}
.hero .hero-left {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.hero .hero-brand {
  max-width: 800px;
  margin: 0 auto;
}
.hero .hero-info {
  max-width: 420px;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
}
.hero .hero-info h1 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}
.hero .hero-info h1 span {
  display: block;
  font-size: 1.5em;
  line-height: 0.9;
}
.hero .hero-info p {
  max-width: 320px;
  margin: 0 auto 28px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 576px) {
  .hero .hero-cont {
    min-height: auto;
    padding: 84px 15px 42px;
    background-position: center top;
  }
  .hero .hero-left {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .hero .hero-brand {
    max-width: 320px;
    margin: 0 auto;
  }
  .hero .hero-info {
    max-width: 100%;
    text-align: center;
  }
  .hero .hero-info h1 {
    font-size: 2.4rem;
    letter-spacing: -1px;
  }
  .hero .hero-info h1 span {
    font-size: 1.5em;
  }
  .hero .hero-info p {
    max-width: 290px;
    margin: 10px auto 22px;
    font-size: 15px;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .hero .hero-cont {
    min-height: auto;
    padding: 92px 20px 52px;
  }
  .hero .hero-brand {
    max-width: 480px;
  }
  .hero .hero-info {
    text-align: center;
  }
  .hero .hero-info h1 {
    font-size: 3rem;
  }
  .hero .hero-info p {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) and (max-width: 1300px) {
  .hero .hero-cont {
    min-height: 640px;
    padding-top: 95px;
  }
  .hero .hero-info h1 {
    font-size: 3.4rem;
  }
}
/* =============================================
   Dinámica
   ============================================= */
.dinamica {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Tarjeta de paso */
  /* Ícono del paso */
  /* Cuerpo de texto del paso */
}
.dinamica .dinamica-cont {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(180deg, rgba(0, 75, 153, 0.82) 0%, rgba(0, 157, 224, 0.72) 100%);
}
.dinamica .step-card {
  width: 100%;
  margin: 0 auto 24px;
  padding: 36px 26px 32px;
  border: 3px solid #5bc4ec;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 65, 140, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dinamica .step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 65, 140, 0.3);
}
.dinamica .step-icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dinamica .step-icon img {
  max-height: 90px;
  width: auto;
}
.dinamica .step-body h3 {
  margin: 0 0 6px;
  color: #f94ba8;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.05;
  /* Texto secundario del título */
}
.dinamica .step-body h3 .h3-sub {
  font-weight: 700;
}
.dinamica .step-body p {
  max-width: 350px;
  margin: 0 auto;
  color: #1c282c;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}
.dinamica .step-body p strong {
  color: #f94ba8;
  font-weight: 900;
}
@media (max-width: 576px) {
  .dinamica .dinamica-cont {
    padding: 52px 0 58px;
  }
  .dinamica .step-card {
    max-width: 320px;
    padding: 26px 20px 28px;
    border-radius: 22px;
  }
  .dinamica .step-icon {
    width: 72px;
    height: 72px;
  }
  .dinamica .step-icon img {
    max-height: 58px;
  }
  .dinamica .step-body h3 {
    font-size: 20px;
  }
  .dinamica .step-body p {
    font-size: 15px;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .dinamica {
    /* Cuerpo de texto del paso */
  }
  .dinamica .dinamica-cont {
    padding: 68px 0 72px;
  }
  .dinamica .step-card {
    max-width: 340px;
  }
  .dinamica .step-body h3 {
    margin: 0 0 6px;
    color: #f94ba8;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.05;
    /* Texto secundario del título */
  }
  .dinamica .step-body h3 .h3-sub {
    font-weight: 700;
  }
  .dinamica .step-body p {
    max-width: 250px;
    margin: 0 auto;
    color: #1c282c;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
  }
  .dinamica .step-body p strong {
    color: #f94ba8;
    font-weight: 900;
  }
}
@media (min-width: 992px) and (max-width: 1300px) {
  .dinamica {
    /* Cuerpo de texto del paso */
  }
  .dinamica .step-body h3 {
    margin: 0 0 6px;
    color: #f94ba8;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.05;
    /* Texto secundario del título */
  }
  .dinamica .step-body h3 .h3-sub {
    font-weight: 700;
  }
  .dinamica .step-body p {
    max-width: 250px;
    margin: 0 auto;
    color: #1c282c;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
  }
  .dinamica .step-body p strong {
    color: #f94ba8;
    font-weight: 900;
  }
}
/* =============================================
   Premios
   ============================================= */
.premios {
  position: relative;
  overflow: hidden;
  /* Copy lateral izquierdo */
  /* Tarjeta general del premio */
  /* Carrusel interno del premio */
  /* Contenido individual del premio */
  /* Paginación del carrusel */
  /* Botones prev/next del carrusel */
}
.premios .premios-cont {
  position: relative;
  padding: 90px 0 90px;
  background: linear-gradient(180deg, rgba(0, 157, 224, 0.68) 0%, rgba(0, 118, 201, 0.75) 100%);
}
.premios .premios-copy {
  color: #ffffff;
}
.premios .premios-copy h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.5px;
}
.premios .premios-copy p {
  max-width: 340px;
  margin: 0;
  color: #ffffff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.1;
}
.premios .premio-card {
  width: 100%;
  max-width: 540px;
  min-height: 410px;
  margin: 0 auto;
  padding: 48px 36px 32px;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 14px 32px rgba(0, 30, 80, 0.34);
}
.premios .premios-slider {
  position: relative;
  width: 100%;
  padding: 0 52px 48px;
  overflow: hidden;
}
.premios .premios-slider .swiper-wrapper {
  align-items: stretch;
}
.premios .premios-slider .swiper-slide {
  height: auto;
}
.premios .premio-item {
  width: 100%;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.premios .premio-item img {
  max-width: 340px;
  max-height: 270px;
  width: auto;
  margin: 0 auto 18px;
  object-fit: contain;
}
.premios .premio-item p {
  margin: 0;
  color: #5e5e5e;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
.premios .premios-pagination {
  bottom: 6px;
}
.premios .premios-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: #ffffff;
  opacity: 0.5;
  border: 1px solid #f94ba8;
}
.premios .premios-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #f94ba8;
}
.premios .premios-btn {
  position: absolute;
  top: 44%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #3a669c;
  box-shadow: 0 6px 16px rgba(0, 42, 110, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.premios .premios-btn i {
  font-size: 20px;
  line-height: 1;
}
.premios .premios-btn:hover {
  background: #f94ba8;
  color: #ffffff;
  transform: scale(1.08);
}
.premios .swiper-prev-premios {
  left: 0;
}
.premios .swiper-next-premios {
  right: 0;
}
@media (max-width: 576px) {
  .premios .premios-cont {
    padding: 52px 0 60px;
  }
  .premios .premios-copy {
    margin-bottom: 32px;
    text-align: center;
  }
  .premios .premios-copy h2 {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
  .premios .premios-copy p {
    max-width: 280px;
    margin: 0 auto;
    font-size: 18px;
  }
  .premios .premio-card {
    max-width: 310px;
    min-height: 310px;
    padding: 32px 18px 26px;
    border-radius: 22px;
  }
  .premios .premios-slider {
    padding: 0 18px 42px;
  }
  .premios .premio-item {
    min-height: 235px;
  }
  .premios .premio-item img {
    max-width: 220px;
    max-height: 175px;
    margin-bottom: 16px;
  }
  .premios .premio-item p {
    font-size: 16px;
  }
  .premios .premios-btn {
    display: none;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .premios .premios-copy {
    margin-bottom: 36px;
    text-align: center;
  }
  .premios .premios-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .premios .premio-card {
    max-width: 520px;
  }
}
@media (min-width: 992px) and (max-width: 1300px) {
  .premios .premios-copy h2 {
    font-size: 38px;
  }
  .premios .premios-copy p {
    font-size: 22px;
  }
  .premios .premio-card {
    max-width: 490px;
    min-height: 390px;
  }
  .premios .premio-item {
    min-height: 300px;
  }
}
/* =============================================
   Productos
   ============================================= */
.productos {
  position: relative;
  overflow: hidden;
  /* Slider wrapper */
  /* Tarjeta de producto */
  /* Imagen del producto */
  /* Botón de compra */
  /* Paginación del slider */
  /* Botones prev/next del slider */
}
.productos .productos-cont {
  position: relative;
  padding: 90px 0 95px;
  background: linear-gradient(180deg, rgba(0, 118, 201, 0.72) 0%, rgba(48, 167, 223, 0.65) 100%);
}
.productos .section-title {
  margin-bottom: 40px;
}
.productos .products-slider {
  position: relative;
  padding: 0 50px 55px;
}
.productos .swiper-wrapper {
  align-items: stretch;
}
.productos .swiper-slide {
  height: auto;
}
.productos .product-card {
  height: 100%;
  padding: 18px 16px 20px;
  border: 2.5px solid #2145b8;
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 42, 110, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.productos .product-img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.productos .product-img img {
  max-height: 125px;
  width: auto;
}
.productos .product-card h3 {
  flex: 1;
  margin: 0 auto 14px;
  color: #1c282c;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.2;
}
.productos .btn-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  min-height: 36px;
  margin: 0 auto;
  padding: 7px 18px;
  border-radius: 999px;
  background: #3a669c;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease;
}
.productos .btn-product:hover {
  color: #ffffff;
  background: #f94ba8;
  transform: translateY(-2px);
}
.productos .products-pagination {
  bottom: 10px;
}
.productos .products-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: #ffffff;
  opacity: 0.5;
}
.productos .products-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #f94ba8;
}
.productos .swiper-btn {
  position: absolute;
  top: 40%;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #3a669c;
  box-shadow: 0 6px 16px rgba(0, 42, 110, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.productos .swiper-btn i {
  font-size: 20px;
  line-height: 1;
}
.productos .swiper-btn:hover {
  background: #f94ba8;
  color: #ffffff;
  transform: scale(1.08);
}
.productos .swiper-prev-products {
  left: 0;
}
.productos .swiper-next-products {
  right: 0;
}
@media (max-width: 576px) {
  .productos .productos-cont {
    padding: 42px 0 68px;
  }
  .productos .products-slider {
    padding: 0 20px 48px;
  }
  .productos .product-card {
    max-width: 255px;
    margin: 0 auto;
  }
  .productos .swiper-btn {
    display: none;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .productos .productos-cont {
    padding: 48px 0 78px;
  }
}
/* =============================================
   Footer
   ============================================= */
#footer {
  background: #3a669c;
  color: #ffffff;
}
#footer .footer-top {
  padding: 32px 0 28px;
}
#footer .footer-logo {
  margin-bottom: 12px;
  text-align: center;
}
#footer .footer-logo img {
  max-height: 40px;
  width: auto;
}
#footer .footer-info {
  text-align: center;
}
#footer .footer-info p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}
#footer .footer-info a {
  color: #ffffff;
}
#footer .footer-info a:hover {
  text-decoration: underline;
}
@media (max-width: 576px) {
  #footer .footer-top {
    padding: 26px 0;
  }
  #footer .footer-info p {
    font-size: 12.5px;
  }
}
