/* Estilo general */
body {
    font-family: "Montserrat", sans-serif;
    background: linear-gradient(to top left, #235DA9 0%, #000000 60%, #000000 100%);
    color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 100vh;
    scroll-behavior: smooth; /* Habilita el desplazamiento suave */

}

body {
    overflow-x: hidden; /* Esto oculta el scroll horizontal */
}
body {
    margin-bottom: 0; /* Elimina cualquier margen debajo del body */
}

* {
    box-sizing: border-box; /* Esto ayuda a evitar desbordamientos inesperados */
}
@media (max-width: 768px) {
  body{
    overflow-x: hidden;
    box-sizing: border-box; /* Asegura que el padding no cause overflow */
}
}



a {
    text-decoration: none; /* Elimina el subrayado del enlace */
}
/* ESTILOS GENERALES DEL HEADER */
/* === HEADER GENERAL === */
.main-header {
    display: flex;
    flex-direction: column;
    background-color: rgba(45, 96, 158, 0.082);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    width: 100%;
    padding: 0 1.5rem;
    z-index: 1000;
}

@media (min-width: 769px) {
    .main-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 1.5rem;
    }

    .header-nav {
        margin: 0;
        gap: 3rem;
        margin-left: 12rem;
    }
}

/* === CONTENEDOR SUPERIOR: Logo + botón hamburguesa === */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .header-top {
        display: flex;
        width: auto;
        padding: 0;
        align-items: center;
    }
}

/* === LOGO Y TÍTULO === */
.header-left {
    display: flex;
    align-items: center;
}

.header-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.header-logo {
    height: 60px;
    margin-right: 0.75rem;
}

.header-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
}

/* === BOTÓN HAMBURGUESA === */
.menu-toggle, .header-burger {
    display: flex;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    height: 60px; /* Mismo alto que el logo */
}

/* === MENÚ NAVEGACIÓN === */
.header-nav {
    list-style: none;
    display: flex;
    gap: 3rem;
    margin: 1rem 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    margin-right: 3rem;
}

.header-nav li {
    list-style-type: none;
}

.header-nav li a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}




/* === RESPONSIVE === */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        position: relative;
        z-index: 9999;
    }

    .menu-toggle {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10000;
        width: 2.5rem;
        height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        padding: 0.5rem;
    }
    .menu-toggle > * {
        display: inline;
        transition: opacity 0.2s;
    }
    .menu-toggle.open > * {
        opacity: 0;
        pointer-events: none;
    }
    .menu-toggle::before {
        content: '\2630'; /* Unicode hamburguesa */
        font-size: 2.2rem;
        transition: opacity 0.2s;
        opacity: 1;
        position: absolute;
    }
    .menu-toggle.open::before {
        content: '\00d7'; /* Unicode X */
        font-size: 2.5rem;
        opacity: 1;
        color: #fff;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 9, 20, 0.95);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        margin: 0;
        transition: right 0.3s ease;
        z-index: 9998;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    .header-nav.open {
        right: 0;
    }

    .header-nav li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .header-nav li a {
        display: block;
        padding: 1rem 0;
        color: white;
        font-size: 1.2rem;
        text-align: center;
    }

    .ingresa-ahora {
        margin: 1rem auto;
        width: 80%;
        text-align: center;
    }
}

/* ---------------------------------------Primera sección ------------------------------------------------*/
#presentacion {
    text-align: center;
    padding: 0 5%;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;

}

#presentacion h1 {
    font-size: 3rem;
    font-weight: 700;
    max-width: 1435px;
    width: fit-content;
    text-align: left;
}

#presentacion h1 span {
    color: #62C5E2;
}

#presentacion h2 {
    font-weight: 400;
    max-width: 1100px;
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: center;

}

#presentacion button {
    background-color: #158FCF;
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 1.25rem;
    font-weight: 600;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,191,255,0.5);
    transition: background-color 0.3s ease;
    margin-top: 6rem;
}

#presentacion button:hover {
    background-color: #158ecfcc;
}

