* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #152c90 0%, #1e1e1e 100%);
    padding-top: 60px; 
}

header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 93%;
    z-index: 1000;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(1, 45, 93, 0.9));
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 4rem;
    
}

.language-btn {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    width: 40px; 
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-btn img {
    width: 25px;
    height: 20px;
    object-fit: cover;
}

.logo img {
    max-height: 70px; 
    width: auto;
    display: block;
    object-fit: contain;
}


/* Estilos del menú en pantallas grandes */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(to right, #0a1128, #1a237e);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: none;
    z-index: 1000;
}

.dropdown.active {
    display: block;
}

.dropdown-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
}

.dropdown-link:hover {
    background-color: #00B4D8;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-btn {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.join-btn {
    background-color: #00B4D8;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.join-btn:hover {
    background-color: #0096c7;
}

/* Botón de menú hamburguesa */
.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links, .auth-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(1, 45, 93, 0.9));
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 0;
        border-radius: 10px;
    }

    .nav-links.active, .auth-buttons.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        margin-right: -280px;
    }

    .logo {
        margin-left: -80px;
    }
    

}


.bar {
    background-color: #fff;
    width: 25px;
    height: 3px;
    margin: 4px 0;
    display: block;
}

.container {
    max-width: 1200px; 
    width: 94%; 
    margin: 0 auto; 
    text-align: center; 
    padding: 50px 20px; 
}

/* Sección Completa */
#features {
    background: #f4f4f4; 
    padding: 60px 0; 
    align-items: center;
}

/* Títulos */
.home-title {
    margin-top: 35px;
    font-family: "Avenir", Helvetica, sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff; 
    margin-bottom: 10px;
}

.highlitght {
    color: #22c4ff; 
    font-weight: bold; 
}

.sub-title {
    font-family: "futura", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff; /* Color de texto */
    max-width: 800px;
    margin: 10px auto 20px;
    text-align: center; /* Centrar texto */
    background: linear-gradient(100deg, #1e1e1e 0%, #152c90 100%); /* Fondo degradado */
    border: 2px solid rgba(255, 255, 255, 0.3); /* Borde suave */
    border-radius: 15px; /* Esquinas redondeadas */
    padding: 10px 20px; /* Espaciado interno */
    
}

.sub-title1 {
    font-family: "futura", sans-serif;
    font-size: 30px;
    font-weight: 300;
    color: #ffffff; 
    max-width: 800px;
    margin: 0.5px;
    text-align: left;
    padding: 10px 10px;
}    

.description {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 800px;
    margin: 50px auto;
}

.imagen_1 {
    display: block;
    margin: 50px auto;
    width: 800px;
    height: 400px;
    border-radius: 15px;
    border: 1px solid rgba(15, 226, 212, 0.619);
    border-color: #00a2f9;
}

/* Responsivo */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .sub-title {
        font-size: 1.3rem;
        max-width: 350px;
    }

    .description {
        font-size: 1rem;
    }

    .imagen_1 {
       width: 100%;
       height: auto;
    }
}

@media (max-width: 768px) {
    .parrafo1 {
        min-width: 300px;
    }	
}

.container1 {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 20px;
    font-size: 15px;
    margin: 20px; 
}

.container1 h1 {
    margin-bottom: 20px; /* Espacio entre el título y las cajas */
    text-align: center;  /* Asegurarse de que el texto del título esté centrado */
}
 
/* Importa la fuente */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.box-container {
    display: flex;
    justify-content: center; /* Centra las cajas horizontalmente */
    align-items: center; /* Alinea las cajas verticalmente */
    gap: 15px; /* Espacio entre las cajas */
    flex-wrap: wrap;
    border-radius: 15px;
    margin-top: 20px; /* Añade un margen superior */
}

.box {
    background: linear-gradient(135deg, #1e1e1e 0%, #152c90 100%);
    color: white;
    width: 200px; /* Ajusta el ancho de las cajas */
    height: 200px; /* Ajusta la altura de las cajas */
    display: flex; /* Utiliza flexbox */
    flex-direction: column; /* Apila los elementos verticalmente */
    justify-content: center; /* Centra los elementos verticalmente */
    align-items: center; /* Centra los elementos horizontalmente */
    text-align: center;
    font-size: 15px;
    font-family: 'Roboto', sans-serif; /* Fuente bonita, seria y legible */
    border-radius: 8px; 
    margin: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    overflow: hidden; /* Asegura que el contenido adicional no se salga de la caja */
}


.box img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ajusta la imagen para que cubra toda la caja sin distorsionarse */
    border-radius: 8px 8px 0 0; /* Esquinas redondeadas solo para la parte superior */
}

