/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    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;
}

/* Imagen hero */
.contenedorImagen {
    margin-top: 1rem;
}

.contenedorImagen img {
    max-width: 100%;
    border-radius: 8px;
}

/* ==== 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;
}

/* Sección Héroe */
#flova {
    text-align: center;
    padding-top: 8rem;
    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: 65%;
    /* Limita el ancho máximo para que no ocupe todo */
}


.contenedorTitulo h2 {
    font-size: 5.375 rem !important;
    margin-bottom: 0.4rem;
    letter-spacing: -0.09em;
    line-height: 1;
    font-weight: bold;
    /* o 700 según lo que uses */
}

.contenedorTitulo h2 .noNegrita {
    font-weight: normal;
}

.contenedorTitulo h1 {
    font-size: 7rem;
    margin-bottom: 0.4rem;
    letter-spacing: -0.09em;
    line-height: 1;
    font-weight: bold;
    /* o 700 según lo que uses */
}

.contenedorTitulo p {
    font-size: 1.4rem;
    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 hero */
.contenedorImagen {
    margin-top: 1rem;
}

.contenedorImagen img {
    max-width: 100%;
    border-radius: 8px;
}

/* Main sections */
main section {
    padding: 4rem 1rem;
}

/*contenedorEmprendedor*/
/* Sección completa con fondo claro y padding */
.queridoEmprendedor {
    background-color: #f9fafb;
    /* Color de fondo suave */
    padding: 4rem 1rem;
    /* Espaciado vertical y horizontal */
    padding-bottom: 0.5rem;
    display: flex;
    /* Flexbox para centrar */
    justify-content: center;
    /* Centrado horizontal */
}

/* Contenedor del contenido */
.contenedorEmprendedor {
    max-width: 75%;
    /* Limita el ancho del texto */
    width: 100%;
    /* Ocupa todo el ancho disponible */
    text-align: justify;
    /* Justifica el texto (bordes alineados) */
}

/* Encabezado */
.contenedorEmprendedor h2 {
    text-align: center;
    /* Centra solo el título */
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #005bb5;
}

/* Párrafos */
.contenedorEmprendedor p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.7;
    /* Espacio entre líneas */
    margin-bottom: 1rem;
    color: #000;
}

.contenedorEmprendedor li {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.7;
    /* Espacio entre líneas */
    margin-bottom: 1rem;
    color: #000;
    margin-left: 3rem
}

.contenedorEmprendedor a {
    font-size: 1.6rem;
    position: relative;
    text-decoration: none;
    color: #005ad6;
    transition: color 0.3s ease;
}

.contenedorEmprendedor a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #0070f3;
    transition: width 0.3s ease;
}

.contenedorEmprendedor a:hover {
    color: #0070f3;
}

.contenedorEmprendedor a:hover::after {
    width: 100%;
}

/*Para la pagina sobre-nosotros.html*/
/* Contenedor del contenido */
.contenedorEmprendedorNos {
    max-width: 50rem;
    /* Limita el ancho del texto */
    width: 100%;
    /* Ocupa todo el ancho disponible */
    text-align: justify;
    /* Justifica el texto (bordes alineados) */
}

/* Encabezado */
.contenedorEmprendedorNos h2 {
    text-align: center;
    /* Centra solo el título */
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #005bb5;
}

/* Párrafos */
.contenedorEmprendedorNos p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.7;
    /* Espacio entre líneas */
    margin-bottom: 1.5rem;
    color: #000;
}

.contenedorEmprendedorNos li {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.7;
    /* Espacio entre líneas */
    margin-bottom: 1rem;
    color: #000;
    margin-left: 3rem
}

.contenedorEmprendedorNos a {
    font-size: 1.6rem;
    position: relative;
    text-decoration: none;
    color: #005ad6;
    transition: color 0.3s ease;
}

.contenedorEmprendedorNos a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #0070f3;
    transition: width 0.3s ease;
}

.contenedorEmprendedorNos a:hover {
    color: #0070f3;
}

.contenedorEmprendedorNos a:hover::after {
    width: 100%;
}



/* Boton CTA 1 */

#agenda {
    padding: 0.5rem;
    padding-top: 2rem;
    padding-bottom: 12rem;
}

.botonAgenda {
    text-align: center;
    margin-top: 2.2rem;
    background: #F9FAFB;
    width: auto;
    /* Asegurar que no tenga ancho fijo */
    display: flex;
    /* O flex si prefieres */
}