/* Video */
.video-presentacion {
    width: 70%;
    margin: 5rem auto 0; /* Reducido el margen superior */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.347);
    border: 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Mantiene la relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 0;
}

.video-presentacion iframe {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 101%;
    height: 100%; /* Asegura que ocupe todo el alto del contenedor */
    border: 0;
    border-radius: 20px;
}
@media (max-width: 768px) {
    .video-presentacion {
        width: 90%;
    }
    
}

.texto-presentacion {
    margin: 0 auto;
    text-align: left;
    width: fit-content;
    max-width: 1200px;
    padding: 0 1rem;
}

/* ------------------------------------"¿Qué ofrece AltChat para sus clientes?" ---------------------------------------*/
#beneficios {
    padding: 1rem 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 6rem;
}
@media (max-width: 768px) {
    #beneficios {
        padding-top: 0;
    }
}

#beneficios h2 {
    font-size: 4rem;
    font-weight: 700;
    width: 100%;
    margin-top: 0;
}

#beneficios span{
    color: #62C5E2;
}

#beneficios h2 span,
#beneficios h2 strong,
#beneficios h2 em {
    color: #00BFFF;
}

#beneficios h3 {
    font-size: 2.5rem;
    font-weight: 500;
    max-width: 1200px;
    margin: 0 auto 2rem;
    margin-bottom: 5rem;
    width: 100%;
}

#beneficios > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    justify-items: center;
}

#beneficios > div h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

#beneficios > div h4 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.4;
}

#beneficios > div > div {
    background-color: rgba(255, 255, 255, 0.123);
    border-radius: 4rem;
    padding: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.02);
    transition: transform 0.2s ease;
    max-width: 25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#beneficios > div > div:hover {
    transform: translateY(-5px);
}

#beneficios > div > div img {
    margin-bottom: 1rem;
    width: 4.5rem;
    height: auto;
}

/*--------------------------------------------- Sección "¿Cómo funciona?" --------------------------- */
#funcionamiento {
    padding: 4rem 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#funcionamiento h2 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
}

#funcionamiento h3 {
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
}

#funcionamiento h4 {
    font-size: 1.65rem;
    font-weight: 400;
    margin: 0 auto;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.emojis-funcionamiento{
    height: 5rem;
    width: auto;
}

/* Imagen del flujo */

.macbook {
    width: 90rem;
    height: auto;
    max-width: 100%;
    margin-top: 3rem;
}

/* ------------------------------------ Sección "Enfocate en lo que importa" ----------------------------------*/
/* CONTENEDOR PRINCIPAL */
#ventajas {
    padding: 4rem 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* TÍTULO PRINCIPAL */
#ventajas h2 {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 0;
}

/* TEXTOS INFORMATIVOS (h3) */
#ventajas h3 {
    font-size: 2rem;
    font-weight: 500;
    margin: 0 auto;
    text-align: center;
    width: fit-content;
    line-height: 1.5;
    margin: 2rem auto;
}

/* CONTENEDOR DE BURBUJAS */
.contenedor-burbujas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 3rem;
    width: 100%;
    max-width: 1200px;
}

/* ESTILO DE BURBUJAS */
.burbuja-ventajas {
    font-size: 2.25rem;
    font-weight: 500;
    background-color: #99d2e53f;
    padding: 3rem 2rem;
    border-radius: 3.5rem;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
    color: white;
    width: fit-content;
    text-align: left;
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.div-dispositivos {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
}

.image-iphone {
    width: 25rem;
    height: auto;
    max-width: 100%;
    margin-left: 8rem;
}

.image-macbook {
    width: 45rem;
    height: auto;
    max-width: 100%;
}

/* ----------------------DISEÑO CHATBOT Y IPHONE ------------------------------------------------- */

#flyer {
    margin: 0 auto;
    padding: 4rem 0;
    position: relative;
}

#flyer span {
    color: #62C5E2;
}

#flyer h5 {
    font-size: 2rem;
    font-weight: 600;
    margin: 2.5rem;
    line-height: 1.4;
}

#flyer button {
    background-color: #00BFFF;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,191,255,0.5);
    transition: background-color 0.3s ease;
    margin-left: 15rem;
}