.box-title {
    text-align: center;
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    margin-top: 10px; /* Espacio entre la imagen y el título */
}


.container2 {
    background: linear-gradient(135deg, #152c90 0%, #1e1e1e 100%);
    align-items: center;
    text-align: center;
    display: flex; /* Mantén flex en el contenedor */
    flex-wrap: wrap; /* Permite que las cajas se ajusten en múltiples filas */
    justify-content: center; /* Alinea las cajas en el centro */
    gap: 20px; 
    padding-top: 70px;
    padding-bottom: 20px;
}
/* Importa la fuente */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.box-container {
    display: flex;
    justify-content: center; /* Centra las cajas horizontalmente */
    align-items: center; /* Alinea las cajas verticalmente */
    gap: 15px; /* Espacio entre las cajas */
    flex-wrap: wrap;
    border-radius: 15px;
    margin-top: 20px; /* Añade un margen superior */
}

@media (max-width: 768px) {
    .box {
        width: 150px; /* Reducimos el tamaño en pantallas medianas */
        height: 150px;
    }
}

@media (max-width: 480px) {
    .box-container {
        flex-direction: column; /* Se apilan en móviles */
        align-items: center;
    }

    .box {
        width: 100%; /* Ocupar el ancho completo */
        max-width: 300px; /* Limitar el tamaño */
        height: auto; /* Altura flexible */
        padding: 20px;
    }
}

.box1 {
    background: linear-gradient(135deg, #1e1e1e 0%, #152c90 100%);
    color: white;
    width: 180px; /* Ancho y altura iguales para caja cuadrada */
    height: 180px; /* Ancho y altura iguales para caja cuadrada */
    display: flex; /* Utiliza flexbox */
    flex-direction: column; /* Apila los elementos verticalmente */
    justify-content: space-between; /* Distribuye los elementos con espacio entre ellos */
    align-items: center; /* Centra los elementos horizontalmente */
    text-align: center;
    font-size: 15px;
    font-family: 'Roboto', sans-serif; /* Fuente bonita, seria y legible */
    border-radius: 8px; 
    margin: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    overflow: hidden; /* Asegura que el contenido adicional no se salga de la caja */
    padding: 10px; /* Añade un poco de padding dentro de la caja */
}

.box1 img {
    width: 70%; 
    height: auto;
    border-radius: 6px; 
}

.box-title {
    text-align: center;
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    margin-top: 10px; 
}

/* Responsive */
@media (max-width: 768px) {
    .box1 {
        width: 150px; /* Reducimos el tamaño en pantallas medianas */
        height: 150px;
        font-size: 14px;
    }

    .box1 img {
        width: 60%; /* Ajustamos la imagen */
    }
}

@media (max-width: 480px) {
    .box1 {
        width: 100%; /* Ocupar el ancho completo */
        max-width: 250px; /* Limitar el tamaño */
        height: auto; /* Altura flexible */
        padding: 15px;
    }

    .box1 img {
        width: 50%; /* Imagen más pequeña */
    }

    .box-title {
        font-size: 1.2rem; /* Ajustamos el tamaño del título */
    }
}


.caracteristic {
    width: 100%; 
    margin: 40px 0; 
    padding: 50px 20px; 
    background: linear-gradient(220deg, rgba(36, 37, 55, 0.354) 75%, rgba(32, 56, 152, 0.9) 25%);
    border-radius: 20px; 
    box-shadow: 0 10px 20px rgba(33, 32, 32, 0.2); 
    text-align: center;
}

/* Sección de Explicación */
.explication {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 20px; 
    text-align: center;
}


.highlight {
    color: #22c4ff;
}

.parrafo {
    font-size: 1.2rem; 
    line-height: 1.6;
    color: #dcdcdc; 
    margin-bottom: 30px; 
}

.imagen_2 {
    width: 10%; 
    border-radius: 10px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    margin-top: 20px;
}

/* Sección de Beneficios */
.beneficios {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Título */
.home-title2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

/* Contenedor de Beneficios */
.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Beneficio Individual */
.benefit {
    background: linear-gradient(135deg, #272727 0%, #1532b5 100%);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex-basis: calc(50% - 20px); /* 2 columnas en PC */
    display: flex;
    align-items: center;
}

/* Título del Beneficio */
.benefit-title {
    font-weight: bold;
    font-size: 1rem;
    margin-right: 10px;
    flex-shrink: 0;
    color: #2abfff;
}

/* Descripción */
.benefit-description {
    font-size: 1rem;
    color: #dcdcdc;
    line-height: 1.6;
}

/* 📌 Responsive para tablets */
@media screen and (max-width: 1024px) {
    .benefits-container {
        justify-content: center;
    }
    
    .benefit {
        flex-basis: 100%; /* 1 columna */
        text-align: left;
    }
}

/* 📌 Responsive para móviles */
@media screen and (max-width: 768px) {
    .home-title2 {
        font-size: 2rem; /* Reduce tamaño del título */
    }

    .benefit {
        padding: 15px;
        text-align: center;
        flex-direction: column;
    }

    .benefit-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .benefit-description {
        font-size: 0.95rem;
    }

    .imagen_2 {
        width: 25%;
    }

    .explication {
        margin: 0 auto 0px auto;
    }

}

.training {
    background: linear-gradient(135deg, rgba(111, 111, 112, 0.5) 0%, rgba(57, 48, 122, 0.5) 100%);
    padding: 50px 20px;
    border: 2px solid #d3d3d348; /* Borde gris leve */
    border-radius: 20px;
    max-width: 1200px;
    width: 98%;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
}

/* Contenedor flexible */
.training-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

/* Contenido */
.training-content {
    flex: 1;
}

/* Título */
.training-title {
    font-size: 2rem;
    font-weight: bold;
    color: #22c4ff;
    margin-bottom: 20px;
}

/* Lista */
.training ul {
    list-style-type: none;
    padding: 0;
}

.training ul li {
    margin-bottom: 10px;
}

/* Botón */
.training-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #22c4ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.training-link:hover {
    background-color: #1a90d8;
}

/* Imagen */
.training-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.training-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}


/* 📌 Responsive para tablets */
@media screen and (max-width: 1024px) {
    .training-container {
        flex-direction: column;
        text-align: center;
    }

    .training-content {
        margin: 0;
    }
}

/* 📌 Responsive para móviles */
@media screen and (max-width: 768px) {
    .training {
        padding: 30px 15px;
    }

    .training-title {
        font-size: 1.8rem;
    }

    .training-container {
        gap: 15px;
    }

    .training ul li {
        font-size: 1rem;
    }

    .training-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}




.parrafo {
    max-width: 1800px;
    margin: 10px auto;
    text-align: center;
    font-weight: normal;
    font-size: 20px;
    width: 92%;
    background: linear-gradient(100deg, #1a1a1b 0%, #152c90 100%);
    color: white;
    border: 2px solid;
    border-radius: 15px;
    line-height: 1.8;
    padding: 10px 20px;
}

.home-title2 {
    font-family: "Avenir", Helvetica, sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff; 
    margin-bottom: 10px;
}

.parrafo1 {
    width: 135px; /* Ancho fijo */
    height: 135px; /* Alto fijo */
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    text-align: center;
    font-size: 15px;
    background: linear-gradient(100deg, #1e1e1e 0%, #152c90 100%);
    color: white;
    border: 2px solid white;
    border-radius: 15px;
    line-height: 1.5;
    padding: 10px;
}

.Beneficios {
    max-width: 1200px;
    width: 94%;
    margin: 0 auto;
    text-align: center;
    padding: 20px 20px;
    display: flex;
    flex-direction: column; 
    align-items: center; 
}

.benefits-container {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
    margin-top: 10px; 
}

.support {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 20px;
    font-size: 30px;
    margin: 40px; 
    margin: 50px;
   
    max-width: 100vw;
    overflow: hidden;
    margin-top: 45px;
}

.title-img {
    display: flex;              
    flex-wrap: wrap;            
    justify-content: center;     
    align-items: center;         
    max-width: 100vw;            
    overflow: hidden;            
    gap: 20px;  
    margin-top: 80px;                 
}

.about-title { 
    flex: 1;                     
    text-align: right;           
    font-size: 1.5rem;          
}

.image {
    flex: 1.2;                   
    display: flex;
    justify-content: center;
}

.imagen_3 {
    max-width: 100%;             
    width: 120%;                 
    height: auto; 
    border: 1px solid #ffffff; 
    border-radius: 15px;
    box-shadow: 6px 4px 8px rgba(15, 226, 212, 0.619);

}
@media screen and (max-width: 1024px) {
    .imagen_3 {
        width: 100%; 
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .title-img {
        flex-direction: column;
        margin-top: 50px;
    }

    .imagen_3 {
        width: 100%; 
        max-width: 100%; 
        box-shadow: 4px 3px 6px rgba(15, 226, 212, 0.5);
    }

    .about-title{
        text-align: center;
    }
}

/* responsive img3 */



.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
}

.planes-precios {
    padding: 1px;
    text-align: center;
    border: #1a1c28;
    background: linear-gradient(135deg, #152c90 0%, #1e1e1e 100%);
}

.planes-precios h1 {
    font-size: 3rem; 
    margin: 40px;   
}

.high-performing {
    color: #06c6db; /* Ajusta el color del texto dentro del span */
}

.pricing-plan {
    background-color: #2f2f47;
    padding: 2rem 2rem 2.5rem; 
    border-radius: 10px;
    width: 400px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto; /* Asegura que la caja tenga una altura flexible */
    min-height: 400px; /* Mantén una altura mínima */
    margin-bottom: 1rem;
}

.pricing-plan h2 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #06c6db;
}

.price span {
    font-size: 12px;
    color: #ffffff;
}

ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

ul li {
    font-size: 0.9rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    color: #fff
}

ul li i {
    color: #39afe1; /* color verde para el check */
    margin-right: 0.5rem; /* Espacio entre el icono y el texto */
}

.join-now {
    background-color: #06c6db;
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.join-now:hover {
    background-color: #ffbc03;
}

.guarantee {
    font-size: 0.5rem; 
    color: #6d6d6d; 
    position: absolute;
    bottom: 2px; 
    left: 50%;
    transform: translateX(-50%); 
    width: 100%; 
    text-align: center; 
    margin-top: 0.2px; 
}
.guarantee1 {
    font-size: 0.5rem; 
    color: #6d6d6d; 
    align-items: center;
    bottom: 2px; 
    left: 50%;
     
    width: 100%; 
    text-align: center; 
    margin-top: 0.2px; 
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-plan {
        width: 90%;
        margin-bottom: 2rem;
    }
}

/* Contenedor principal de la calculadora */
.final-calculator {
    padding: 40px;
    background: linear-gradient(135deg, #152c90 0%, #1e1e1e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.calculator-wrapper {
    background: linear-gradient(13deg, #5b5c5e 0%, #838383 100%);
    display: flex;
    flex-direction: row; /* Organiza los elementos en filas */
    gap: 20px; /* Espaciado entre sliders y resultados */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
    max-width: 800px;
    width: 100%;
}

.calculator-title {
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.highlight {
    color: #22c4ff;
}

.brand {
    color: #020405;
    font-weight: bold;
    text-transform: uppercase;
}

/* Organización de los elementos */
.calculator-content {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espaciado entre los elementos */
    flex: 1; /* Ocupa más espacio en comparación con los resultados */
}

.input-group {
    position: relative; /* Contenedor relativo para ubicar los números sobre cada slider */
    margin-bottom: 40px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    
}

.input-with-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4; /* Fondo gris claro */
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 80px; /* Reduce el ancho */
    position: absolute;
    right: 0; /* Ubica el cuadro a la derecha */
    top: -35px; /* Ajusta la posición vertical para que quede sobre el slider */
}

.input-with-symbol span {
    color: #22c4ff;
    font-size: 14px;
    font-weight: bold;
    margin-right: 5px;
}

.input-with-symbol input {
    border: none;
    background: transparent;
    color: #000000;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    outline: none;
    width: 50px;
    text-align: right;
}

input[type="range"] {
    width: 100%;
    appearance: none;
    height: 8px;
    background: #ffffff;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    margin-top: 20px;
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: #22c4ff;
    border-radius: 50%;
    cursor: pointer;
}

/* Contenedor de resultados */
.results-container {
    background: #1a1c28;
    padding: 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
    flex: 0.5; /* Ocupa menos espacio que los sliders */
}

.result-title {
    font-size: 16px;
    color: #22c4ff;
    margin-bottom: 5px;
}

.result-value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 14px;
    margin-bottom: 20px;
}

.join-now-btn {
    background: #ffda44;
    color: #0d0f18;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.join-now-btn:hover {
    background: #ffd700;
}

@media (max-width: 1024px) {
    .calculator-wrapper {
        flex-direction: column; /* Apila sliders y resultados */
        padding: 20px;
    }

    .calculator-title {
        font-size: 30px;
    }

    .results-container {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .calculator-wrapper {
        padding: 15px;
    }

    .calculator-title {
        font-size: 28px;
    }

    .input-group {
        margin-bottom: 30px;
    }

    .input-with-symbol {
        top: -30px;
        width: 70px;
    }

    input[type="range"]::-webkit-slider-thumb {
        width: 18px;
        height: 18px;
    }

    .result-title {
        font-size: 14px;
    }

    .result-value {
        font-size: 20px;
    }

    .join-now-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .final-calculator {
        padding: 20px;
    }

    .calculator-title {
        font-size: 24px;
    }

    .calculator-wrapper {
        padding: 10px;
    }


    input[type="range"] {
        height: 6px;
    }

    input[type="range"]::-webkit-slider-thumb {
        width: 15px;
        height: 15px;
    }

    .result-value {
        font-size: 18px;
    }

    .join-now-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ======= FOOTER GENERAL ======= */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

/* ======= CONTENEDOR PRINCIPAL ======= */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ======= LOGO ======= */
.footer-logo {
    flex: 1;
    text-align: left;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

/* ======= SECCIONES DEL FOOTER ======= */
.footer-section {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

/* ======= TÍTULOS ======= */
.footer-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}

/* ======= LISTAS ======= */
.footer-section ul {
    list-style: none;
    padding: 0;
}

/* ======= ÍTEMS DE LA LISTA ======= */
.footer-section ul li {
    margin-bottom: 8px;
}

/* ======= ENLACES ======= */
.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 14px;
    transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
    text-decoration: underline;
    color: #1db954;
}

/* ======= FOOTER BOTTOM ======= */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #333;
    text-align: left;
}

/* ======= REDES SOCIALES ======= */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #1db954;
}

/* ======= BOTÓN DE CHAT ======= */
.chat-button a {
    background-color: #00e676;
    color: #000;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s ease-in-out;
}

.chat-button a:hover {
    background-color: #00c853;
}



/* ======= BOTÓN DE WHATSAPP ======= */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease-in-out;
}

.whatsapp-icon a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.whatsapp-icon i {
    font-size: 20px;
}

.whatsapp-icon:hover {
    background-color: #1EBEA5;
}

/* ======= RESPONSIVO ======= */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        margin-top: 10px;
    }

    .whatsapp-icon span {
        display: none;
    }

    .whatsapp-icon a {
        align-items: center;
    }
}

/* Estilos para la sección de comparación EMI IO */
.emi-io-comparison {
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(47, 54, 64, 0.9) 0%, rgba(57, 48, 122, 0.9) 100%);
    border-radius: 20px;
    color: #fff;
    margin: 20px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
}

.emi-io-comparison .container {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-title h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 40px;
}

.comparison-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.comparison-block {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.comparison-block h3 {
    font-size: 1.8rem;
    color: #22c4ff;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-block ul {
    list-style: none;
    padding: 0;
}

.comparison-block ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.icon {
    margin-right: 10px;
}

.red-x {
    color: #ff0000;
    font-weight: bold;
}

.green-check {
    color: #00ff00;
    font-weight: bold;
}

/* Estilos generales para la sección Digital Clone */
.digital-clone {
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(47, 54, 64, 0.9) 0%, rgba(57, 48, 122, 0.9) 100%);
    border-radius: 20px;
    color: #fff;
    margin: 20px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
}

.digital-clone .container {
    max-width: 1200px;
    margin: 0 auto;
}

.clone-title {
    text-align: center;
    margin-bottom: 40px;
}

.clone-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #22c4ff;
}

.clone-title .subheading {
    font-size: 1.2rem;
    color: #dcdcdc;
}

/* Disposición para las secciones */
.clone-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.clone-content.reverse {
    flex-direction: row-reverse;
}

.clone-section {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.clone-section h4 {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.clone-section .subhighlight {
    font-size: 1.5rem;
    color: #22c4ff;
    margin-bottom: 20px;
}

.clone-section .benefits {
    list-style: none;
    padding: 0;
    text-align: left;
    
}

.clone-section .benefits li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.clone-section .benefits li i {
    margin-right: 10px;
}

.green {
    color: green;
}

/* Estilos para la imagen y el texto */
.clone-visual {
    flex: 1;
    text-align: center;
}

.clone-visual img {
    width: 100%;             
    height: auto;            
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.clone-content:not(.reverse) .clone-visual {
    order: 2; /
}

.clone-content:not(.reverse) .clone-section {
    order: 1; 
}


.clone-content.reverse .clone-visual {
    order: 1; 
}

.clone-content.reverse .clone-section {
    order: 2; 
}

/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    .clone-content {
        flex-direction: column; /* En pantallas pequeñas, la imagen y el texto se apilan */
        gap: 10px;               /* Reduce el espacio entre los elementos */
    }

    .clone-section {
        flex: 1 1 100%;         /* Las secciones ocupan el 100% del contenedor en móviles */
    }

    .clone-visual img {
        width: 100%;            /* Asegura que la imagen ocupe todo el ancho */
        height: auto;           /* Mantiene la proporción de la imagen */
    }

    .clone-visual {
        margin-bottom: 20px;    /* Espacio debajo de la imagen cuando se apilan */
    }

    .clone-section h3, .clone-section p {
        text-align: center;     /* Centra el texto cuando se apilan */
    }
}
/* Estilos para el gráfico promocional */
.promo-graphic {
    background: linear-gradient(135deg, rgba(47, 54, 64, 0.9) 0%, rgba(57, 48, 122, 0.9) 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.promo-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  
}

.promo-header .highlight {
    color: #22c4ff;
}

.promo-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 30%;
    text-align: center;
}

.stat i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #22c4ff;
}

.stat p {
    font-size: 1.2rem;
    color: #dcdcdc;
}

@media (max-width: 768px) {
    .promo-stats {
        justify-content: center;
    }
    .stat {
        max-width: 80%; /* En móviles, cada stat ocupa el 80% */
    }
}

@media (max-width: 480px) {
    .stat {
        max-width: 100%; /* En móviles pequeños, cada stat ocupa el 100% */
        padding: 15px;
    }

    .stat i {
        font-size: 1.8rem;
    }

    .stat p {
        font-size: 1rem;
    }
}
/* Estilos para la sección de Preguntas Frecuentes (FAQs) */
.faq-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(47, 54, 64, 0.9) 0%, rgba(57, 48, 122, 0.9) 100%);
    border-radius: 20px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    margin: 20px;
}

