/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: 'Comic Sans MS', cursive, sans-serif;*/
}

body {
    /*font-family: Tahoma, Geneva, sans-serif;*/
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background: #F9FAFB;
    user-select: none;
    -webkit-user-select: none;
    /* Safari/Chrome */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
}

section {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
    /* ayuda rendimiento */
}

section.visible {
    opacity: 1;
    transform: translateX(0);
}

/* BARRA NEGRA PEGADA ARRIBA */
header.barraNegra {
    position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    background-color: #000;
    /* barra negra */
    margin-top: 0 !important;
    padding: 0.5rem 0;
    animation: fadeInDown 0.8s ease forwards;
    transition: transform 0.3s ease-in-out;
}

/* Alinea el contenido centrado horizontalmente */
.navCentro {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo centrado */
.logoFlova {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logoFlova img {
    height: 2.2rem;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logoFlova img:hover {
    transform: scale(1.1);
}

/* Contenedor del nav general */
.contenedorNav {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* Estructura tipo píldora eliminada */
.navegador {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* Oculta el header cuando se hace scroll hacia abajo */
.headerOculto {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.contenedorVideo {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #f9fafb;
    /* opcional, resalta más la sombra */
}

.contenedorVideo video {
    width: 100%;
    max-width: 70%;
    border-radius: 0.2rem;
    /* redondea las esquinas */
    display: block;
    /*box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);*/
    /* sombra suave y profunda */
}

/* Efecto suave al pasar el mouse (opcional) 
.contenedorVideo video:hover {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.7);
}*/

/* ==== MENÚ HAMBURGUESA ==== */
.menu-toggle {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 10000;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Cambiar a X cuando está activo */
.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==== OVERLAY DEL MENÚ ==== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.7);
    /* semitransparente */
    backdrop-filter: blur(8px);
    /* borroso */
    -webkit-backdrop-filter: blur(8px);
    /* compatibilidad Safari */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 9998;
}

/* Mostrar menú */
.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ==== OPCIONES DEL MENÚ ==== */
.menu-desplegado ul {
    list-style: none;
    text-align: center;
}

.menu-desplegado li {
    margin: 0rem 0;
}

.menu-desplegado a {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: -2px;
}

.menu-desplegado a:hover {
    color: #005ad6;
}

.menu-desplegado a:active {
    color: #0070f3;
}

ins {
    background-color: #0070f3;
    /* color amarillo marcador */
    color: inherit;
    /* mantiene el color del texto */
    padding: 0 0.1em;
    /* pequeño espacio a los lados */
    border-radius: 2px;
    /* opcional, bordes redondeados */
    text-decoration: none;
    /* quitar subrayado normal */
}

ins.responsive {
    text-decoration: none;
    /* Quita el subrayado */
    background-color: transparent;
    /* Opcional, si no quieres el fondo */
}

/* Botón CTA 1 */

#aviso {
    padding-top: 5rem;
    text-align: center;
    /* ocupa su altura natural */
}


.botonAviso {
    background: #FF3131;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    /* más consistente */
    font-size: 1.2rem;
    line-height: 1.2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    /* inline-flex para centrar dentro del contenedor */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
    max-width: 100%;
    /* opcional: limitar ancho máximo */
}

.botonAviso:hover {
    background: #da2828;
}

.botonAviso strong {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0rem;
}

.botonTitulo {
    background: #F9FAFB;
    color: #0070f3;
    font-size: 1.2rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* Sección Héroe */
#flova {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 0rem;
    background: #F9FAFB;
}

.contenedorTitulo {
    padding-left: 0.5rem;
    /* Reduce espacio izquierdo */
    padding-right: 0.5rem;
    /* Reduce espacio derecho */
    margin-left: auto;
    /* Centra el contenedor horizontalmente */
    margin-right: auto;
    max-width: 60%;
    /* Limita el ancho máximo para que no ocupe todo */
}

.contenedorTitulo h1 {
    font-size: 4.5rem;
    margin-bottom: 0.4rem;
    letter-spacing: -0.09em;
    line-height: 1;
    font-weight: bold;
    /* o 700 según lo que uses */
    color: #000;
}

.contenedorTitulo h2 {
    font-size: 4rem;
    margin-bottom: 0.4rem;
    letter-spacing: -0.05em;
    line-height: 1;
    font-weight: 500;
    color: #000;
    /* o 700 según lo que uses */
}

.contenedorTitulo p {
    font-size: 1.5rem;
    max-width: 100%;
    margin: 0 auto 1rem;
    color: #000;
    line-height: 1.4;
    /* Reduce el espacio entre líneas (1 es igual al tamaño de fuente) */
    max-width: 75%;
    /* Limita el ancho máximo para que no ocupe todo */
}

/*Imagen flova manual*/
/* Contenedor de la imagen */
.contenedorManual {
    display: flex;
    justify-content: center;
    /* centra horizontalmente */
    align-items: center;
    /* centra verticalmente si hay altura */
    padding: 0;
    /* elimina espacio interno */
    margin: 0;
    /* elimina espacio externo */
}

/* Imagen flovaManual */
.contenedorManual img {
    width: 100%;
    /* ocupa todo el ancho disponible del contenedor */
    max-width: 900px;
    /* limita el ancho máximo para no saturar */
    height: auto;
    /* mantiene la proporción */
    display: block;
    /* elimina espacio debajo de la imagen */
    margin: 0 auto;
    /* centra en el contenedor */
    border-radius: 8px;
    /* opcional: esquinas redondeadas */
}

/*Imagen flova billete*/
/* Contenedor de la imagen */
.contenedorPng {
    display: flex;
    justify-content: center;
    /* centra horizontalmente */
    align-items: center;
    /* centra verticalmente si hay altura */
    padding: 0;
    /* elimina espacio interno */
    margin: 0;
    /* elimina espacio externo */
}

/* Imagen billete */
.contenedorPng img {
    width: 100%;
    /* ocupa todo el ancho disponible del contenedor */
    max-width: 30%;
    /* limita el ancho máximo para no saturar */
    height: auto;
    /* mantiene la proporción */
    display: block;
    /* elimina espacio debajo de la imagen */
    margin: 0 auto;
    /* centra en el contenedor */
    border-radius: 8px;
    /* opcional: esquinas redondeadas */
}


/*Imagen flova billete*/
/* Contenedor de la imagen */
.contenedorEmoji {
    display: flex;
    justify-content: center;
    /* centra horizontalmente */
    align-items: center;
    /* centra verticalmente si hay altura */
    padding: 0;
    /* elimina espacio interno */
    padding-top: 1rem;
    margin: 0;
    /* elimina espacio externo */
}

/* Imagen billete */
.contenedorEmoji img {
    width: 100%;
    /* ocupa todo el ancho disponible del contenedor */
    max-width: 10%;
    /* limita el ancho máximo para no saturar */
    height: auto;
    /* mantiene la proporción */
    display: block;
    /* elimina espacio debajo de la imagen */
    margin: 0 auto;
    /* centra en el contenedor */
    border-radius: 8px;
    /* opcional: esquinas redondeadas */
}

/*Imagen flova manual*/
/* Contenedor de la imagen */
.contenedorDatos {
    display: flex;
    justify-content: center;
    /* centra horizontalmente */
    align-items: center;
    /* centra verticalmente si hay altura */
    padding: 2rem 0rem;
    /* elimina espacio interno */
    margin: 2rem 0rem;
    /* elimina espacio externo */
}

/* Imagen flovaManual */
.contenedorDatos img {
    width: 100%;
    /* ocupa todo el ancho disponible del contenedor */
    max-width: 70%;
    /* limita el ancho máximo para no saturar */
    height: auto;
    /* mantiene la proporción */
    display: block;
    /* elimina espacio debajo de la imagen */
    margin: 0 auto;
    /* centra en el contenedor */
    border-radius: 8px;
    /* opcional: esquinas redondeadas */
}

/* Main sections */
main section {
    padding: 0rem 1rem;
}

/*contenedorOptIn*/
/* Sección completa con fondo claro y padding */
.queridoOptIn {
    background-color: #f9fafb;
    /* Color de fondo suave */
    padding: 2rem 1rem;
    /* Espaciado vertical y horizontal */
    padding-bottom: 0.5rem;
    display: flex;
    /* Flexbox para centrar */
    justify-content: center;
    /* Centrado horizontal */
}

/*Para la pagina sobre-nosotros.html*/
/* Contenedor del contenido */
.contenedorOptIn {
    max-width: 50rem;
    /* Limita el ancho del texto */
    width: 100%;
    /* Ocupa todo el ancho disponible */
    text-align: left;
    /* Justifica el texto (bordes alineados) */
}

/* Encabezado */
.contenedorOptIn h2 {
    text-align: center;
    /* Centra solo el título */
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #005bb5;
}

/* Párrafos */
.contenedorOptIn p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    /* Espacio entre líneas */
    margin-bottom: 1.5rem;
    color: #000;
}

/* --- ESTILOS PARA PC --- */
.contenedorOptIn ul {
    list-style-type: disc !important;
    /* Fuerza las viñetas */
    list-style-position: outside !important;
    /* Viñetas a la izquierda */
    padding-left: 2.5rem;
    /* 💻 Más espacio para pantallas grandes */
    line-height: 1.4;
    /* Más separación entre líneas */
}

.contenedorOptIn li {
    position: relative;
    margin-bottom: 1rem;
    /* 💻 Espacio más generoso entre elementos */
    font-size: 1.6rem;
    font-weight: 500;
}

/* 🌟 Pseudo-elemento personalizado para PC */
.contenedorOptIn li::before {
    content: "•";
    color: #005ad6;
    /* Azul brillante */
    font-size: 5rem;
    /* 💻 Aumenta el tamaño de la viñeta */
    position: absolute;
    left: -2rem;
    /* Ajusta la posición horizontal */
    top: -2.4rem;
    /* Ajusta la posición vertical */
}

/* Quita el marcador nativo (por si acaso) */
.contenedorOptIn li::marker {
    content: none;
}


.contenedorOptIn a {
    font-size: 1.6rem;
    position: relative;
    text-decoration: none;
    color: #005ad6;
    transition: color 0.3s ease;
}

.contenedorOptIn a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #0070f3;
    transition: width 0.3s ease;
}

.contenedorOptIn a:hover {
    color: #0070f3;
}

.contenedorOptIn a:hover::after {
    width: 100%;
}

/* ESTILOS DE LISTA: VERSIÓN ESCRITORIO (FLECHAS) */
.flechasFlova ul {
    list-style: none;
    list-style: none;
    padding-left: 0;
}

.flechasFlova li {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    color: #000;
    position: relative;
    margin-bottom: 2.5rem;
}

.flechasFlova li::before {
    content: "";
    position: absolute;
    top: 1.2rem;
    transform: translateY(-50%);
    left: -6rem;
    width: 80px;
    height: 40px;
    background-image: url('flechas.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.br-responsive {
    display: inline;
}

/* Boton CTA 1 */

#agenda {
    padding: 0.5rem;
    padding-top: 0rem;
    padding-bottom: 1rem;
}

.botonAgenda {
    text-align: center;
    margin-top: 2.2rem;
    background: #F9FAFB;
    width: auto;
    display: flex;
}

.botonAgenda button {
    background: #005ad6;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 1rem 1rem;
    padding-top: 1.5rem;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
    margin: 0 auto;
}


.botonAgenda button:hover {
    background: #0070f3;
    transform: translateY(-0.1px) scale(1.01);
    transition: background .3s ease transform 0.3s;
}

.botonAgenda button strong {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

#agenda p {
    display: block;
    font-size: 1.5rem;
    color: #666666;
    /* Subrayado */
    text-align: center;
    /* Centrado */
    max-width: 70%;
    /* Igual que el botón */
    margin: 0.5rem auto 0 auto;
    /* Separación desde el botón + centrado */
}

/* Boton CTA 2 */

#agenda2 {
    padding: 0.5rem;
    padding-top: 0rem;
    padding-bottom: 1rem;
}

.botonAgenda2 {
    text-align: center;
    margin-top: 2.2rem;
    background: #F9FAFB;
    width: auto;
    display: flex;
}

.botonAgenda2 button {
    background: #FF3131;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 1rem 1rem;
    padding-top: 1.5rem;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
    margin: 0 auto;
}


.botonAgenda2 button:hover {
    background: #da2828;
    transform: translateY(-0.1px) scale(1.01);
    transition: background .3s ease transform 0.3s;
}

.botonAgenda2 button strong {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

#agenda2 p {
    display: block;
    font-size: 1.5rem;
    color: #666666;
    /* Subrayado */
    text-align: center;
    /* Centrado */
    max-width: 70%;
    /* Igual que el botón */
    margin: 0.5rem auto 0 auto;
    /* Separación desde el botón + centrado */
}

main section h3 {
    color: #0070f3;
    text-align: center;
    margin-bottom: 0rem;
    font-weight: 600;
}

.queridoAzules {
    display: flex;
    flex-direction: column;
    /* Apila verticalmente */
    align-items: center;
    /* Centra los cuadros */
    background-color: #f9fafb;
    padding: 2rem 1rem;
    gap: 1.5rem;
    /* Espacio entre cuadros */
}

.contenedorAzules {
    background-color: #ffffff;
    border: 2px solid #0070f3;
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    max-width: 55rem;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;

    display: flex;
    /* ✅ Activa flexbox */
    flex-direction: column;
    /* Apila los párrafos */
    justify-content: left;
    /* ✅ Centra verticalmente el contenido */
}


/* Efecto moderno al pasar el mouse */
.contenedorAzules:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.contenedorAzules p {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #000;
    text-align: left;
    margin: 0.5rem 0;
    /* ✅ Igual espacio arriba y abajo */
}


.contenedorAzules b {
    color: #000;
}

.contenedorAzules u {
    text-decoration: underline;
    text-decoration-color: #000;
    /* Subrayado azul */
}

/* Testimonios */

/* Testimonios - Efecto Cascada */
.testimonials-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 70%;
    margin: 2rem auto;
}