.botonAgenda button {
    background: #005ad6;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    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;
    /* <-- cambio aquí */
    flex-direction: column;
    /* <-- apila verticalmente */
    align-items: center;
    /* <-- alinea horizontalmente */
    justify-content: center;
    /* <-- centra verticalmente */
    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: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.botonAgenda button span {
    display: block;
    color: #CCC;
    font-weight: 500;
}

#agenda em {
    display: block;
    color: #888888;
    font-style: italic;
    text-decoration: underline;
    /* Subrayado */
    text-align: center;
    /* Centrado */
    max-width: 70%;
    /* Igual que el botón */
    margin: 1rem auto 0 auto;
    /* Separación desde el botón + centrado */
}

/* 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;
}

/* =======================
   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;
    }

    .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 */
    }


    /*section Flova */
    /* Sección Héroe */
    #flova {
        text-align: center;
        padding-top: 4rem;
        padding-bottom: 0rem;
        background: #F9FAFB;
    }

    .contenedorTitulo {
        max-width: 70%;
    }

    .contenedorTitulo h1 {
        font-size: 5rem;
    }

    .contenedorTitulo p {
        font-size: 1.2rem;
        max-width: 100%;
    }

    .contenedorTitulo form {
        max-width: 70%;
    }

    .contenedorImagen img {
        max-width: 75%;
        border-radius: 8px;
    }

    main section {
        padding: 3rem 1rem;
    }

    /*section queridoEmprendedor*/
    .contenedorEmprendedor {
        max-width: 85%;
    }

    .contenedorEmprendedor p,
    .contenedorEmprendedor li,
    .contenedorEmprendedor a {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .contenedorEmprendedor li {
        margin-left: 2.5rem;
    }

    /*Para la pagina sobre-nosotros.html*/
    .contenedorEmprendedorNos {
        max-width: 85%;
    }

    .contenedorEmprendedorNos p,
    .contenedorEmprendedorNos li,
    .contenedorEmprendedorNos a {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .contenedorEmprendedorNos li {
        margin-left: 2.5rem;
    }

    /*section agenda*/
    #agenda {
        max-width: 75%;
        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-top: 0rem;
        padding-bottom: 3rem;
    }

    .botonAgenda button,
    .botonAgenda button strong {
        font-size: 1.5rem;
    }

    /*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;
    }


}

.contenedorImagen img {
    max-width: 75%;
    border-radius: 8px;
}


/* =======================
   RESPONSIVE MÓVILES
   ======================= */
@media (max-width: 750px) {

    /* Header */
    header,
    .contenedorNav {
        margin-bottom: 0;
        padding: 0.4rem 0;
    }

    .logoFlova img {
        width: 12rem;
        margin: -0.4rem;
    }

    /* section general */
    section h3 {
        font-size: 0.9rem;
        justify-content: center;
        align-items: center;
    }

        .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 */
    }

    /*section Flova */
    /* Sección Héroe */
    #flova {
        text-align: center;
        padding-top: 2rem;
        padding-bottom: 0rem;
        background: #F9FAFB;
    }

    /* section Flova */
    .contenedorTitulo {
        max-width: 90%;
        text-align: center;
    }

    .contenedorTitulo h1 {
        font-size: 3rem;
        font-weight: 750;
        justify-content: center;
        align-items: center;
        margin-bottom: -0.5rem;
    }

    .contenedorTitulo p {
        font-size: 0.9rem;
        max-width: 90%;
    }

    .contenedorImagen img {
        max-width: 80%;
        border-radius: 6px;
    }

    main section {
        padding: 2rem 1rem;
    }

    /* section queridoEmprendedor */
    .contenedorEmprendedor {
        max-width: 90%;
        margin-top: -2rem;
        margin-bottom: -1rem;
    }

    .contenedorEmprendedor p,
    .contenedorEmprendedor li,
    .contenedorEmprendedor a {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .contenedorEmprendedor li {
        margin-left: 1.5rem;
    }

    /*Para la pagina sobre-nosotros.html*/
    .contenedorEmprendedorNos {
        max-width: 95%;
        margin-top: -2rem;
        margin-bottom: -1rem;
    }

    .contenedorEmprendedorNos p,
    .contenedorEmprendedorNos li,
    .contenedorEmprendedorNos a {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .contenedorEmprendedorNos li {
        margin-left: 1.5rem;
    }

    /* section agenda */
    #agenda {
        max-width: 90%;
        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-top: 0rem;
        padding-bottom: 3rem;
    }

    .botonAgenda button,
    .botonAgenda button strong {
        font-size: 1.2rem;
    }

    /*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;
    }

}

reponsive moviles .contenedorImagen img {
    max-width: 80%;
    border-radius: 6px;
}