.faq-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-right: auto; /* Título alineado a la izquierda */
}

.view-more {
    background-color: #22c4ff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    margin-left: auto; 
}

.view-more:hover {
    background-color: #1a90d8;
}

.faq-content {
    display: flex;
    flex-direction: column;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question-wrapper:hover {
    background: rgba(255, 255, 255, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    color: #22c4ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.faq-answer {
    background: rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    padding: 15px;
    border-radius: 10px;
    display: none;
}

.faq-answer p {
    color: #dcdcdc;
    font-size: 1.1rem;
    margin: 0;
}

section.sales {
    background-color: rgb(10, 8, 38); 
    color: #fff;
    text-align: center;
    padding: 1rem 1rem;
    border-radius: 10px;
    max-width: 1000px;
    margin: 1rem auto;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}

.sales h1 {
    color: #ffffff; /* Color azul claro */
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Helvetica', sans-serif;
    text-transform: uppercase;
}

.sales h2 {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Roboto', sans-serif;
}

.sales h2 span {
    color: #00a2f9; /* Azul claro */
}

.sales img {
    max-width: 100%;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
}

.sales a.button {
    display: inline-block;
    background: linear-gradient(90deg, #39dce1, #00a2f9);
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.3s ease;
}

.sales a.button:hover {
    background: linear-gradient(90deg, #00a2f9, #39dce1);
    transform: scale(1.05);
}

.sales p {
    margin: 50px;
}

.features {
    background-color: #fff;
    max-width: 1200px; /* Más centrado al reducir el ancho */
    margin: 3rem auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.3rem; /* Más espacio entre tarjetas */
}

.feature-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px; /* Bordes más redondeados */
    padding: 2rem; /* Aumenta el padding interno */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1); /* Sombra más prominente */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.2); /* Resalta más al hacer hover */
}

.feature-card img {
    width: 120px; 
    height: 120px; 
    object-fit: cover;
    margin-right: 1rem;
    border-radius: 12px;
    
}

.feature-content {
    text-align: center; /* Centra el texto */
    flex-grow: 1;
}

.feature-content h2 {
    font-size: 1.8rem; /* Títulos más grandes */
    margin-bottom: 1rem;
    color: #333;
}

.feature-content p {
    font-size: 1rem;
    color: #555;
    text-align: center; /* Texto más ordenado */
    margin: 0 50px; /* Centrado horizontal */
    max-width: 600px; /* Recoge el texto */
    line-height: 1.8;
}

.feature-content strong {
    color: #ff7b00; /* Color de resaltado */
}

@media (max-width: 1024px) {
    .feature-card {
        padding: 1.5rem;
    }

    .feature-content h2 {
        font-size: 1.6rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .feature-card {
        flex-direction: column; /* Apila imagen y texto en pantallas pequeñas */
        text-align: center;
        padding: 1.5rem;
    }

    .feature-card img {
        margin-bottom: 1rem;
        width: 100px;
        height: 100px;
    }

    .feature-content h2 {
        font-size: 1.5rem;
    }

    .feature-content p {
        font-size: 0.9rem;
        margin: 0; /* Quita márgenes laterales */
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 1rem;
    }

    .feature-card img {
        width: 80px;
        height: 80px;
    }

    .feature-content h2 {
        font-size: 1.4rem;
    }

    .feature-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* Estilos para la sección EMI SALES */
.emi-sales {
    padding: 50px 20px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(1, 45, 93, 0.9));
    border-radius: 20px;
    color: #fff;
    margin: 0 auto 50px;
    max-width: 1200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Avenir', sans-serif;
    text-align: center; /* Centra todo el contenido */
}

.emi-sales-benefit {
    background-color: rgba(255, 255, 255, 0.064);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center; /* Alinea el texto a la izquierda */
}

.emi-sales-benefit h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    align-items: center;
}

.emi-sales-benefit p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
}