#flyer button:hover {
    background-color: #00a4cc;
}

.container-diseño {
    margin: 0 auto;
    width: 90%;
    background: linear-gradient(to bottom, #000000, #235DA9);
    border-radius: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    padding: 3rem;
    min-height: 30rem;
}

.container-diseño > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
    padding: 2rem;
}

.bot-diseño {
    position: absolute;
    left: -5rem;
    bottom: 0;
    height: 25rem;
    width: auto;
}

.iphone-diseño {
    height: 30rem;
    width: auto;
    right: 2rem;
    top: -9.5rem;
    position: absolute;
}

@media (max-width: 768px) {
    .bot-diseño {
        position: absolute;
        left: -5rem;
        bottom: 0;
        height: 5rem;
        width: 0;
    }
}

footer {
    background-color: #000000;
    padding: 2rem 5rem;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
}

.logo-footer img {
    width: 3rem;
    height: auto;
}

.logo-footer h3 {
    font-size: 2rem;
    margin: 0;
}

.redes-sociales {
    display: flex;
    gap: 1.5rem;
}

.redes-sociales a {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.redes-sociales a:hover {
    transform: scale(1.1);
}

.redes-sociales img {
    width: 2.5rem;
    height: auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom h4 {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #62C5E2;
}

@media (min-width: 1025px) {
    .menu-toggle,
    button.menu-toggle,
    .redes-responsive {
        display: none !important;
    }
}

/* Media Queries para el footer */
@media (max-width: 768px) {
    footer {
        padding: 2rem;
    }
    
    .logo-footer h3 {
        font-size: 1.5rem;
    }
    
    .redes-sociales img {
        width: 2rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 1.5rem;
    }
    
    .footer-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }
    
    .logo-footer {
        display: flex;
        align-items: center;
    }
    
    .logo-footer h3 {
        display: none;
    }
    
    .logo-footer img {
        width: 2.5rem;
        height: auto;
    }
    
    .redes-sociales {
        display: flex;
        gap: 1rem;
    }
    
    .redes-sociales img {
        width: 1.8rem;
        height: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    .redes-no-responsive{
        display: none;
    }
    li.redes-sociales.redes-responsive{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px 20px; /* 10px entre filas, 20px entre columnas */
        padding-top: 6rem;
    }
    div.footer-top{
        justify-content: center;
    }
}

/* -------------------------------------  estilos casos de uso --------------------------------------- */
/* -------------------------------------  estilos casos de uso --------------------------------------- */
.sections-casos {
    background-size: cover;
    background-position: center;
    padding: 5rem 5%;
    color: white;
}

/* Fondos por sección */
.caso1 { background: linear-gradient(#051e2bd0, #1788c5e8), url('images/minorista.png'); }
.caso2 { background: linear-gradient(#051e2bd0, #1788c5e8), url('images/salud.jpg'); }
.caso3 { background: linear-gradient(#051e2bd0, #1788c5e8), url('images/turismo.png'); }
.caso4 { background: linear-gradient(#051e2bd0, #1788c5e8), url('images/publico.png'); }

/* Layout principal */
.caso-contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    flex-wrap: wrap;
}

.caso-contenido.invertido {
    flex-direction: row-reverse;
}

.caso-texto {
    flex: 1 1 500px;
}

/* Imagen del celular */
.caso-imagen img {
    width: 25rem;
    height: auto;
    border-radius: 1rem;
    box-shadow: none;
}

/* Títulos centrados */
.titulos-caso {
    text-align: center;
    margin-bottom: 2rem;
}

.titulos-caso h2 {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.titulos-caso h3 {
    font-size: 1.8rem;
    font-weight: 400;
}

/* Botones de funciones */
.botones-caso {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.botones-caso h4 {
    font-size: 2rem;
    font-weight: 600;
    background-color: #99d2e53f;
    padding: 2rem 1.5rem;
    border-radius: 2.5rem;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
    color: white;
    width: fit-content;
    max-width: 90%;
    text-align: left;
    transition: all 0.3s ease;
    overflow: visible;
}

/* Efecto escalonado común */
.botones-caso h4:nth-child(1) { margin-left: 6rem; }
.botones-caso h4:nth-child(2) { margin-left: 2rem; }
.botones-caso h4:nth-child(3) { margin-left: 8rem; }
.botones-caso h4:nth-child(4) { margin-left: 1rem; }
.botones-caso h4:nth-child(5) { margin-left: 5rem; }

/* Responsive */
@media (max-width: 768px) {
    .caso-contenido {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .caso-imagen {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .caso-imagen img {
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 0;
        display: block;
    }

    .botones-caso h4 {
        font-size: 1.4rem;
        padding: 1rem 1.2rem;
        border-radius: 2rem;
        margin-left: 0 !important;
        margin-bottom: 0.7rem;
        margin-top: 0.7rem;
    }

    .titulos-caso h2 {
        font-size: 3rem;
    }

    .titulos-caso h3 {
        font-size: 1.4rem;
    }
}

/* Media Queries para Responsive */
@media (max-width: 1200px) {
    #funcionamiento h2 {
        font-size: 4rem;
    }
    
    #ventajas h2 {
        font-size: 5rem;
    }
    
    .macbook {
        width: 70rem;
    }
}

@media (max-width: 992px) {
    #funcionamiento h2 {
        font-size: 3.5rem;
    }
    
    #funcionamiento h3 {
        font-size: 1.8rem;
    }
    
    #funcionamiento h4 {
        font-size: 1.4rem;
    }
    
    #ventajas h2 {
        font-size: 4rem;
    }
    
    #ventajas h3 {
        font-size: 2rem;
    }
    
    .div-dispositivos {
        margin-left: 2rem;
        margin-right: 2rem;
        justify-content: center;
    }
    
    .image-iphone {
        width: 20rem;
    }
    
    .image-macbook {
        width: 35rem;
    }
}

@media (max-width: 768px) {
    #funcionamiento {
        padding: 3rem 1rem;
    }
    
    #funcionamiento h2 {
        font-size: 3rem;
    }
    
    #funcionamiento h3 {
        font-size: 1.6rem;
    }
    
    #funcionamiento h4 {
        font-size: 1.2rem;
    }
    
    .emojis-funcionamiento {
        height: 4rem;
    }
    
    #ventajas {
        padding: 3rem 1rem;
    }
    
    #ventajas h2 {
        font-size: 3rem;
    }
    
    #ventajas h3 {
        font-size: 1.6rem;
        margin: 1.5rem auto;
    }
    
    .div-dispositivos {
        flex-direction: column;
        align-items: center;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .image-iphone {
        width: 15rem;
    }
    
    .image-macbook {
        display: none;
    }
    
    .burbuja-ventajas {
        font-size: 1.8rem;
        padding: 2rem 1.5rem;
        margin-left: 1rem;
    }
}