.testimonial-column {
    width: 100%;
    position: relative;
    height: 500px;
    overflow: hidden;

    /* Máscara para el desvanecido arriba y abajo */
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}


.testimonial-scroller {
    position: absolute;
    width: 100%;
    transition: transform 0.5s ease;
}

.testimonial {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.user {
    font-weight: bold;
    margin-bottom: 10px;
    color: #005ad6;
    font-size: 1.2rem;
}

.handle {
    color: #657786;
    font-size: 1.1rem;
}

.content {
    margin-top: 10px;
    line-height: 1.2;
    font-size: 1.2rem;
}


/* Preguntas frecuentes */
#preguntasFrecuentes {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 1rem;
    background: #F9FAFB;
}

/*botones con funcion script*/
.contenedorModular {
    display: grid;
    gap: 1rem;
    max-width: 65%;
    margin: 2rem auto 0;
}

/* Botón */
.btn-read-more {
    display: flex;
    justify-content: left;
    font-size: 1.5rem;
    align-items: center;
    background: #E0E0E0;
    color: #000;
    padding: 1rem 2.5rem;
    padding-right: 5rem;
    line-height: 1.3;
    cursor: pointer;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    border: none;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.btn-read-more b {
    display: block;
    /* Hace que el texto ocupe toda la línea */
}

/* Ícono gris con animación */
.toggle-icon {
    font-size: 1.5rem;
    color: #1A1A1A;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: absolute;
    right: 2rem;
    /* Posición desde la derecha del botón */
    top: 50%;
    /* Centrado vertical */
    transform: translateY(-50%);
    /* Ajuste fino para centrar */
    margin-left: 0;
    /* Elimina el margen izquierdo anterior */
}

.btn-read-more.active .toggle-icon {
    color: #667;
    /* Gris más oscuro cuando está activo */
    transform: rotate(180deg) scale(1.1);
}


/* Animación suave al cambiar */
.fa-plus,
.fa-minus {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.2s ease;
}

.modal-container.show~.btn-read-more .toggle-icon {
    transform: rotate(180deg);
}

/* Hover */
.btn-read-more:hover {
    background: #FFF;
    color: #1A1A1A;
    transition: background 0.3s ease;
}

/* Modal oculto (por defecto) */
.modal-container {
    display: none;
    background: #E0E0E0;
    color: #3d3d3d;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-top: 0.5rem;
    width: 100%;
    /* Igual al botón */
    max-width: 100%;
    /* No excede el ancho del contenedor padre */
    animation: fadeIn 0.2s ease-in-out;
    box-sizing: border-box;
    /* Evita que el padding aumente el tamaño */
}


.modal-container:hover {
    background: #fff;
    color: #1A1A1A;
    transition: background .2s;
}

/* Modal visible */
.modal-container.show {
    display: block;
}

/* Contenido del modal */
.modal {
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
    max-height: 60vh;
    /* máximo 60% del alto visible */
    overflow-y: auto;
    /* scroll si el contenido excede */
    border-radius: 0.5rem;
    font-size: 1.3rem;
    text-align: left;
}

.modal ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.modal li {
    margin-bottom: 0.6rem;
    line-height: 1.3;
    font-size: 1.3rem;
}

.modal li::marker {
    color: #1A1A1A;
    /* azul moderno */
    font-size: 1.2rem;
}


/* Animación */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*Planes y servicios*/
/* Contenedor principal de la sección */
.contenedorPlanes {
    position: relative;
    /* necesario para posicionar el overlay */
    background-image: url('cta.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1rem;
    max-width: 70%;
    margin: 2rem auto;
    padding: 2rem 4rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Capa oscura encima del fondo gif */
.overlayPlanes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* opacidad ajustable */
    z-index: 1;
    border-radius: 1rem;
}

/* Contenido encima del overlay */
.contenidoPlanes {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    /* cambia de fila a columna */
    align-items: center;
    /* centra horizontalmente */
    text-align: center;
    /* centra el texto */
    gap: 1rem;
    width: 100%;
}

/* Aviso promocional */
.contenedorPromo {
    background-color: rgba(255, 254, 254, 0.2);
    color: #fff;
    padding: 0.4rem 1rem 0.4rem 2rem;
    /* agrega espacio a la izquierda para el puntito */
    text-align: center;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 550;
    width: fit-content;
    margin-left: 0;
    position: relative;
    /* necesario para posicionar el ::before */
}

.contenedorPromo::before {
    content: '';
    position: absolute;
    left: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.8rem;
    height: 0.8rem;
    background-color: #ff3c00;
    /* verde brillante */
    border-radius: 50%;
    box-shadow: 0 0 8px 2px #ff3c00;
    /* brillo */
}



/* Título y descripción */
.contenedorPlanesTitulo h3 {
    font-size: 2.2rem;
    color: #FFF;
    margin-bottom: 0rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.1rem;
    text-align: center;
    padding: 0rem 2rem;
    /* ahora alineado a la izquierda */
}

.contenedorPlanesTitulo p {
    font-size: 1rem;
    margin-bottom: 0rem;
    font-weight: 550;
    text-align: center;
    /* ahora alineado a la izquierda */
    color: #CCC;
}

.grupoBotones {
    margin-top: 0rem;
    /* reduce espacio arriba */
}

/* Botones */
.contenedorPlanBoton {
    display: inline-block;
    justify-content: center;
    margin: 0.5rem 0.5rem 0 0;
    padding: 0.5rem 6rem;
    font-size: 2rem;
    font-weight: 500;
    background-color: #005bb5;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.contenedorPlanBoton:hover {
    background: #0070f3;
    /* tono más oscuro del azul original */
    transition: background 0.3s ease;
}

/* TITULOS NUEVOS */
.contenedorTituloSeccion {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.contenedorTituloSeccion h2 {
    font-size: 5.4rem;
    margin-bottom: 0.4rem;
    letter-spacing: -0.07em;
    line-height: 1;
    font-weight: bold;
    color: #000;
}

.contenedorTituloSeccion h2 .noNegrita {
    font-weight: normal;
}

/* Footer */
/* Footer Styles */
.cierrePagina {
    background: #000;
    color: #ccc;
    padding: 5rem 1rem;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}

.footer-container {
    max-width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-between;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1 1 300px;
}

.logo {
    max-width: 150px;
    height: auto;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons i {
    font-size: 1.5rem;
    color: #ccc;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: #0070f3;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-selector img {
    width: 24px;
    height: auto;
}

.language-selector select {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0rem;
    line-height: 1;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #0070f3;
}

.call-to-action p {
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.call-to-action span {
    margin-top: -2.5rem;
    margin-bottom: -1rem;
}

.cta-form {
    display: flex;
    gap: 0.5rem;
}

.cta-form input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #555;
    border-radius: 4px;
    background: #222;
    color: #fff;
}

.cta-form button {
    padding: 0.5rem 1rem;
    background: #0070f3;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-form button:hover {
    background: #005bb5;
}

.footer-bottom {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #FFFF;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #0070f3;
}

/* =======================
   ESTILOS DEL POP-UP (MODIFICADOS)
   ======================= */

/* 1. Clase para bloquear el scroll del body */
body.popup-abierto {
    overflow: hidden;
}

/* 2. El fondo oscuro (overlay) */
.popup-overlay {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Fondo oscuro semi-transparente como en la imagen */
    z-index: 10000;
}

/* 3. El modal (pop-up) */
.popup-modal {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    color: #fff;
    padding: 2.5rem;
    padding-top: 3.5rem;
    /* Más espacio arriba para la 'X' */
    border-radius: 8px;
    z-index: 10001;
    width: 90%;
    max-width: 550px;
    /* Ancho máximo */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 4. Clases para mostrar el pop-up */
.popup-overlay.visible,
.popup-modal.visible {
    display: block;
}

/* 5. Botón de cerrar (la 'X') */
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

/* 6. Contenido del Pop-up (Títulos y Párrafos) */
.popup-modal h2 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
    display: flex;
    align-items: flex-start;
    /* Alinea el punto con el INICIO del texto */
    justify-content: center;
}

.popup-modal p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #fff;
    /* Asegura color blanco */
    text-align: center;
}

/* 7. Formulario del Pop-up */
.popup-modal .form-group {
    margin-bottom: 1rem;
}

.popup-modal input[type="text"],
.popup-modal input[type="email"] {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    background: #fff;
    /* Fondo blanco como en la imagen */
    color: #333;
}

.popup-modal input[type="text"]::placeholder,
.popup-modal input[type="email"]::placeholder {
    color: #555;
    font-weight: bold;
}

.popup-submit {
    display: flex;
    justify-content: center;
    /* centra horizontalmente */
    align-items: center;
    /* centra verticalmente */
    background: #FF3131;
    color: #fff;
    font-weight: 900;
    font-size: 1.5rem;
    border: none;
    border-radius: 20px;
    padding: 1.2rem 2rem;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}


.popup-submit:hover {
    background: #da2828;
    /* Rojo más oscuro al pasar el mouse */
}

/* =======================
   NUEVOS ESTILOS DEL PUNTO (REEMPLAZAN A .blinking-dot)
   ======================= */

.pulsing-dot {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-right: 0px;
    position: relative;
    top: 0.1em;
    /* <-- AJUSTE MANUAL: Sube o baja este valor (ej. 0.2em, 0.1em) */
    flex-shrink: 0;
}

/* El punto rojo FIJO (adelante) */
.pulsing-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FF3131;
    border-radius: 50%;
    z-index: 2;
}

/* El pulso (atrás) */
.pulsing-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FF3131;
    border-radius: 50%;
    z-index: 1;
    animation: pulseEffect 1.5s infinite ease-out;
}

/* Animación del pulso (efecto radar) */
@keyframes pulseEffect {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.contenedor-ads {
    position: relative;
}

.flecha-ads {
    height: 7rem;
    /* Altura de la flecha (ajusta si es necesario) */
    width: auto;
    /* Mantiene la proporción */
    flex-shrink: 0;
    /* Evita que la imagen se encoja */
    transform: scaleX(-1);
}

/* --- ESTILOS PARA FLECHA CURVA ADS --- */
.flecha-curva-ads {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    height: 14rem;
    width: auto;
    top: -39%;
    left: -20%;
}

/* =======================
   RESPONSIVE TABLETAS Y MÓVILES
   ======================= */

/* Tabletas: hasta 1024px */
@media (min-width: 751px) and (max-width: 1024px) {

    /*header*/
    header,
    .contenedorNav {
        margin-bottom: 0;
    }

    #menuToggle {
        font-size: 1rem;
    }

    .logoFlova img {
        height: 1.7rem;
    }

    .contenedorVideo {
        padding: 1.5rem;
    }

    .contenedorVideo video {
        max-width: 90%;
        border-radius: 0.8rem;
        /*box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);*/
    }

    .menu-desplegado a {
        font-size: 3rem;
        /* texto un poco más pequeño */
    }

    .menu-toggle {
        width: 22px;
        height: 16px;
    }

    .menu-toggle .bar {
        height: 2.5px;
    }

    .menu-desplegado {
        transform: translateY(-50%);
        /* sube 10% desde su posición centrada */
    }

    ins.responsive {
        background-color: #0070f3;
        /* color amarillo marcador */
        color: inherit;
        /* mantiene el color del texto */
        padding: 0 0.1em;
        /* pequeño espacio a los lados */
        border-radius: 2px;
        /* opcional, bordes redondeados */
        text-decoration: none;
        /* quitar subrayado normal */
    }

    #aviso {
        padding-top: 3rem;
        /* menos espacio superior */
        margin-top: 0rem;
    }

    .botonAviso {
        padding: 0.5rem 1rem;
        /* un poco más compacto */
        font-size: 1.1rem;
        /* reduce tamaño del texto */
        max-width: 70%;
        /* se adapta mejor a pantallas medianas */
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    }

    .botonAviso strong {
        font-size: 1rem;
        /* ajusta el texto interno */
    }

    .botonTitulo strong {
        font-size: 1.2rem;
        /* ajusta el texto interno */
    }

    /*section Flova */
    /* Sección Héroe */
    #flova {
        text-align: center;
        padding-top: 1.5rem;
        padding-bottom: 0rem;
        background: #F9FAFB;
    }

    .contenedorTitulo {
        max-width: 90%;
    }

    .contenedorTitulo h1 {
        font-size: 3.5rem;
    }

    .contenedorTitulo h2 {
        font-size: 2.5rem;
    }

    .contenedorTitulo p {
        font-size: 1.2rem;
        max-width: 70%;
    }

    main section {
        padding: 0rem 1rem;
    }

    .contenedorOptIn {
        max-width: 85%;
    }

    .contenedorOptIn p,
    .contenedorOptIn li,
    .contenedorOptIn a {
        font-size: 1.3rem;
        line-height: 1.05;
    }

    .contenedorOptIn ul {
        list-style-type: disc !important;
        /* Fuerza que aparezcan */
        list-style-position: outside !important;
        /* Que se muestren a la izquierda */
        padding-left: 1.5rem;
        /* Espacio para el punto */
        line-height: 1.05;
    }

    .contenedorOptIn li {
        position: relative;
        margin-bottom: 0.6rem;
    }

    /* 🌟 Pseudo-elemento personalizado para asegurar el color */
    .contenedorOptIn li::before {
        content: "•";
        /* Crea manualmente la viñeta */
        color: #005ad6;
        /* Azul brillante */
        font-size: 3.5rem;
        position: absolute;
        left: -1.6rem;
        top: -1rem;
    }

    /* Quita el marcador nativo (por si acaso) */
    .flechasFlova li::marker {
        content: none;
        list-style: none;
    }

    .flechasFlova ul {
        list-style: none;
        padding-left: 0;
    }

    .flechasFlova li {
        font-size: 1.3rem;
        line-height: 1.05;
        position: relative;
        padding-left: 2rem;
        margin-bottom: 1.2rem;
    }

    .flechasFlova li::before {
        content: "•";
        color: #005ad6;
        font-size: 3.5rem;
        position: absolute;
        left: 0;
        top: -1rem;
        background-image: none;
        width: auto;
        height: auto;
        transform: none;
    }

    .br-responsive {
        display: none;
    }

    /*section agenda*/
    #agenda {
        max-width: 80%;
        margin: 0rem auto;
        /* Centra horizontalmente el bloque */
        display: flex;
        flex-direction: column;
        /* Para que el contenido se apile verticalmente */
        align-items: center;
        /* Centra horizontalmente el contenido interno */
        /*text-align: center;  Alinea el texto al centro */
        padding: 0rem 3rem;
        padding-bottom: 1rem;
    }

    .botonAgenda button,
    .botonAgenda button strong {
        font-size: 1.7rem;
        line-height: 1;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    #agenda p {
        font-size: 1.1rem;
    }

    /*section agenda2*/
    #agenda2 {
        max-width: 90%;
        margin: 0rem auto;
        /* Centra horizontalmente el bloque */
        display: flex;
        flex-direction: column;
        /* Para que el contenido se apile verticalmente */
        align-items: center;
        /* Centra horizontalmente el contenido interno */
        /*text-align: center;  Alinea el texto al centro */
        padding: 0rem 1rem;
        padding-bottom: 1rem;
    }

    .botonAgenda2 button,
    .botonAgenda2 button strong {
        font-size: 1.7rem;
        line-height: 0.5;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #agenda2 p {
        font-size: 1.1rem;
    }

    /* Contenedor del manual */
    .contenedorManual {
        padding: 1rem 2rem;
        /* agrega un poco de espacio lateral */
    }

    /* Imagen flovaManual */
    .contenedorManual img {
        max-width: 90%;
        /* reduce el ancho máximo para tablets */
        border-radius: 6px;
        /* esquinas más suaves */
    }

    /* Contenedor de la imagen */
    .contenedorPng {
        padding: 1rem 2rem;
        /* agrega un poco de espacio lateral */
    }

    /* Imagen flovaManual */
    .contenedorPng img {
        max-width: 35%;
        /* reduce el ancho máximo para tablets */
        border-radius: 6px;
        /* esquinas más suaves */
    }

    /* Contenedor de la imagen */
    .contenedorEmoji {
        padding: 1rem 2rem;
        /* agrega un poco de espacio lateral */
    }

    /* Imagen flovaManual */
    .contenedorEmoji img {
        max-width: 15%;
        /* reduce el ancho máximo para tablets */
        border-radius: 6px;
        /* esquinas más suaves */
    }

    .contenedorDatos {
        padding: 1.5rem -1rem;
        /* menos padding horizontal y vertical */
        margin: 1.5rem -1rem;
        /* menos margen externo */
    }

    .contenedorDatos img {
        max-width: 90%;
        /* se ajusta al ancho del contenedor */
    }

    /*Preguntas frecuentes*/
    #preguntasFrecuentes {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .contenedorModular {
        max-width: 80%;
        gap: 1rem;
        margin: 2rem auto;
    }

    .btn-read-more {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        padding-right: 4rem;
        border-radius: 0.6rem;
    }

    .toggle-icon {
        font-size: 1.2rem;
        right: 1.8rem;
    }

    .modal {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .modal ul {
        list-style-type: disc;
        padding-left: 1.8rem;
        margin-top: 0.8rem;
        margin-bottom: 0.5rem;
        text-align: left;
    }

    .modal li {
        margin-bottom: 0.5rem;
        line-height: 1.3;
        font-size: 1.1rem;
    }

    .modal li::marker {
        color: #1A1A1A;
        font-size: 1.1rem;
    }

    /*testimonioss*/
    .testimonials-wrapper {
        flex-direction: row;
        gap: 1rem;
        max-width: 85%;
        margin: 2rem auto;
    }

    .testimonial-column {
        height: 25rem;
    }

    .testimonial {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .user {
        font-size: 1.1rem;
    }

    .handle {
        font-size: 1rem;
    }

    .content {
        font-size: 1rem;
        line-height: 1.3;
    }

    /*seccion planes*/
    .contenedorPlanes {
        max-width: 80%;
        margin: 2rem auto;
        padding: 2rem;
        flex-direction: column;
        text-align: center;
    }

    .contenedorPlanesTitulo h3 {
        font-size: 1.7rem;
        padding: 0 1rem;
    }

    .contenedorPlanesTitulo p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .contenedorPromo {
        font-size: 0.95rem;
        padding: 0.4rem 1rem 0.4rem 1.8rem;
    }

    .contenedorPlanBoton {
        font-size: 1.4rem;
        padding: 0.6rem 4rem;
    }

    /*section general*/
    section h3 {
        font-size: 1.1rem;
    }

    .contenedorTituloSeccion h2 {
        font-size: 3.5rem;
        padding-top: 0.5rem;
    }

    .queridoAzules {
        padding: 2rem;
        gap: 1.2rem;
    }

    .contenedorAzules {
        max-width: 90%;
        padding: 1.5rem;
    }

    .contenedorAzules p {
        font-size: 1.4rem;
        line-height: 1.45;
    }

    /*FOOTER*/
    footer {
        max-width: 100%;
        margin: 0 auto;
        /* Centra horizontalmente el bloque */
        display: flex;
        flex-direction: column;
        /* Para que el contenido se apile verticalmente */
        align-items: center;
        /* Centra horizontalmente el contenido interno */
        /*text-align: center;  Alinea el texto al centro */
        padding: 2rem 1rem;
    }

    .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 90%;
        margin: auto;
    }

    .footer-column {
        max-width: 100%;
        flex: none;
    }

    .flecha-ads,
    .flecha-curva-ads,
    .fondo-subrayado {
        display: none;
        /* Oculta las imágenes */
    }

    .popup-modal {
        width: 85%;
        /* Ajusta ancho */
        padding: 2rem;
        /* Menos padding que en PC */
        padding-top: 3rem;
        /* Ajuste para la X */
    }

    .popup-modal h2 {
        font-size: 2rem;
        /* Fuente un poco más pequeña */
    }

    .popup-modal p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .popup-modal input[type="text"],
    .popup-modal input[type="email"] {
        padding: 0.9rem;
        font-size: 1rem;
    }

    .popup-submit {
        font-size: 1.3rem;
        padding: 1rem 1.5rem;
    }

    .pulsing-dot {
        width: 28px;
        height: 28px;
    }

}


