:root {
    /* paleta Zeus — todos los colores del sitio salen de aquí */
    --azul-mas-oscuro: #041a5e;
    --azul-oscuro: #06268c;
    --azul-brillante: #0424d9;

    --gris-pizarra: #4b505b; /* textos sobre fondos claros */
    --gris-plomo: #7a7a7a; /* textos sobre fondos oscuros */
    
    --fondo-gris-1: #edf2f7; /* fondo secciones */
    --fondo-gris-2: #f6f8fa; /* fondo tarjetas / casi blanco */
    --fondo-gris-3: #b3bece; /* fondo tarjetas / casi blanco */

    --metalico: #7f8d95;
    --metalico-azulado: #B0C4DE;

    --dorado: #FFD700;
    --dorado-metalico: #DAA520;

    --gradiente-primario: linear-gradient(90deg, var(--azul-oscuro) 0%, var(--azul-brillante) 100%);
    --gradiente-ligero: linear-gradient(90deg, var(--fondo-gris-1) 0%, var(--fondo-gris-2) 100%);
}
/* 
   IMPORTACIÓN DE FUENTES: HELVETICA NEUE LT (Rutas y formato corregidos)
    */

/* 1. Thin (35) - Ultra delgadita (Peso 100) */
@font-face {
    font-family: 'Helvetica Neue LT';
    src: url('../fonts/font_HelveticaNeueLTW05-35Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

/* 2. Light (45) - Ligera y elegante (Peso 300) */
@font-face {
    font-family: 'Helvetica Neue LT';
    src: url('../fonts/HelveticaNeueLTW0545Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* 3. Roman (55) - Texto normal (Peso 400) */
@font-face {
    font-family: 'Helvetica Neue LT';
    src: url('../fonts/HelveticaNeueLTW0555Roman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* 4. Bold (75) - Negrita para resaltar (Peso 700) */
@font-face {
    font-family: 'Helvetica Neue LT';
    src: url('../fonts/font_HelveticaNeueLTW05-75Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* 5. Heavy (85) - Súper gruesa para títulos masivos (Peso 900) */
@font-face {
    font-family: 'Helvetica Neue LT';
    src: url('../fonts/HelveticaNeueLTW0585Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

body {
    font-family: 'Helvetica Neue LT', Arial, sans-serif !important;
    overflow-x: hidden;
    font-weight: 400; /* Usará automáticamente el archivo Roman (55) */
}
h1{
    font-weight: bold;
}

main {
    margin-top: 0px;
}

body {
    color: var(--gris-pizarra);
}

/* 2. Sobrescribimos todos los títulos, párrafos y clases que antes eran negros */
h1, h2, h3, h4, h5, h6, p, li,
.txt-title-interna, 
.txt-title-mobile, 
.txt-title,
.txt-subtitle, 
.txt-subtitle-slider, 
.txt-subtitle-level-1, 
.txt-subtitle-level-2, 
.txt-paragraph, 
.post-footer_item,
.text-content,
.sub-text-content,
.diestablishments-item p,
.diestablishments-item span {
    color: var(--azul-oscuro) !important;
}

/* 3. Aseguramos que los enlaces del footer también combinen */
.footer-list a {
    color: var(--gris-pizarra) !important;
}

.footer-list a:hover {
    color: var(--azul-brillante) !important;
}
.top-banner {
    backdrop-filter: blur(20px);
    background-color: rgba(4,36,217,.1);
    color: white;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: height 0.3s ease, opacity 0.3s ease;
    z-index: 10000;
  }
.banner-title{
    padding: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;  
    min-height: 350px;
    /* gradiente azul Zeus — antes era morado oscuro */
    background: var(--fondo-gris-2);
    background: linear-gradient(309deg, var(--fondo-gris-2) 1%, var(--metalico-azulado) 60%);
    /*background: var(--azul-mas-oscuro);
    background: linear-gradient(309deg, var(--azul-mas-oscuro) 1%, var(--azul-oscuro) 60%);*/
}
.c-secondary{
    color: #fff!important;
}
.c-white{
    color: var(--fondo-gris-2) !important;
}
.optimice{
    color: var(--fondo-gris-2) !important;
}
.btnContact {
    transition: color 0.3s ease-in-out !important;
}

.btnContact:hover {
    color: var(--azul-brillante) !important;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    margin: auto;
}

.carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

/* --- AJUSTE DE IMAGEN DE ARRIBA DEL FORM PARA MÓVILES --- */
@media (max-width: 768px) {
    .img-effect {
        position: relative !important;
        width: 85% !important; /* Que ocupe un buen espacio de la pantalla */
        max-width: 350px !important; /* Un tope para que no se vea grosera en celulares muy anchos */
        height: auto !important;
        left: 0 !important;
        margin: 0 auto 30px auto !important; /* Centrada y con un poco de aire abajo */
        display: block !important;
        transform: scale(1) !important; 
    }
}

@media (min-width: 1024px) {
    .carousel-item {
        flex: 0 0 25%;
    }
}

@media (max-width: 767px) {
    .carousel-item {
        flex: 0 0 100%;
    }
}

.carousel-item {
    flex: 0 0 calc(25% - 20px);
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
      width: 250px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
}

@media (max-width: 767px) {
    .carousel-item {
        flex: 0 0 100%;
    }
}
.carousel-container, .carousel, .carousel-item {
    border: none;
}
.banner-title .txt-title-interna{
    color: var(--fondo-gris-2);
     
}
  .top-banner.hidden {
    height: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
  }

  .close-button_top {
    background-color: transparent;
    color: white;
    border: none;
    border: 1px solid white;
    border-radius: 25px;
    height: 35px;
    width: 35px;
    cursor: pointer;
  }

  .menu-language {
    position: relative;
    display: inline-block;
  }
  .dropdown-arrow {
    border: solid #181821;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    margin-left: 12px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    position: relative;
    top: -3px;
  }
  .dropdown-container.open .dropdown-arrow {
    transform: rotate(-135deg);
  }
  .language-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #181821;
    background-color: var(--fondo-gris-2);
    border: 1px solid white;
    border-radius: 24px 6px 6px 24px;
    padding: 10px 20px;
    cursor: pointer;
    transition: .3s;
}
.language-button_image{
    width: 25px;
    border-radius: 16px;
    margin-right: 8px;
}
.language-button:hover {
    background-color: var(--azul-brillante);
    border: 1px solid var(--azul-brillante);
  }

  .dropdown {
    display: none;
    position: absolute;
    background-color: var(--fondo-gris-2);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
    min-width: 150px;
    top: 55px;
    right: 0;
  }

  .dropdown a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown a:hover {
    background-color: #ddd;
  }
  nav.shrinked {
    padding: 10px;
  }
.monster-banner-container {
  position: relative;
  height: 950px;
  /* overflow: hidden; */
}
.text-title-level-1{
    font-size: 3.425rem;
    font-weight: 600;
    line-height: 3.525rem;

    color: var(--azul-oscuro);
    font-weight: 600;
}
.text-title-level-2{
    font-size: 1.175rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--fondo-gris-2) !important;
}
/* --- LOGO Y HAMBURGUESA A LAS ESQUINAS --- */
.nav-wrapper .nav-mob {
    justify-content: space-between !important; 
    width: 100%; /* Garantiza que el contenedor abarque de orilla a orilla */
}
.board-product {
    display: flex;
  }

  .board-product {
    display: flex;
  }

  .board-paragraph {
    flex: 1;
  }

  .paragraph-item{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 20px;
  }

  .animation {
    flex: 0 0 50%;
    position: sticky;
    width: 50%;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #lottie-container {
    width: 700px;
    height: 700px;
  }
  .paragraph-item {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.paragraph-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@keyframes bounce {
  0% {
    transform: translateY(30px) scale(0.95);
  }
  50% {
    transform: translateY(-10px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.paragraph-item {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s ease;
}

.paragraph-item.visible {
  opacity: 1;
  animation: bounce 0.1s ease-out;
}
@media (min-width: 576px) {
    .container-nav {
      max-width: 540px;
    }
  }
  @media (min-width: 768px) {
    .container-nav {
      max-width: 720px;
    }
  }
  @media (min-width: 992px) {
    .container-nav{
      max-width: 960px;
    }
  }
  @media (min-width: 1200px) {
    .container-nav {
      max-width: 1140px;
    }
  }
  @media (min-width: 1400px) {
    .container-nav {
      max-width: 1320px;
    }
  }

nav.down{
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 1);
}
.menu-hamb_item{
    fill: white;
    transition: .6s;
}
nav.down .menu-hamb_item{
    fill: var(--azul-oscuro) !important;
}

nav.down.nav-wrapper{
    /* position: fixed; */
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
nav img{
   width: 35%;
   height: auto;
   transition: .6s;
}
nav.down img{
   width: 30%;
}
/* cuando el nav hace scroll y se pone blanco, los links van oscuros */
nav.down .nav-links{
   color: var(--azul-mas-oscuro);
}
nav .btn-medium{
    margin-left: 9rem;
}
.text-subtitle{
    font-size: 1rem;
    color: #ffffff;
}
.nav-wrapper{
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    border-bottom: none;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    transition: .7s;
}
/* --- ADIÓS AL FONDO MORADO DEL BOTÓN HAMBURGUESA --- */

/* Quitamos cualquier borde por defecto */
.navbar-toggler {
    border: none !important; 
    padding: 0 !important; /* Le quitamos el relleno extra para que quede al ras */
}

/* Matamos el fondo y los contornos al hacerle clic (focus, active, y desplegado) */
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler[aria-expanded="true"] {
    background-color: transparent !important; /* Adiós al morado */
    box-shadow: none !important; /* Matamos el resplandor de Bootstrap */
    outline: none !important; /* Quitamos la línea de selección del navegador */
}
.btn-primary{
    background-color: transparent;
    border-left: none;    
    border-right: none;    
    border-top: none;    
}

/* links siempre blancos sobre fondo oscuro del nav */
.nav-links{
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 2px;
    margin-left: 15px;
    font-size: .65rem;
    text-decoration: none;
    transition: .7s;
}
.nav-space{
    flex: 1;
    justify-content: flex-end;
}
.nav-links:hover{
    color: var(--azul-brillante)!important;
}
.btn-medium{
    background-color: var(--azul-oscuro);
    color: #fff;
    border-radius:25px;
    padding: 15px 40px;
    font-size: .65rem;
    text-transform: uppercase;
    text-decoration: none;
    border:none;
    transition: .3s;
}
.btn-medium:hover{
    background-color: var(--azul-brillante);
    padding-left: 40px;
    color: #fff!important;
    transition: 0.8s;
    transform: translateY(-3px);
}
.navbar-light .navbar-nav .nav-link{
    color: #ffffff;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.navbar-light .navbar-nav .inactive{
    color: rgb(51, 51, 51)!important;
}
.navbar-nav {
    padding-top: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
nav.down .btn-medium{
    color: var(--fondo-gris-2);
    transition: .6s;
}
nav.down .brand{
    width: 122px;
    height: 48px;
    transition: .6s;
}
nav.down .brand-headerone{
    fill: var(--azul-brillante);
}
nav.down .brand-headertwo{
    fill: var(--azul-oscuro);
}
.brand{
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    width: 122px;
    height: 48px;
    white-space: nowrap;
    color: var(--fondo-gris-2);
}
.brand .brand-headerone{
    fill: var(--azul-brillante);
    transition: .6s;
}
.brand .brand-headertwo{
    fill: var(--fondo-gris-2);
    transition: .6s;
}
.img-effect {
    transition: transform 0.7s ease-out, box-shadow 0.7s ease-out;
    transform: scale(0.7);
     transform-origin: center center;
     left: 0;
}

.img-effect.active {
    transform: scale(1.2);
}
.monster-banner-image {
  background-image: url('../images/livingrock-bg-slider_01.png');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.monster-banner-text-overlay {
  position: absolute;
  top: 50%;
  left: 9%;
  transform: translateY(-50%);
  z-index: 1;
}
.bienvenido-bg{
    background: var(--fondo-gris-2);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, var(--fondo-gris-1) 67%, rgba(6,38,140,0.12) 100%);
}
.bienvenido-wrapper{
    min-height: 1350px;
}

.beneficios-wrapper{
    padding: 72px 0px;
    background-color: var(--fondo-gris-2) !important;
}
.beneficios-wrapper .txt-paragraph{
    word-wrap: break-word;
    overflow-wrap: break-word;
   width: 60%;
}

/* ENVOLTURA DE SERVICIOS EN GRIS */
.services-wrapper {
    padding: 50px 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    z-index: 1;
    background: var(--fondo-gris-1) !important;
}
.services-item{
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
    border-radius: 12px;
    min-height: 250px;
    margin-right: 16px;
    margin-bottom: 16px;
    background-color: rgba(4, 36, 217, 0.14);
   border: 1px solid rgba(4,36,217,0.55);
}
.services-item__text{
    display: flex;
    justify-content: flex-start;
    align-items: center;

}
.services-item__point{
    font-size: 3.325rem!important;
    font-family: "Poppins";
    font-weight: 600;
    color:var(--azul-oscuro);
    margin-bottom: 0;
    padding-right: 16px;
}
/* TARJETAS DE COLOR GRIS*/

.services-item {
   background-color: var(--fondo-gris-2) !important;
   border: 1px solid rgba(6, 38, 140, 0.15) !important; 
   box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05); /* Una sombrita muy leve para que resalten del fondo */
}

.services-item__deg{
    background: var(--azul-oscuro);
    background: var(--gradiente-primario);
    color: var(--fondo-gris-2)!important;
}
.services-item__deg p{
    color: var(--fondo-gris-2)!important;
}
.swiper-container {
    width: 100%;
    padding-bottom: 30px;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.swiper-button-next, .swiper-button-prev {
    color: #000;
}

.swiper-pagination-bullet {
    background: #000;
}
.transactions-board{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 72px 0;
    min-height: 800px;
    background-color: var(--fondo-gris-2) !important;
}
.transactions-board img{
    margin: 0 auto;
    width: 75%;
    padding: 64px 0px;
}
.services-item img{
    width: 50%;
    margin-bottom: 20px;
}

.services-item span{
    text-align: left;
}
.inclusion-board{
    min-height: 900px;
    padding: 100px 0;
    /* antes naranja, ahora azul suave */
    background: var(--fondo-gris-1);
    background: linear-gradient(0deg, rgba(6,38,140,0.10) 0%, rgba(255,255,255,0.02) 67%, rgba(255,255,255,0) 100%);
}
.membresia-board{
    min-height: 900px;
    padding: 20px 100px;
}
.inclusion-title{
    padding-bottom: 50px;
}
.inclusion-wrapper{
    padding: 50px 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}
.membresia-wrapper{
    padding: 50px 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.membresia-anim, .logos-anim{
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
}
.inclusion-item{
    background: var(--fondo-gris-1);
    margin-bottom: 50px;
    padding: 24px;
    border: 1px solid var(--azul-oscuro);
    border-radius: 24px;
    width: 28%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inclusion-item img{
    width: 25%;
    padding-right: 15px;
}
.bienvenida-anim{
    position: absolute;
    left: 0;
    top: 15%;
    right: 0;
    bottom: 0;
    margin: auto;
}
.inclusion-item p{
    font-size: 2.125!important;
    font-family: "Poppins";
    font-weight: 800;
    line-height: 24px;
    color:#444444;
    margin-bottom: 10px!important;
}
.inclusion-item span{
    font-family: "Poppins";
    color:#444444;
    text-align: center;
}
.inclusion-paragraph{
    min-height: auto;
}
.card-big{
    margin-bottom: 50px;
    padding: 24px;
    border: 1px solid var(--azul-oscuro);
    border-radius: 24px;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--azul-brillante);
    background: linear-gradient(174deg, rgba(4,36,217,0.12) 0%, rgba(255,255,255,1) 43%, rgba(255,255,255,1) 100%);
}
.card-list{
    padding-top: 24px;
    padding-left: 0;
}
.card-app{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 16px;
}
.card-app img{
    width: 30%;
}
.card-app :first-child{
    padding-right: 10px;
}
.card-list li{
    list-style: none;
}
.card-big-title{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--azul-oscuro);
    margin-bottom: 15px;
}
.card-big-paragraph p{
    text-transform: uppercase;
    font-weight: 800;
    font-family: "poppins";
    color:#444444;

}
.card-big-title p{
    font-weight: 800;
    line-height: 25px;
    color: #444444;
}
.card-big-title img{
   max-width: 120px;
   padding-right: 15px;
}
.card-big-list li{
    padding-bottom: 10px;
}
.deposito-wrapper{
    padding: 50px 0;
}
.deposito-wrapper img{
   width: 246px;
}
.txt-title{
    font-weight: 600;
    font-size: 3rem;
    line-height: 60px;
    color: white;
    margin-bottom: 1rem;
}
.txt-title-slider{
    font-weight: 900;
    text-align: center;
    font-size: 4.125rem;
    line-height: 90px;
    padding-top: 15px;
    color: #0e0e0e;
    margin-bottom: 1rem;
    margin: 0 auto;
}
.txt-title-interna{
    font-weight: 900;
    font-size: 3.125rem;
    line-height: 60px;
    color: black;
    margin-bottom: 1rem;
}
.img-slider{
    width: 70%;
}
.txt-title-mobile{
    font-weight: 900;
    font-size: 2.125rem;
    line-height: 40px;
    color: #0e0e0e;
    text-align: center;
}
.bienvenida-img-1{
    margin: auto;
}
.bienvenida-img-2{
    margin: auto;
}
.bienvenida-img-3{
    margin: auto;
} 
.txt-subtitle{
    font-family: 'Poppins';
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 21px;
    color: black;
}
.title-wrapper-slider{
    z-index: 2;
    margin: auto;
}
.board-column{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.board-column .txt-title{
     font-size: 4.125rem;
    line-height: 60px;
    color: white;
    margin-bottom: 1rem;
}
.board-column .txt-title strong{
    font-weight: 600;
    color: var(--fondo-gris-1);
}
.board-column_item:first-child{
    width: 100%;
    padding-bottom: 20px;
    height: 600px;
}
.board-column_item:last-child{
    text-align: center;
    z-index: 1;
}
.board-column_item{
    position: relative;
}
.image-absolut{
    position: absolute;
    width: 100%;
    max-width: 1000px; 
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease-out, filter 0.3s ease-out;
}
.board-twin{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 100vh;
}
.board-twin_item:first-child{
    margin-right: 40px;
}
.board-twin_item:first-child .txt-title{
    padding-bottom: 16px;
}
.board-twin_item:first-child .text-subtitle{
    padding-bottom: 16px;
}
.board-column_item .txt-title{
    line-height: 4.525rem;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 24px;
}
.board-twin_item{
    width: 47%;
    padding-top: 0px;
    z-index: 1;
}
.board-twin_item img{
    width: 100%;
    display: block;
}
/* --- BANNER PRINCIPAL EN GRIS PIZARRA --- */

/* 1. Título y subtítulo del banner en gris pizarra */
.board-column_item .txt-title,
.board-column_item .text-subtitle {
    color: var(--gris-pizarra) !important;
}

/* 2. Detalle pro: Hacemos que la palabra "conexión" (el strong) resalte en azul para que no se vea aburrido */
.board-column_item .txt-title strong {
    color: var(--azul-oscuro) !important;
}

.text-title-level-3 {
    color: var(--fondo-gris-2) !important;
}
.txt-subtitle-slider{
    font-family: 'Poppins';
    font-weight: medium;
    text-align: center;
    font-size: 2.175rem;
    line-height: 20px;
    padding-top: 40px;
    box-shadow: #f5f5f5;
    color: #0e0e0e;
}
.txt-subtitle-level-1{
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 32px;
    padding-top: 16px;
    color: #15151C;
}
.txt-paragraph{
    color: var(--gris-plomo)  !important;
    
    font-size: 1rem;
}
.txt-subtitle-level-2{
    font-family: 'Poppins';
    font-weight: medium;
    font-size: 1.175rem;
    line-height: 20px;
    padding-top: 16px;
    color: #444444;
}
.wallet-wrapper{
    min-height: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.wallet-wrapper__item{
    width: 68%;
}
.wallet-img{
    width: 100%;
}
.wallet-list{
    padding-top: 15px;
}
.wallet-list li{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 15px;
    list-style-type: none;
    margin-right: 15px;
}
.wallet-list li :nth-child(1){
   width: 15px;
   height: 15px;
}
.wallet-list li :nth-child(2){
   width: 99%;
}
.wallet-list small{
    display: inline-block;
    content:"";
    width: 12px;
    height: 12px;
   background: var(--azul-brillante);
    margin-right: 10px;
}
.txt-subtitle-mobile{
    font-family: 'Arial';
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 24px;
}

.bg-cover-slider {
    background-image: url('../images/KubitPay-imagebanner_01.png');
    /* background-image: url('../images/masefe-slider_01.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 1000px;
}

/* --- FONDO DEL BANNER PRINCIPAL (Degradado Suave para borrar el corte) --- */
.bg-cover-bienvenido {
    background-image: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
    /* MAGIA: Degradado que mantiene el gris arriba y se funde a blanco al final */
    background: linear-gradient(180deg, var(--fondo-gris-1) 70%, var(--fondo-gris-2) 100%) !important; 
    
    min-height: 100vh !important;
    height: auto !important;      
    padding-bottom: 80px !important;
}
/* Hacemos que el texto "La conexión de los grandes" sea azul oscuro para que se lea */
.board-column .txt-title,
.text-subtitle {
    color: var(--azul-oscuro) !important;
}
.bg-cover-beneficios {
    /*background-image: url('../images/livingrock-bg-web_02a.png');
    /* background-image: url('../images/bg-beneficios.png'); */
    background-size: cover;
    height: 850px;
    /*display: flex;
    flex-direction: column;
    justify-content: flex-end;]*/
}
.bg-cover-digital {
    background-size: cover;
    height: 768px;
    /*display: flex;
    flex-direction: column;
    justify-content: flex-end;]*/
}

.bg-cover-beneficios-02 {
    /* background-image: url('../images/kubit-brands.png'); */
    /* background-image: url('../images/masefe-dispersion_bgdesktop.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.bg-cover-tarjetahabiente {
    background-image: url('../images/masefe-beneficios_bgdesktop.png');
    /* background-image: url('../images/masefe-dispersion_bgdesktop.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 1000px;
}
.bg-cover-cashback {
    background-image: url('../images/masefe-cashback_bgdesktop.png');
    /* background-image: url('../images/masefe-dispersion_bgdesktop.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 1000px;
}
.cashback-board .cashback-offert{
    font-size: 2.1rem;
}
.cashback-board .cashback-offert strong{
    font-weight: 800;
    font-size: 2.1rem;
    display: block;
}
.monster-accordion__service{
    color: #f5f5f5;
}
.life-board{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    min-height: 800px;
}
.card-bottom__left{
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 900px;
}
.card-top__right{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    min-height: 900px;
}
.card-top__right .card-item{

}
.card-item{
    padding: 32px;
    border-radius: 16px;

}

.life-board__item{
    background-color: rgba(7,27,92,.5);
    padding: 32px;
    border-radius: 16px;
    color: var(--gris-pizarra);
}
.life-board__item .txt-subtitle-level-1{
    color: var(--gris-pizarra);
}
.life-board__item .txt-paragraph{
    color: var(--gris-pizarra);
}
.bg-cover-crossborder, .bg-cover-control{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 900px;
}
.bg-cover-crossborder {
    background-image: url('../images/bg-05.png');
    /* background-image: url('../images/masefe-dispersion_bgdesktop.png'); */
   
}
.bg-cover-control {
    background-image: url('../images/bg-06.png');
    /* background-image: url('../images/masefe-dispersion_bgdesktop.png'); */
 
}

.bg-cover-beneficios-03 {
    /* background-image: url('../images/livingrock-bg_transparencia.png'); */
    background-size: cover;
    background-color: var(--azul-mas-oscuro);
    background-position: center;
    background-repeat: no-repeat;
    height: 1000px;
}

.bg-servicios-card{
    background-image: url('../images/livingrock-bg_servicios-mob.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 1000px;
}

.bg-cover-servicios {
    background-image: url('../images/livingrock-bg_servicios.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 1300px;
}

.text-content {
    color: white;
    padding-left: 10%;
    padding-top: 10%;
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 2rem;
    line-height: 42px;
}

.sub-text-content{
    padding-left: 10%;
    margin-top: 60%;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 23px;
    font-family: 'Arial';
}

.image-content {
    text-align: center;
}
.image-content img {
    max-width: 100%;
    height: auto;
}

.diamond-bullets {
  list-style: none;
  padding-left: 10px;
}

.diamond-bullets li {
  position: relative;
  padding-left: 40px;
}

.plus-bullets li::before {
  content: '';
  background-image: url('../images/list-plus.png');
  /* position: absolute; */
  left: 0;
  top: 50%;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: var(--azul-brillante);
}
.diamond-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: var(--azul-brillante);
}

.slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slide {
  position: relative;
}

.slide img {
  width: 100%;
  display: block;
}

.text-overlay {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  color: white;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 5px;
  text-align: center;
}

.text-overlay p {
  margin: 10px 0 0;
  font-size: 16px;
}
.list-item-footer{
    padding-top: 25px;
}

#Bienvenido, #Bene, #Serv, #Productos, #LifeStyle, #Wallet, #Inclusion, #Digital, #Aplicacion, #Tarjetahabiente, #Cashback, #Beneficios, #Beneficios-02, #Beneficios-03, #Servicios{
    display: flex;
}

#Bienvenido-mobile, #ProductoMob, #TecMob, #identidadMob, #Beneficios-mobile, #Servicios-mobile, #Deposito-mobile, #Membresia-mobile, #Inclusion-mobile, #Wallet-mobile, #lifestyle-mobile, #Crossborder-mobile, #Cashback-mobile, #Aplicacion-mobile, #sitemap-mobile {
    display: none;
}

.diestablishments-list{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.diestablishments-list .diestablishments-item{
    width: 28%;
    display: flex;
    padding-top: 25px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.diestablishments-item p{
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    padding:15px 0px;
    margin: 0;
}
.diestablishments-item span{
    font-size: 1rem;
    line-height: 1.1;
    text-align: center;
}
.text-beneficios-mob{
    background-color: var(--azul-mas-oscuro);
    padding: 15px;
    min-height: 500px;
}
.app-mob{
    background-color: var(--azul-mas-oscuro);
    padding: 15px;
}
.diestablishments-c-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
}
.slide-beneficios{
    border-bottom: 1px solid #D5D5D5;
    margin-bottom: 35px;
}
.diestablishments-c-item p{
    font-weight: 800;
    text-align: center;
    font-size: 1.3rem;
    margin-top: 15px;
    margin-bottom: 15px;
}
.diestablishments-c-item span{
    font-weight: 300;
    text-align: center;
    font-size: 1rem;
}
.slide-beneficios-title{
    border-bottom: 1px solid #D5D5D5;
    margin-bottom: 35px;
}
.empresarial-title{
    padding: 40px 0px;
}
.empresarial-title h2{
    padding-bottom: 24px;
}
.empresarial-title-item{
    display: flex;
    flex-direction: column;
}
.empresarial-title-item img{
   width: 100%;
}
.empresarial-item{
    background-color: #f5f5f5;
    border-radius: 16px;
    padding: 48px;
    border: 2px solid #ffffff;
    margin-right: 50px;
    min-height: 580px;
    background: linear-gradient(140deg, rgba(4,36,217,0.12) 2%, rgb(237, 242, 247), rgb(255, 255, 255));
    -webkit-box-shadow: 0 20px 15px -5px rgba(0,0,0,5%),0 8px 10px -6px rgba(0,0,0,.10%);
    -moz-box-shadow: 0 20px 15px -5px rgba(0,0,0,5%),0 8px 10px -6px rgba(0,0,0,.10%);
    box-shadow: 0 20px 15px -5px rgba(0,0,0,5%),0 8px 10px -6px rgba(0,0,0,.10%);
}
.bienvenido-bg{
    background-image: url('../images/KubitPay-bgwhite_slider.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.empresarial-item-img{
    /* background-image: url('../images/masefe-empresarial.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 48px;
    border: 2px solid #ffffff;
    margin-right: 50px;
    min-height: 580px;
    -webkit-box-shadow: 0 20px 15px -5px rgba(0,0,0,5%),0 8px 10px -6px rgba(0,0,0,.10%);
    -moz-box-shadow: 0 20px 15px -5px rgba(0,0,0,5%),0 8px 10px -6px rgba(0,0,0,.10%);
    box-shadow: 0 20px 15px -5px rgba(0,0,0,5%),0 8px 10px -6px rgba(0,0,0,.10%);
}
/* evita scroll horizontal en cualquier resolución */
.block-wrapper {
    width: 100%;
    min-width: 100% !important;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 1920px) {
    .block-wrapper {
        min-width: 100% !important;
    }  
}

/* nav siempre de orilla a orilla sin importar el zoom */
nav, .nav-wrapper, .top-banner {
    width: 100%;
    max-width: 100vw;
}

.footer-contact{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.footer-contact .footer-contact__title {
    width: 100%;
    text-align: center;
    margin-top: 150px;
    margin-bottom: 50px;
     overflow: hidden;
    position: relative;
}
.footer-contact .btn-form {
    text-align: center;
    margin-bottom: 50px;
}
.footer-contact .footer-contact__form {
    width: 80%;
    margin: 0 auto;
}
.footer-contact__title p{
    color: #e7e7e7;
}
.form-wrapper_labtwin{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}
/* campos del form — borde blanco semitransparente, visible sobre fondo oscuro */
.form-wrapper_labtwin .form-wrapper_lab{
    width: 48%;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.25);
    stroke-width: 1;
    padding: 24px;
    margin-bottom: 35px;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}
/* borde se ilumina al escribir */
.form-wrapper_labtwin .form-wrapper_lab:focus-within{
    border-color: rgba(255, 255, 255, 0.6);
}
.form-wrapper_mess{
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 24px;
    margin-bottom: 35px;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}
.form-wrapper_mess:focus-within{
    border-color: rgba(255, 255, 255, 0.6);
}
.form-label{
    font-family: 'Poppins';
    color: rgba(255, 255, 255, 0.7);
    display: none;
}
.form-wrapper_lab input{
    background-color: transparent;
    border: none;
}
.form-wrapper_mess .form-control{
    background-color: transparent;
    border: none;
}
.footer-contact__title .monster-accordion__service{
    color: var(--fondo-gris-2) !important;
    padding-bottom: 24px;
}
.footer-lab{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: initial;
    border-top: 1px solid #E9E9E9;
    padding-top: 20px;
}
.footer-lab-legend{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: initial;
    padding-bottom: 0;
}
.footer-lab-legend a{
    font-size: 0.75rem;
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid #c5c5c5;
    color: #c5c5c5;
}
.footer-lab-item{
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid #c5c5c5;
    color: #c5c5c5;
}
.footer-lab-legend p{
    font-size: 0.75rem;
    color: #c5c5c5;
    margin-bottom: 0;
}
.footer-lab-social img{
    width: 30%;
    margin: auto;
}
.footer-wrapper{
    padding: 70px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--fondo-gris-2);
}
.footer-wrapper_item:nth-child(1){
    width: 90%;
}
.footer-wrapper_item:nth-child(2){
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.footer-list{
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-list a{
    color: #15151C;
    padding-left: 16px;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
    font-size: .75rem;
}
.footer-list a:hover{
    color: var(--azul-brillante)!important;
}
.footer-legend{ 
    font-size: 1.125rem;
    margin-bottom: 0.7rem;
    font-weight: 300;
    width: 70%;
    color: var(--fondo-gris-3)!important;
}
.footer-title{
    font-size: 1rem;
    font-weight: 400;
}
.footer-social,
.footer-app{
    padding-top: 15px;
    width: 80%;
    display: flex;
    list-style: none;
    align-items: center;
    padding-left: 0;
}

.footer-social{
    justify-content: space-between;
}
.footer-app{
    justify-content: flex-start;
}
.footer-app img{
    width: 60%;
}
.post-footer{
    padding-top: 24px;
    padding-bottom: 0px;
    border-top: 1px solid #06268c;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.post-footer_item:nth-child(1){
    width: 90%;
    padding-bottom: 16px;
}
.post-footer_item:nth-child(2){
    width: 25%;
}
.post-footer_item{
    color: #15151C;
    font-size: .75rem;
}
/* .multiple-slider .slick-list{
    min-height: 650px;

} */
.cashback-img{
    width: 80%;
}
.cashback-board{
    text-align: left;
}
.KubitPay-footer{
    display: block;
}
.block-wrapper{
    min-width: 1920px;
}
@media screen and (min-width:1024px){
    .footer-wrapper{
        justify-content: space-between;
    }
    .footer-wrapper_item:nth-child(1){
        width: 29%;
    }
    .footer-wrapper_item:nth-child(2){
        width: 70%;
        flex-direction: row-reverse;
    }
    .post-footer_item:nth-child(1){
        width: 40%;
        padding-bottom: 0px;
    }
    .post-footer_item:nth-child(2){
        width: 8%;
    }
}

/* 
   MENÚ DE HAMBURGUESA: ESTILO TARJETA FLOTANTE TIPO APP
    */
@media (max-width: 768px) {
    
    /* 1. La Tarjeta Flotante (Cerrada) */
    .navbar-collapse {
        display: block !important; 
        position: absolute;
        top: 110%; /* Lo separamos un poquito de la barra superior para que respire */
        left: 5%; /* Margen a los lados para que no choque con las orillas */
        width: 90%; /* Ocupa casi toda la pantalla pero centrada */
        background-color: #ffffff !important; /* Fondo blanco puro */
        border-radius: 16px; /* Bordes redondeados muy modernos */
        border: 1px solid rgba(6, 38, 140, 0.08); /* Borde súper finito color azul */
        box-shadow: 0px 20px 40px rgba(6, 38, 140, 0.15); /* Sombra difuminada azulada */
        z-index: 9999;
        
        /* Animación suave */
        visibility: hidden;
        opacity: 0;
        transform: translateY(-15px); 
        max-height: 0; 
        padding: 0; 
        overflow: hidden;
        /* Una curva de animación más profesional (arranca rápido, frena suave) */
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important; 
    }

    /* 2. La Tarjeta Flotante (Abierta) */
    .navbar-collapse.show {
        visibility: visible;
        opacity: 1;
        transform: translateY(0); 
        max-height: 600px; 
        padding: 15px 10px; /* Espacio interno para que no se vea apretado */
    }

    /* 3. Evitar que Bootstrap rompa la animación */
    .navbar-collapse.collapsing {
        display: block !important;
        height: auto !important;
        position: absolute;
        top: 110%;
        left: 5%;
        width: 90%;
        background-color: #ffffff !important;
        border-radius: 16px;
        z-index: 9999;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    }
    
    /* 4. Diseño de los Enlaces (Botones grandes y cómodos para el dedo) */
    .navbar-collapse .nav-links,
    .navbar-collapse .navbar-light .navbar-nav .nav-link {
        color: var(--gris-pizarra)!important;
        text-align: left; /* Alineado a la izquierda se ve más ordenado en listas */
        padding: 12px 20px !important;
        margin: 4px 10px !important;
        border-radius: 10px; /* El hover tendrá forma de pastilla */
        font-weight: 500;
        display: block; /* Abarca todo el renglón para que sea fácil tocarlo */
        transition: all 0.2s ease-in-out !important;
    }

    /* 5. Hover fondo azul y texto brillante */
    .navbar-collapse .nav-links:hover,
    .navbar-collapse .navbar-light .navbar-nav .nav-link:hover {
        background-color: rgba(4, 36, 217, 0.06) !important; /* Fondo azul casi transparente */
        color: var(--azul-brillante) !important;
        transform: translateX(8px); /* El texto da un "pasito" a la derecha súper chido */
    }

    /* Separación extra para tu botón principal (Login) */
    nav .btn-medium {
        margin: 20px auto 10px auto !important;
        width: 85%;
    }
}

@media (max-width: 768px) {
    .empresarial-item-img{
        margin-right: 0px;
    }
    .empresarial-item{
        padding: 24px;
        margin-right: 0px;
    }
    .nav-item{
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    nav .btn-medium.btn-medium{
        margin-left: 0;
    }
     .wallet-wrapper{
        min-height: 500px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding-top: 50px;
    }
     .wallet-wrapper__item{
        width: 100%;
    }
    .life-board{
        min-height: auto;
    }
    .bg-cover-crossborder {
        height: 500px;
    }
    .footer-contact .footer-contact__title {
        width: 100%;
    }
    .footer-contact .footer-contact__form {
        width: 100%;
    }
    .form-wrapper_labtwin .form-wrapper_lab{
        width: 100%;
        
    }
    .card-bottom__left{
        min-height: 500px;
    }
    .card-top__right .card-item{
        flex-direction: row !important; 
        justify-content: flex-end !important;
    }
    .img-effect {
     left: -15%;
     position: relative;
    }
    .footer-wrapper{
        flex-direction: column;
        align-items: center;
    }
    .footer-social, .footer-app{
        width: 100%;
    }
    .footer-wrapper_item:nth-child(2){
        align-items: center;
        padding-top: 32px;
    }
    .footer-list{
        flex-direction: column;
    }
    .footer-list a{
        padding-bottom: 32px;
    }
    .post-footer_item:nth-child(1){
        width: 100%;
    }
    .footer-wrapper{
        padding: 16px 0;
    }
    .post-footer{
        text-align: center;
    }
    .post-footer_item:nth-child(2){
        margin: 0 auto;
    }
}

.button-footer-mob{
    background-color: #ffffff!important;
    border-bottom: 1px solid #e7e7e7;
}
.button-footer-mob button{
    background-color: var(--azul-mas-oscuro);
    border-bottom: 1px solid #353535;
    border: 0px;
}

@media (max-width: 767px) {
    .bg-servicios-card{
        height: 900px;
    }
    .bg-servicios-card .img-serv-cards{
        margin-top: 40%;
    }
    .board-twin_item{
        width: 100%;
        padding-top: 170px;
    }
    .board-twin_item:first-child{
        margin-right: 0px;
    }
    .board-twin_item img{
        display: none;
        width: 100%;
    }
    .services-board{
        min-height: 900px;
    }
    .membresia-anim, .logos-anim{
        display: none;
    }
    .board-column_item:first-child{
        height: 475px;
    }
    .beneficios-wrapper .txt-paragraph{
        width: 100%;
    }
    .services-board{
        min-height: 300px;
    }
    .text-title-level-1{
        font-size: 2.625rem;
        line-height: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .transactions-board{
        padding: 0;
        min-height: 600px;
        background-color: var(--fondo-gris-1) !important;
    }
}

@media (max-width: 512px) {
    .bg-servicios-card{
        height: 800px;
    }

    .bg-servicios-card .img-serv-cards{
        margin-top: 30%;
    }
}

@media (max-width: 454px) {
    .bg-servicios-card{
        height: 700px;
    }

    .bg-servicios-card .img-serv-cards{
        margin-top: 30%;
    }
}

@media (max-width: 412px) {
    .bg-servicios-card .img-serv-cards{
        margin-top: 50%;
    }
}

/* --- AJUSTE DEL ESPACIO INFERIOR DEL FOOTER EN MÓVILES --- */
@media (max-width: 768px) {
    
    /* 1. Matamos el enorme espacio de 50px de la caja principal del footer */
    .footer {
        padding-bottom: 15px !important; 
    }
    
    /* 2. Reducimos el espacio extra debajo de tu texto de derechos reservados */
    .post-footer_item:nth-child(1) {
        padding-bottom: 5px !important; 
    }
    
    /* 3. Acomodamos el contenedor del post-footer para que no tenga márgenes raros */
    .post-footer {
        padding-bottom: 0px !important;
        margin-bottom: 0px !important;
    }
}
.footer{
    background-color: var(--fondo-gris-2);
    padding: 0px 0px 50px 0;
}
.footer-list{
   margin-right: 20px;
   padding-left: 0px;
}
.footer-item{
   padding-top: 15px;
   list-style: none;
}
.footer-app{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}
.bi-chevron-down{
    color: white;
}
.footer-app img{
    width: 200px;
}
.serv-cards{
    height: 60%;
}

.slick-dots{
    position: initial !important;
    text-align: center !important;
    padding: 15px 0!important;
    display:none!important;
}

.slick-dots li.slick-active button:before{
    color: var(--azul-brillante) !important;
}

.slick-dots li button:before {
    font-size: 12px !important;
}

::placeholder {
  color: #D5D5D5 !important;
}

:-moz-placeholder {
  color: #D5D5D5 !important;
}

:-ms-input-placeholder {
  color: #D5D5D5 !important;
}

.error {
  color: #F93430;
  display: inline-block;
  font-weight: 100;
  font-family: "Poppins", sans-serif;
}

input.error, input.error:focus, input.check.error {
  border: 1px solid #F93430;
  color: #F93430;
}

textarea.error, textarea.error:focus, textarea.check.error {
  border: 1px solid #F93430;
  color: #F93430;
}

/* sección de contacto — gradiente azul Zeus oscuro */
/* 
   SECCIÓN DE CONTACTO: DEGRADADO GRIS A AZUL
    */
.contact-board {
    /* Degradado de arriba (180deg) empezando en gris pizarra y terminando en azul oscuro */
    background: linear-gradient(180deg, #010101 0%, var(--azul-mas-oscuro) 100%) !important;
    backdrop-filter: blur(15px);
}
.form-control {
    background-color: transparent ;
    color: white ;
    border: none ;
    box-shadow: none ;
}

.form-control:focus {
    background-color: transparent ;
    color: white ;
    border: none ;
    box-shadow: none ;
    outline: 0 ;
}
 

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) ;
}

.footer-social i {
    font-size: 24px ;
    color: var(--azul-mas-oscuro) ;
    transition: color 0.3s ease-in-out ;
}

.footer-social a:hover i {
    color: var(--azul-brillante);
    transition: 0.8s;
    transform: translateY(-4px);
}

.bg-cover-bienvenido {
    min-height: 100vh !important;
    height: auto !important;      
    padding-bottom: 80px !important;
}

.board-column_item:last-child {
    padding-bottom: 40px;
}

/* Color de los enlaces: Blancos para que resalten en el fondo oscuro */
.nav-links,
.navbar-light .navbar-nav .nav-link,
.btnContact {
    color: var(--azul-brillante) !important;
    font-weight: 400;
    transition: color 0.05s ease-in-out;
}

.nav-link, .btnContact{
    color: var(--metalico) !important;
}
/* Hover en estado normal: Azul claro/brillante (para que no desaparezcan) */
.nav-links:hover,
.navbar-light .navbar-nav .nav-link:hover,
.btnContact:hover {
    color: var(--gris-pizarra) !important; /* Un azul mucho más claro para que se note sobre el azul oscuro */
}



/* Color de los enlaces: Azul oscuro para que resalten en el fondo blanco */
nav.down .nav-links,
nav.down .navbar-light .navbar-nav .nav-link,
nav.down .btnContact {
    color: var(--metalico) ;
}
nav.down .nav-link,
nav.down .btnContact{
    color: var(--metalico) !important;
}
/* Hover en estado scrolleado: Azul brillante */
nav.down .nav-links:hover,
nav.down .navbar-light .navbar-nav .nav-link:hover,
nav.down .btnContact:hover {
    color: var(--gris-pizarra) !important;
}

nav.down .btnLogin { 
     color: var(--dorado) !important; 
}
nav.down .btnLogin:hover { 
     color: var(--azul-brillante) !important; 
}

.beneficios-board{
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra los elementos aunque tengan anchos del 60% */
    text-align: center;  /* Centra las letras */
    width: 100%;
    margin: 0 auto;
}