@media (max-width: 480px) {
    #funcionamiento h2 {
        font-size: 2.5rem;
    }
    
    #funcionamiento h3 {
        font-size: 1.4rem;
    }
    
    #funcionamiento h4 {
        font-size: 1.1rem;
    }
    
    .emojis-funcionamiento {
        height: 3.5rem;
    }
    
    #ventajas h2 {
        font-size: 2.5rem;
    }
    
    #ventajas h3 {
        font-size: 1.4rem;
        margin: 1rem auto;
    }
    
    .div-dispositivos {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    .image-iphone {
        width: 12rem;
    }
    
    .image-macbook {
        display: none;
    }
    
    .burbuja-ventajas {
        font-size: 1.5rem;
        padding: 1.5rem 1rem;
        margin-left: 0.5rem;
        border-radius: 2.5rem;
    }
}

/* Media Queries para la sección presentación */
@media (max-width: 992px) {
    #presentacion h1 {
        font-size: 2.5rem;
    }
    
    #presentacion h4 {
        font-size: 1.2rem;
    }
    
    #presentacion button {
        padding: 1.2rem 4rem;
        font-size: 1.5rem;
        margin-bottom: 5rem;
    }
    

}

@media (max-width: 768px) {
    #presentacion {
        padding: 3rem 1rem;
    }
    
    #presentacion h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    #presentacion h4 {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .texto-presentacion {
        text-align: center;
        padding: 0 1.5rem;
    }
    
    #presentacion button {
        padding: 1rem 3rem;
        font-size: 1.3rem;
        margin-bottom: 4rem;
    }
    

}