/* =======================
   RESPONSIVE MÓVILES
   ======================= */
@media (max-width: 750px) {

    /* Header */
    header,
    .contenedorNav {
        margin-bottom: 0;
        padding: 0.4rem 0;
    }

    .logoFlova img {
        width: 12rem;
        margin: -0.4rem;
    }

    .contenedorVideo {
        padding: 1rem;
    }

    .contenedorVideo video {
        width: 100%;
        max-width: 100%;
        border-radius: 0.6rem;
        /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);*/
    }

    .menu-desplegado a {
        font-size: 2.1rem;
        /* ajustar a pantalla pequeña */
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .menu-toggle {
        right: 1.5rem;
        width: 20px;
        height: 14px;
    }

    .menu-toggle .bar {
        height: 2px;
    }

    .menu-desplegado li {
        margin: 0.8rem 0;
        /* menos espacio entre enlaces */
    }

    .menu-desplegado {
        transform: translateY(-20%);
        /* sube 10% desde su posición centrada */
    }

    ins.responsive {
        background-color: #0070f3;
        /* color amarillo marcador */
        color: inherit;
        /* mantiene el color del texto */
        padding: 0 0.1em;
        /* pequeño espacio a los lados */
        border-radius: 2px;
        /* opcional, bordes redondeados */
        text-decoration: none;
        /* quitar subrayado normal */
    }

    #aviso {
        padding-top: 2rem;
        /* menos espacio superior */
        margin-top: 0rem;
    }

    .botonAviso {
        padding: 0.4rem 0.8rem;
        /* botón más compacto */
        font-size: 1rem;
        /* texto más pequeño */
        max-width: 90%;
        /* ocupa casi todo el ancho disponible */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    }

    .botonAviso strong {
        font-size: 0.9rem;
        /* ajusta el tamaño del texto interno */
    }

    .botonAviso2 strong {
        font-size: 0.9rem;
        /* ajusta el tamaño del texto interno */
    }

    .botonTitulo strong {
        font-size: 1rem;
        /* ajusta el tamaño del texto interno */
    }

    /* section general */
    section h3 {
        font-size: 0.9rem;
        justify-content: center;
        align-items: center;
    }

    /*section Flova */
    /* Sección Héroe */
    #flova {
        text-align: center;
        padding-top: 1rem;
        padding-bottom: 1rem;
        background: #F9FAFB;
    }

    /* section Flova */
    .contenedorTitulo {
        max-width: 100%;
        text-align: center;
    }

    .contenedorTitulo h1 {
        font-size: 2.5rem;
        font-weight: 750;
        justify-content: center;
        align-items: center;
        margin-bottom: -0.5rem;
    }

    .contenedorTitulo h2 {
        font-size: 1.8rem;
        font-weight: 500;
        justify-content: center;
        align-items: center;
        margin-bottom: -0.5rem;
    }

    .contenedorTitulo p {
        font-size: 1.2rem;
        max-width: 85%;
        line-height: 1.2;
    }

    .br-responsive {
        display: inline;
    }

    main section {
        padding: 0rem 1rem;
    }

    .contenedorOptIn {
        max-width: 100%;
    }

    .contenedorOptIn p,
    .contenedorOptIn li,
    .contenedorOptIn a {
        font-size: 1.4rem;
        line-height: 1.1;
    }

    .contenedorOptIn ul {
        list-style-type: disc !important;
        /* Fuerza que aparezcan */
        list-style-position: outside !important;
        /* Que se muestren a la izquierda */
        padding-left: 1.5rem;
        /* Espacio para el punto */
        line-height: 0;
    }

    .contenedorOptIn li {
        position: relative;
        margin-bottom: 0.6rem;
    }

    /* 🌟 Pseudo-elemento personalizado para asegurar el color */
    .contenedorOptIn li::before {
        content: "•";
        /* Crea manualmente la viñeta */
        color: #005ad6;
        /* Azul brillante */
        font-size: 3rem;
        position: absolute;
        left: -1.5rem;
        top: -1rem;
    }

    /* Quita el marcador nativo (por si acaso) */
    .contenedorOptIn li::marker {
        content: none;
    }

    .contenedorOptIn ul {
        list-style: none;
        padding-left: 0;
    }

    .contenedorOptIn li {
        font-size: 1.4rem;
        line-height: 1.1;
        position: relative;
        padding-left: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .contenedorOptIn li::before {
        content: "•";
        color: #005ad6;
        font-size: 3rem;
        position: absolute;
        left: 0;
        top: -0.7rem;
        background-image: none;
        width: auto;
        height: auto;
        transform: none;
    }


    /*section agenda*/
    #agenda {
        max-width: 95%;
        margin: 0rem auto;
        /* Centra horizontalmente el bloque */
        display: flex;
        flex-direction: column;
        /* Para que el contenido se apile verticalmente */
        align-items: center;
        /* Centra horizontalmente el contenido interno */
        /*text-align: center;  Alinea el texto al centro */
        padding: 0rem 1rem;
        padding-bottom: 1rem;
    }

    .botonAgenda button,
    .botonAgenda button strong {
        font-size: 1.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-top: 0.5rem;
        padding-bottom: 0.2rem;
    }

    #agenda p {
        font-size: 1rem;
        line-height: 1.2;
    }

    /*section agenda*/
    #agenda2 {
        max-width: 85%;
        margin: 0rem auto;
        /* Centra horizontalmente el bloque */
        display: flex;
        flex-direction: column;
        /* Para que el contenido se apile verticalmente */
        align-items: center;
        /* Centra horizontalmente el contenido interno */
        /*text-align: center;  Alinea el texto al centro */
        padding: 0rem 1rem;
        padding-bottom: 1rem;
    }

    .botonAgenda2 button,
    .botonAgenda2 button strong {
        font-size: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.2rem;
    }

    #agenda2 p {
        font-size: 1rem;
        line-height: 1.2;
    }

    /* Contenedor de la imagen */
    .contenedorManual {
        padding: 0rem 1rem;
        /* agrega un poco de espacio lateral */
    }

    /* Imagen flovaManual */
    .contenedorManual img {
        max-width: 100%;
        /* reduce el ancho máximo para tablets */
        border-radius: 4px;
        /* esquinas más suaves */
    }

    /* Contenedor de la imagen png */
    .contenedorPng {
        padding: 0rem 1rem;
        /* agrega un poco de espacio lateral */
    }

    /* Imagen flovaManual */
    .contenedorPng img {
        max-width: 45%;
        /* reduce el ancho máximo para tablets */
        border-radius: 4px;
        /* esquinas más suaves */
    }

    /* Contenedor de la imagen png */
    .contenedorEmoji {
        padding: 0rem 1rem;
        /* agrega un poco de espacio lateral */
    }

    /* Imagen flovaManual */
    .contenedorEmoji img {
        max-width: 20%;
        /* reduce el ancho máximo para tablets */
        border-radius: 4px;
        /* esquinas más suaves */
    }

    .contenedorDatos {
        padding: 1rem 0.5rem;
        /* aún menos padding */
        margin: 1rem 0rem;
        /* margen más pequeño */
    }

    .contenedorDatos img {
        max-width: 95%;
        /* ocupa todo el ancho disponible */
        border-radius: 6px;
        /* opcional: menos redondeo en móviles */
    }

    /* preguntas frecuentes */
    #preguntasFrecuentes {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .contenedorModular {
        max-width: 95%;
        gap: 0.8rem;
        margin: 0rem auto;
        margin-top: -1rem;
        grid-template-columns: 1fr;
    }

    .btn-read-more {
        font-size: 1rem;
        padding: 0.9rem 1rem;
        padding-right: 3rem;
        border-radius: 0.5rem;
        line-height: 1.4;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .btn-read-more b {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .toggle-icon {
        font-size: 1.1rem;
        right: 1rem;
    }

    .modal-container {
        margin-top: 0.4rem;
        border-radius: 0.5rem;
    }

    .modal {
        font-size: 0.95rem;
        padding: 0.8rem;
        max-height: none;
        line-height: 1.4;
    }

    /* Estilo para listas dentro de los modales */
    .modal ul {
        list-style-type: disc;
        /* Viñetas circulares */
        padding-left: 1.5rem;
        /* Sangría para alinear las viñetas */
        margin-top: 0.8rem;
        margin-bottom: 0.5rem;
        text-align: left;
        /* Asegura que el texto no quede centrado */
    }

    .modal li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
        font-size: 0.95rem;
        /* texto más legible */
    }

    /* Opcional: estilo de viñeta personalizado */
    .modal li::marker {
        color: #1A1A1A;
        /* azul moderno */
        font-size: 1.1rem;
    }


    /* testimonios */
    .testimonials-wrapper {
        font-size: 0.75rem;
        max-width: 90%;

    }

    #rightColumn {
        display: none;
    }

    #leftColumn {
        width: 100%;
    }

    .btn-read-more {
        font-size: 0.9rem;
    }

    .user {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .handle {
        font-size: 0.9rem;
        color: #777;
    }

    .content {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /*Planes*/
    .contenedorPlanes {
        max-width: 95%;
        margin: 1rem auto;
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
        border-radius: 0.8rem;
    }

    .overlayPlanes {
        border-radius: 0.8rem;
    }

    .contenedorPromo {
        font-size: 0.85rem;
        padding: 0.4rem 0.9rem 0.4rem 1.6rem;
    }

    .contenedorPlanesTitulo h3 {
        font-size: 1.3rem;
        line-height: 1.2;
        padding: 0rem 0rem;
        margin-bottom: -1rem;
    }

    .grupoBotones {
        margin-top: 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .contenedorPlanBoton {
        width: 100%;
        font-size: 1.2rem;
        padding: 0.7rem 2rem;
        border-radius: 0.4rem;
    }

    /* section general */
    section h3 {
        font-size: 1rem;
        justify-content: center;
        align-items: center;
        padding-bottom: 1rem;
    }

    .contenedorTituloSeccion h2 {
        font-size: 2.5rem;
    }

    .queridoAzules {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .contenedorAzules {
        max-width: 100%;
        padding: 1.2rem 1.3rem;
        border-radius: 0.8rem;
    }

    .contenedorAzules p {
        font-size: 1.3rem;
        line-height: 1.4;
        text-align: left;
        /* mejor lectura en pantallas pequeñas */
    }

    /*footer*/
    footer {
        max-width: 100%;
        font-size: 0.85rem;
        margin: 0 auto;
        /* Centra horizontalmente el bloque */
        display: flex;
        flex-direction: column;
        /* Para que el contenido se apile verticalmente */
        align-items: center;
        /* Centra horizontalmente el contenido interno */
        /*text-align: center;  Alinea el texto al centro */
        padding: 2rem 1rem;
    }

    .popup-modal {
        padding: 2rem;
        padding-top: 3rem;
        width: 95%;
    }

    .popup-modal h2 {
        font-size: 1.5rem;
    }

    .popup-modal p {
        font-size: 1rem;
    }

    .popup-submit {
        font-size: 0.90rem;
        padding: 1rem 1.5rem;
        border-radius: 15px;
        white-space: nowrap;
        width: 100%;
    }

    .pulsing-dot {
        width: 20px !important;
        /* <-- CAMBIO: Más pequeño en móvil */
        height: 20px !important;
        /* <-- CAMBIO: Más pequeño en móvil */
        margin-right: 0.1em !important;
        /* Ajuste para el nuevo tamaño */
        top: 0.1em;
        /* Mantenemos el ajuste vertical */
    }

    .flecha-ads,
    .flecha-curva-ads,
    .fondo-subrayado {
        display: none;
        /* Oculta las imágenes */
    }

}