.emi-sales-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.emi-sales-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 90px;
    color: #dcdcdc;
    margin: 60px;
}

.join-now {
    margin-top: 30px;
}

.join-now-btn {
    background-color: #22c4ff;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.join-now-btn:hover {
    background-color: #1a90d8;
}

.testimonial-container {
    display: flex;
    white-space: nowrap;
    gap: 10px;
    padding: 10px;
    margin-top: auto;
}

.testimonial-container::-webkit-scrollbar {
    height: 8px;
}

.testimonial-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.testimonial-container iframe {
    width: 200px;
    height: 350px;
    transition: transform 0.3s ease-in-out;
}

.testimonial-container iframe:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-container {
        gap: 5px;
    }
    .testimonial-container iframe {
        width: 150px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
        overflow-x: hidden;
    }
    .testimonial-container iframe {
        width: 100%;
        height: auto;
    }
}

.form-section {
    background: linear-gradient(135deg, #152c90 0%, #1e1e1e 100%);
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}


.video-title-container {
    display: flex;
    justify-content: space-between;
    align-items: left;
    margin-bottom: 30px;
    text-align: left;
    }


.video-container {
    position: relative;
    max-width: 100%;
    width: 100%; 
    max-width: 100%; 
    margin-bottom: 30px; 
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.video-title {
    color: white;
    font-size: 2.3rem;
    margin-top: 80px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    z-index: 10;
}


.training-form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    background-color: rgba(174, 172, 172, 0.658);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 100px auto;
}

/* Contenedor flex para dividir texto y formulario */
.test {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 30px;
}

/* Estilos del texto */
.training-text {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

.training-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.training-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

/* Estilos del formulario */
.training-box {
    flex: 1;
    max-width: 45%;
    background-color: rgb(197 190 190 / 43%);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Campos del formulario */
.training-box label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.training-box input {
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
}

/* Botón del formulario */
.training-box button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.training-box button:hover {
    background-color: #0056b3;
}

/* Mensaje del formulario */
#form-message {
    margin-top: 10px;
    font-size: 1rem;
    color: #ff0000;
}

/* Mensajes de éxito */
#form-message.success {
    color: green;
}

/* Diseño responsivo */
@media (max-width: 768px) {
    .test {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .training-text, 
    .training-box {
        max-width: 100%;
    }

    .training-text {
        text-align: center;
    }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .video-title-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-container {
        max-width: 100%; 
    }

    .video-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .container {
        padding: 0;
    }

    
}



.training-section {
    background: #fff;

}

.moztaza {
    color: #980303;
}
.training-section {
    background-color: #f4f7fb;
    padding: 50px 0;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.training-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.training-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    min-width: 280px;
}

.icon img {
    width: 150px; /* Ajusta el tamaño de los íconos */
    margin-bottom: 10px;
}

.training-item h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    margin: 15px;
}

.training-item p {
    font-size: 1rem;
    color: #555;
    margin: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .training-content {
        flex-direction: column;
        align-items: center;
    }

    .training-item {
        width: 80%;
    }
}

/* Contenedor principal */
.container-grid {
    display: grid; 
    grid-template-columns: 1fr 2fr; 
    align-items: center; 
    gap: 20px; 
    max-width: 1200px;
    margin: 0 auto; 
    padding: 100px;
}

/* Imagen a la izquierda */
.image-container img {
    width: 100%; 
    max-width: 400px;
    height: auto; 
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

/* Texto a la derecha */
.text-container {
    text-align: left; 
}

.text-container h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.text-container p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .container-grid {
        grid-template-columns: 1fr; 
        text-align: center; 
    }

    .image-container img {
        max-width: 100%; /
    }
}

.more-section {
    text-align: center;
}

.more-section h2 {
    text-align: center;
    color:rgba(0, 0, 0, 0.635);
    margin: 30px;
    
}

.more-section p {
    margin: 20px;
}

@media (max-width: 768px) {
    .container-grid {
        grid-template-columns: 1fr; 
        text-align: center; 
    }

    .image-container img {
        max-width: 100%; 
    }
}

.ultimate-section {
    background: rgba(22, 40, 236, 0.192); /* Fondo blanco */
    height: 100vh; /* Ocupa toda la pantalla */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra el contenido horizontalmente */
    justify-content: center; /* Centra el contenido verticalmente */
    text-align: center;
    color: black; /* Texto en color negro */
    padding: 20px;
}

/* Estilos del texto */
.final-title {
    font-size: 3rem;
    font-weight: bold;
    margin: 10px 0;
}

.final-subtitle {
    font-size: 2rem;
    margin: 10px 0;
}

.final-tagline {
    font-size: 1.5rem;
    margin: 10px 0;
    font-style: italic;
}

/* Responsivo */
@media (max-width: 768px) {
    .final-title {
        font-size: 2rem;
    }

    .final-subtitle {
        font-size: 1.5rem;
    }

    .final-tagline {
        font-size: 1.2rem;
    }
}

.view-botton {
        background-color: #f78e0e;
        color: white;
        text-decoration: none;
        padding: 0.8rem 1.5rem;
        border-radius: 4px;
        transition: background-color 0.3s;
        margin: 60px;
    }
    
.view-botton:hover {
        background-color: #073972;
}
.custom-section,
.more-section,
.ultimate-section {
    background-color: #ffffff; /* Fondo blanco */
    padding: 50px 0; /* Espaciado para separar del resto del contenido */
}

.text-container {
    color: #333; /* Color de texto oscuro para contraste */
}

.final-title, 
.final-subtitle, 
.final-tagline {
    color: #222; /* Color de texto oscuro */
}

.view-botton {
    background-color: #007bff; /* Un azul llamativo */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.view-botton:hover {
    background-color: #0056b3; /* Azul más oscuro en hover */
}


.testimonial {
    background: linear-gradient(135deg, #152c90 0%, #1e1e1e 100%);
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    padding: 20px;
   
}

/* Estilo del título */
.Title-video h1 {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

/* Contenedor de los videos (para alinearlos horizontalmente) */
.video-wrapper {
    display: flex;
    justify-content: center; /* Centra los videos */
    align-items: center;
    gap: 10px; /* Espacio entre videos */
    flex-wrap: nowrap; /* Evita que los videos bajen de línea */
    overflow-x: auto; /* Permite desplazamiento horizontal si no caben */
    padding: 10px;
    max-width: 100%;
    margin-top: 50px;
}




/* Dispositivos pequeños (pantallas de menos de 768px) */
@media (max-width: 768px) {
    .video-wrapper {
        flex-wrap: wrap; /* Permite que los videos bajen de línea */
        justify-content: center; /* Asegura que los videos estén centrados */
    }

    .video-container {
        width: 140px; /* Reduce el tamaño en pantallas pequeñas */
        height: 95px;
    }

    .video-container.active {
        width: 280px;
        height: 500px;
    }
}


@media (max-width: 480px) {
    .video-container {
        width: 120px;
        height: 80px;
    }

    .video-container.active {
        width: 250px;
        height: 450px;
    }

    .Title-video h1 {
        font-size: 22px; /* Reduce el tamaño del título */
    }
}


.Avatar {
    background: linear-gradient(12deg, #152c90 0%, #1e1e1e 100%);
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    text-spacing-trim: auto;
    padding: 60px;
    margin: 45px;
    border-radius: 25px;
}


.Avatar div {
  max-width: 100%;
    height: auto;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    
    border-radius: 10px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagen-avatar img {
    max-width: 100%; 
    height: auto; 
    border: #00B4D8;
    border-style: inherit;
   
}

/* Texto */
.Avatar p {
    margin-top: 50px;
    margin-bottom: 35px;
    text-align: center;
    font-size: 25px;
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Estilo de la lista con los checkmarks */
.check {
    color: #ffffff; 
    font-size: 20px;
}

.check::before {
    content: "✔";
    color: #18a1db;
    font-size: 22px;
    margin-right: 2px;
}

/* ====== RESPONSIVE ====== */

/* Tablets */
@media (max-width: 1024px) {
    .Avatar {
        padding: 40px;
        margin: 30px;
    }
    
    .Avatar div {
        width: 90%;  /* Se adapta al ancho del dispositivo */
        height: 400px;
    }

    .Avatar p {
        font-size: 22px;
    }
    
    .check {
        font-size: 18px;
    }

    .check::before {
        font-size: 20px;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .Avatar {
        padding: 30px;
        margin: 20px;
    }

    .Avatar div {
        width: 100%;
        height: 300px;
    }

    .Avatar p {
        font-size: 20px;
    }
    
    .check {
        font-size: 18px;
    }

    .check::before {
        font-size: 18px;
    }
}

/* Dispositivos pequeños */
@media (max-width: 480px) {
    .Avatar {
        padding: 20px;
        margin: 10px;
    }

    .Avatar div {
        width: 100%;
        height: 250px;
    }

    .Avatar p {
        font-size: 18px;
    }
    
    .check {
        font-size: 16px;
    }

    .check::before {
        font-size: 16px;
    }
}