@media (max-width: 480px) {
    #presentacion {
        padding: 2rem 1rem;
    }
    
    #presentacion h1 {
        font-size: 1.8rem;
    }
    
    #presentacion h4 {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .texto-presentacion {
        padding: 0 1rem;
    }
    
    #presentacion button {
        padding: 0.8rem 2.5rem;
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
}

/* Media Queries para la sección beneficios */
@media (max-width: 1200px) {
    #beneficios h2 {
        font-size: 3.5rem;
    }
    
    #beneficios h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    #beneficios > div {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #beneficios h2 {
        font-size: 3rem;
        margin-bottom: 4rem;
    }
    
    #beneficios h3 {
        font-size: 2rem;
        padding-top: 3rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    #beneficios > div {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 2rem;
    }
    
    #beneficios h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    #beneficios h3 {
        font-size: 1.8rem;
        padding-top: 2rem;
        margin-bottom: 2rem;
    }
    
    #beneficios > div > div {
        max-width: 100%;
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    #beneficios > div {
        padding: 0 1.5rem;
    }

    #beneficios h2 {
        font-size: 2rem;
        margin: 0 1rem 3rem 1rem;
    }
    
    #beneficios h3 {
        font-size: 1.5rem;
        margin: 0 1rem 2rem 1rem;
    }
    
    #beneficios > div > div {
        margin: 0 0.5rem;
        padding: 1rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        border-radius: 3rem;
    }
    
    #beneficios > div > div h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    #beneficios > div > div h4 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    #beneficios > div > div img {
        width: 3.5rem;
        margin-bottom: 0.8rem;
    }
}

/* Media Queries para el contenedor de burbujas */
@media (min-width: 1920px) {
    .contenedor-burbujas {
        padding-left: 10%;
    }
}

@media (max-width: 1400px) {
    .contenedor-burbujas {
        padding-left: 2.5rem;
    }
}

@media (max-width: 1200px) {
    .contenedor-burbujas {
        padding-left: 2rem;
    }
}

@media (max-width: 992px) {
    .contenedor-burbujas {
        padding-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contenedor-burbujas {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contenedor-burbujas {
        padding-left: 0.5rem;
    }
}





/* ---------------------- FLYER NUEVO DISEÑO ---------------------- */
.flyer-fondo {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 5rem auto 0 auto;
    height: 22rem;
    background: linear-gradient(to top, #235DA9 0%, #0a1a2f 100%);
    border-radius: 2.5rem;
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 0 2.5rem;
    margin-bottom: 4rem;
}

.flyer-bot {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    z-index: 2;
}
.flyer-img-bot {
    height: 22rem;
    width: auto;
    margin-left: -3rem;
    margin-bottom: 0;
}

.flyer-iphone {
    position: absolute;
    right: 2rem;
    top: calc(-6rem + 5px);
    height: 100%;
    display: flex;
    align-items: flex-start;
    z-index: 2;
}
.flyer-img-iphone {
    height: 28rem;
    width: auto;
    margin-right: 0;
    border-radius: 2.2rem;
    box-shadow: none;
    background: none;
}

.flyer-texto {
    margin: 0 auto;
    width: 60%;
    min-width: 320px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: center;
    z-index: 3;
    color: #fff;
    text-align: left !important;
    padding: 4rem 0 3rem 0;
}
.flyer-titulo {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}
.flyer-celeste {
    color: #62C5E2;
    font-weight: 700;
}
.flyer-subtitulo {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    text-align: left;
}
.flyer-boton {
    background: linear-gradient(90deg, #00BFFF 60%, #62C5E2 100%);
    color: #fff;
    padding: 1.3rem 3.5rem;
    border: none;
    border-radius: 1.5rem;
    font-weight: 700;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 0 30px 0 #00bfff80, 0 0 10px 0 #62c5e2a0;
    transition: background 0.3s, box-shadow 0.3s;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #0008;
    margin: 0 !important;
    align-self: flex-start !important;
    display: inline-block !important;
}
.flyer-boton:hover {
    background: linear-gradient(90deg, #62C5E2 60%, #00BFFF 100%);
    box-shadow: 0 0 40px 0 #00bfffcc, 0 0 20px 0 #62c5e2cc;
}

@media (max-width: 768px) {
    .flyer-fondo {
        position: relative;
        width: 90%;
        max-width: 1100px;
        margin: 5rem auto 0 auto;
        height: 40rem;
        background: linear-gradient(to top, #235DA9 0%, #0a1a2f 100%);
        border-radius: 2.5rem;
        box-shadow: 0 8px 40px 0 rgba(0,0,0,0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        padding: 0 2.5rem;
        margin-bottom: 4rem;
    }
    .flyer-img-bot {
        height: 12rem;
        width: auto;
        margin-left: 0;
        margin-bottom: 0;
    }
    .flyer-img-iphone {
        position: absolute;
        height: 16rem;
        width: auto;
        right: -2rem;
        bottom: -6rem;
        transform: rotate(7deg); /* gira el elemento 45° */
        transform-origin: top left; /* punto desde donde gira */
    }
    .flyer-texto {
        position: absolute;
        top: 0;
        padding-top: 1rem;
        min-width: 300px;
        max-width: 320px;
        align-items: center;
        justify-items: center;
        justify-self: center;
        justify-content: center;
        align-self: center;
        align-content: center;
    }
    .flyer-subtitulo {
        margin-bottom: 1.25rem;
    }
    #flyer {
        padding-top: 0rem;
    }
}


/* ---------------------- FIN FLYER NUEVO DISEÑO ---------------------- */


.botones-caso h4.derecha {
    margin-left: 16rem;
}
.botones-caso h4.izquierda {
    margin-left: 0;
}
/* Ajuste específico para caso3 */
.caso3 .botones-caso h4.derecha {
    margin-left: 12rem;
}
.caso3 .botones-caso h4.izquierda {
    margin-left: 0;
    margin-right: 0;
}
.caso3 .h4-centro-img {
    margin-top: 0.2rem;
}
.h4-centro-img {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
}
.h4-centro-img h4 {
    font-size: 2rem;
    font-weight: 600;
    background-color: #99d2e53f;
    padding: 2rem 1.5rem;
    border-radius: 2.5rem;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
    color: white;
    width: fit-content;
    text-align: left;
    transition: all 0.3s ease;
    margin: 0 auto;
}


.faq-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    color: var(--text-color);
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-color);
}

.faq-section h3 {
    font-size: 2rem;
    margin: 3rem 0 2rem;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
    overflow-y: auto;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}

.faq-answer ol {
    margin: 0;
    padding-left: 1.2rem;
}

.faq-answer li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 1rem;
        margin: 2rem auto;
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .faq-section h3 {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-answer.active {
        max-height: 350px;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .faq-section h2 {
        font-size: 1.75rem;
    }

    .faq-section h3 {
        font-size: 1.25rem;
    }
}

/* Estilos para FAQs padre-hijo */
.faq-parent > .faq-question {
    background: rgba(98, 197, 226, 0.1);
    font-size: 1.3rem;
}

.faq-parent > .faq-answer {
    background: rgba(255, 255, 255, 0.02);
    padding: 0;
}

.faq-parent > .faq-answer.active {
    padding: 1rem;
}

.faq-child {
    margin: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-child .faq-question {
    font-size: 1rem;
    padding: 1.2rem;
}

.faq-child:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.faq-child .faq-answer {
    padding: 0 1.2rem;
}

.faq-child .faq-answer.active {
    padding: 0 1.2rem 1.2rem;
}

@media (max-width: 768px) {
    .faq-parent > .faq-question {
        font-size: 1.2rem;
    }

    .faq-child .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .faq-child {
        margin: 0.4rem;
    }

    .faq-child .faq-answer {
        padding: 0 1rem;
    }

    .faq-child .faq-answer.active {
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .faq-parent > .faq-question {
        font-size: 1.1rem;
    }

    .faq-child .faq-question {
        font-size: 0.9rem;
    }
}

/* Estilos básicos para la agenda */
body h1 span {
    color: #62C5E2;
}


@media (min-width: 1921px) {
    body {
        max-width: 90%;
    }
}

@media (min-width: 1920px) {
    #presentacion,
    #beneficios,
    #funcionamiento,
    #ventajas,
    .sections-casos {
        padding-left: 10%;
        padding-right: 10%;
    }
    
    .caso-contenido {
        max-width: 1600px;
    }
}





@media (min-width: 1920px) {
    .div-dispositivos {
        max-width: 1600px;
        gap: 4rem;
    }
    
    .image-iphone {
        width: 30rem;
        margin-left: 10rem;
    }
    
    .image-macbook {
        width: 50rem;
    }
}

@media (max-width: 1400px) {
    .div-dispositivos {
        justify-content: center;
        gap: 3rem;
    }
    
    .image-iphone {
        width: 22rem;
        margin-left: 6rem;
    }
    
    .image-macbook {
        width: 40rem;
    }
}

@media (max-width: 992px) {
    .div-dispositivos {
        gap: 2rem;
    }
    
    .image-iphone {
        width: 20rem;
        margin-left: 4rem;
    }
    
    .image-macbook {
        width: 35rem;
    }
}

@media (max-width: 768px) {
    .div-dispositivos {
        flex-direction: column;
        align-items: center;
    }
    
    .image-iphone {
        width: 15rem;
        margin-left: 0;
    }
    
    .image-macbook {
        display: none;
    }
}

@media (max-width: 480px) {
    .image-iphone {
        width: 12rem;
    }
}
/* ----------------------Estilos video presentacion ------------ */

  


.boton-agenda-caso {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 0;
    position: relative;
    z-index: 2;
    margin: 0;
}

.boton-agenda-caso button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 50%, #00BFFF 100%);
    color: white;
    padding: 1.3rem 4rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    font-weight: 800;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,191,255,0.5),
                0 0 0 1px rgba(255,255,255,0.1) inset;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.boton-agenda-caso button:hover {
    transform: translate(-50%, -50%) translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,191,255,0.7),
                0 0 0 1px rgba(255,255,255,0.2) inset;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 50%, #1E90FF 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.boton-agenda-caso button:active {
    transform: translate(-50%, -50%) translateY(2px);
    box-shadow: 0 5px 15px rgba(0,191,255,0.4),
                0 0 0 1px rgba(255,255,255,0.1) inset;
}

@media (max-width: 768px) {
    .boton-agenda-caso button {
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
        border-radius: 1.5rem;
        white-space: nowrap;
        max-width: 90%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .boton-agenda-caso button {
        font-size: 0.9rem;
        padding: 0.7rem 1.8rem;
        border-radius: 1.2rem;
        letter-spacing: 1px;
    }
}

.nav-toggle {
    display: none;
}

/* --------------------------- Seccion "Agenda confirmada" ----------------------- */

#agendaConfirmada {
    text-align: center;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 6rem;
}

#agendaConfirmacion h1 {
    font-size: 3rem;
    font-weight: 700;
    max-width: 1435px;
    width: fit-content;
    text-align: left;
}

#agendaConfirmacion h1 span {
    color: #62C5E2;
}

#agendaConfirmacion h2 {
    font-weight: 400;
    max-width: 1100px;
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 3rem;
}


.texto-confirmacion {
    margin: 0 auto;
    text-align: left;
    width: fit-content;
    max-width: 1000px;
    padding: 0 1rem;
}

.video-confirmacion{
    margin-top: 2rem;
}

/* Estilos para elementos solo móviles */
.solo-mobile {
    display: none;
}

@media (max-width: 768px) {
    .solo-mobile {
        display: block;
    }
}

/* Estilos para elementos solo desktop */
.solo-desktop {
    display: block;
}

@media (max-width: 768px) {
    .solo-desktop {
        display: none;
    }
}




