/* CONFIGURACIÓN GLOBAL */

/* Tipografía principal */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #000000;
}

a:hover {
    text-decoration: none !important;
}

/* Encabezados en color corporativo */
h1, h2, h3, h4 {
    color: #0F4C75;
}

/* Textos resaltados dentro de párrafos */
p strong {
    color: #0F4C75;
    font-weight: 700;
}

/* General de la página */
.container {
    max-width: 1440px;
    padding: 0 40px;
    margin: 0 auto;
}

/* HEADER (COMÚN A TODAS LAS PÁGINAS) */
.header {
    max-height: 72px;
    display: flex;
    align-items: center;
    background-color: white;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: block;
    max-height: 51px;
}

.nav {
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

    .nav-menu a {
        text-decoration: none;
        color: #0F4C75;
        font-weight: 600;
    }

        .nav-menu a:hover {
            color: #FF6B6B;
        }

.btn-contacto {
    background-color: #FF6B6B !important;
    color: white !important;
    padding: 14px 20px;
    border-radius: 25px !important;
    text-decoration: none;
    min-width: 190px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-contacto:hover {
        background-color: #FF6B6B !important;
        box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1);
    }

.menu-item-con-submenu {
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
}

.has-submenu {
    display: inline-block;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0px 0px 10px 0px;
    min-width: 220px;
    z-index: 999;
    margin-top: 0px;
}

.menu-item-con-submenu:hover .submenu {
    display: block;
}

/* Enlaces del submenú */
.submenu li {
    list-style: none;
}

    .submenu li a {
        display: block;
        padding: 10px 20px;
        text-decoration: none;
        color: #0F4C75;
        font-weight: 500;
        white-space: nowrap;
    }

        .submenu li a:hover {
            background-color: #F2F2F2;
        }

/* Botón hamburguesa: oculto en desktop */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    padding: 0;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

    .hamburger-btn img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* Panel móvil y overlay: base */
.mobile-menu {
    display: none;
}

.menu-overlay {
    display: none;
}

/* HEROS*/
/* Hero Home */
.hero-home {
    background: url('/img/img-home-hero.png') no-repeat center/cover;
    display: flex;
    align-items: center;
    padding-bottom: 40px;
}

.hero-home-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 80px;
    width: 100%;
}

.hero-home .hero-texto {
    max-width: 600px;
    flex: 0 0 600px;
}

.hero-home h1 {
    font-size: 48px;
    font-weight: 600;
    color: #0F4C75;
    margin-bottom: 20px;
}

.hero-home p {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #000;
}

.hero-botones {
    display: flex;
    gap: 20px;
}

.btn-prueba,
.btn-demo {
    font-size: 15px;
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-prueba {
    background-color: #FF6B6B;
    color: white;
}

.btn-demo {
    background-color: transparent;
    color: #FF6B6B;
    border: 1px solid #FF6B6B;
}

.btn-prueba:hover {
    text-decoration: none !important;
    color: white;
}

.btn-demo:hover {
    text-decoration: none !important;
    color: #FF6B6B;
}

/* Hero Planes */
.hero-planes {
    background: url('/img/img-hero-planes.png') no-repeat center/cover; /* asegúrate de tener esta imagen */
    display: flex;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background-position-y: 0;
    min-height: 700px;
}

@media (max-width: 768px) {
    .hero-planes {
        padding-top: 50px;
        padding-bottom: 50px;
        min-height: auto;
    }
}

.hero-planes-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 80px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.hero-planes-texto {
    max-width: 896px;
}

    .hero-planes-texto h1 {
        font-size: 48px;
        font-weight: 700;
        color: #0F4C75;
        margin-bottom: 20px;
    }

    .hero-planes-texto p {
        font-size: 24px;
        font-weight: 400;
        color: #000;
    }

/* Hero Contacto+Formulario */
.hero {
    background: url(/img/img-hero-contacto.png) no-repeat center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

.hero-texto {
    max-width: 600px;
    flex: 0 0 600px;
}

.hero h1 {
    font-size: 74px;
    font-weight: 600;
    margin-bottom: 20px;
}

.p-bold {
    font-size: 24px;
    font-weight: 700;
    color: #0F4C75;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

/* FORMULARIO (formulario de contacto reutilizable) */
.formulario {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 600px;
    font-family: 'Inter', sans-serif;
}

.fila {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

    .fila input {
        width: 100%;
        box-sizing: border-box;
    }

.formulario input,
.formulario textarea {
    padding: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    box-sizing: border-box;
}

.formulario textarea {
    width: 100%;
    resize: vertical;
    min-height: 170px;
    box-sizing: border-box;
}

    /* Placeholder italic */
    .formulario input::placeholder,
    .formulario textarea::placeholder {
        font-style: italic;
        font-family: 'Inter', sans-serif;
    }

.formulario label {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.formulario button {
    background-color: #FF6B6B;
    color: white;
    border: none;
    font-size: 15px;
    padding: 14px 20px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 25px;
    cursor: pointer;
    width: fit-content;
    align-self: flex-start;
}

/* Contenedor empresas */
.contenedor-empresas {
    background-color: #f2f2f2;
}

.texto-empresas {
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.logos-empresas {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 140px;
}

    .logos-empresas img {
        max-height: 80px;
        object-fit: contain;
    }

/* Contenedor beneficios */
.contenedor-beneficios {
    padding: 20px 0;
}

.beneficios-wrapper {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.beneficio {
    width: 300px;
    height: 330px;
    text-align: center;
}

    .beneficio img {
        width: 240px;
        height: 240px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .beneficio h2 {
        font-size: 20px;
        font-weight: 600;
        color: #0F4C75;
        margin-bottom: 10px;
        line-height: 20px;
    }

    .beneficio p {
        font-size: 15px;
        line-height: 20px;
        color: #000;
        margin: 0;
    }

/* Contenedor imagenes HOME */
.contenedor-imagenes {
    padding: 0px 0px 20px 0px;
}

    .contenedor-imagenes .intro h2 {
        font-size: 40px;
        font-weight: 600;
        text-align: center;
        color: #0F4C75;
        margin-bottom: 20px;
    }

    .contenedor-imagenes .intro p {
        font-size: 24px;
        text-align: center;
        margin-bottom: 10px;
    }

/* Contenedores Bloques imagen + texto */
.bloque-img-texto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
}

    .bloque-img-texto.invertido {
        flex-direction: row-reverse;
    }

    .bloque-img-texto img {
        width: 600px;
        height: 600px;
        object-fit: cover;
        border-radius: 50px;
    }

    .bloque-img-texto .texto {
        max-width: 600px;
        text-align: left;
    }

    .bloque-img-texto h3 {
        font-size: 40px;
        font-weight: 600;
        color: #0F4C75;
        margin-bottom: 20px;
        text-transform: none;
    }

    .bloque-img-texto div.titulo {
        color: #FF6B6B;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

.contenedor-imagenes .intro div.titulo {
    color: #FF6B6B;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.contenedor-imagenes .intro img {
    width: 100%;
    height: 400px;
    max-width: 100%;
    border-radius: 30px;
    object-fit: cover;
    margin-top: 20px;
}

.contenedor-imagenes .intro{
    margin-left: 80px;
    margin-right: 80px;
}

@media (max-width: 768px) {
    .contenedor-imagenes .intro {
        margin-left: 10px;
        margin-right: 10px;
    }

    .contenedor-imagenes .intro img {
        height: 200px;
    }
}

.bloque-img-texto p {
    font-size: 24px;
    margin-bottom: 20px;
}

    .bloque-img-texto .btn-prueba,
    .bloque-img-texto .btn-demo,
    .bloque-img-texto .btn-contacto {
        font-size: 15px;
        padding: 14px 20px;
        font-weight: 600;
        border-radius: 25px;
        text-decoration: none;
        display: inline-block;
        cursor: pointer;
    }

    .bloque-img-texto .btn-prueba {
        background-color: #FF6B6B;
        color: white;
    }

    .bloque-img-texto .btn-demo {
        background-color: #FF6B6B;
        color: white;
    }

    .bloque-img-texto .btn-contacto {
        background-color: #FF6B6B;
        color: white;
    }

/* Contenedor funcionamiento */
.contenedor-funcionamiento {
    background-color: #F2F2F2;
    padding-bottom: 40px;
    text-align: center;
}

    .contenedor-funcionamiento h2 {
        font-size: 40px;
        font-weight: 600;
        color: #0F4C75;
        margin-bottom: 60px;
    }

.pasos {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.paso {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 360px;
}

.numero {
    font-size: 150px;
    font-weight: 700;
    color: #FF6B6B;
    line-height: 1;
    flex-shrink: 0;
}

.paso-texto h3 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: #0F4C75;
    margin-bottom: 10px;
    text-transform: none;
}

.paso-texto p {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #000;
}

/* Contenedor de planes */
.contenedor-planes-precios {
    padding-top: 0;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: stretch;
    gap: 40px;
    align-items: stretch;
}

/* Tarjeta individual */
.card-plan {
    width: 100%;
    border: 2px solid #0F4C75;
    border-radius: 25px;
    padding: 30px 24px 20px 24px;
    box-sizing: border-box;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

    .card-plan h2 {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 0.3em;
        color: #FF6B6B;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .card-plan .precio {
        font-size: 32px;
        font-weight: 700;
        color: #0F4C75;
        margin-bottom: 20px;
    }

    .card-plan p {
        font-size: 15px;
        margin-bottom: 15px;
        color: #0F4C75;
    }

    .card-plan ul {
        list-style: none;
        padding-left: 0;
        font-size: 15px;
        margin-bottom: 20px;
    }

        .card-plan ul li {
            margin-bottom: 10px;
            color: #0F4C75;
        }

.icono-check {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    vertical-align: middle;
}

/* Botón */
.btn-plan {
    margin-top: auto;
    display: block;
    background-color: #0F4C75;
    color: white;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}

    .btn-plan:hover {
        color: white;
        text-decoration: none !important;
    }

/* Card destacada (PROFESIONAL) */
.card-plan.destacado {
    background-color: #FF6B6B;
    color: white;
    border: 2px solid #0F4C75;
}

    .card-plan.destacado h2,
    .card-plan.destacado .precio,
    .card-plan.destacado ul li,
    .card-plan.destacado p {
        color: white;
    }

    .card-plan.destacado .btn-plan {
        background-color: #0F4C75;
        color: white;
    }


/* Contenedor llamada a la acción */
.contenedor-llamada-accion {
    display: flex;
    justify-content: center;
    padding: 80px 0;
    background-color: #ffffff;
}

    .contenedor-llamada-accion p{
        color: #FFF;
    }

    .container-box {
        background: url(/img/img-llamada-accion.png) no-repeat center center;
        background-size: 100% 100%;
        border-radius: 50px;
        max-width: 1280px;
        width: 100%;
        padding: 40px 20px 40px 20px;
        text-align: center;
        color: white;
    }

    .container-box h3 {
        font-size: 40px;
        font-weight: 600;
        margin: 0 auto 20px auto;
        color: #ffffff;
        max-width: 775px;
        text-transform: none;
    }

    .container-box p {
        font-size: 24px;
        font-weight: 400;
        margin: 0 auto 40px auto;
        max-width: 775px;
    }

    .container-box strong {
        font-weight: 700;
        color: #ffffff;
    }

.btn-cta {
    display: inline-block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    background-color: #0F4C75;
    color: white;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    width: 330px;
    max-width: 100%;
}

    .btn-cta:hover {
        text-decoration: none !important;
        color: white;
    }

/* Contenedores GENERICOS (CONTACTO) */
.contenedor-general {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Sección solicitar prueba EN CONTACTO */
.contenedor-solicitar-prueba {
    text-align: center;
}

    .contenedor-solicitar-prueba h2 {
        font-size: 40px;
        font-weight: 600;
    }

    .contenedor-solicitar-prueba p {
        font-size: 24px;
    }

    .contenedor-solicitar-prueba a {
        background-color: #FF6B6B;
    }

        .contenedor-solicitar-prueba a:hover {
            background-color: #FF6B6B;
        }

/* SECCIÓN OPINIONES */
.contenedor-opiniones {
    padding: 80px 80px;
}

    .contenedor-opiniones h2, .contenedor-opiniones h3,
    .contenedor-faqs h2, .contenedor-faqs h3 {
        font-size: 40px;
        font-weight: 600;
        text-align: center;
    }

    .contenedor-opiniones p,
    .contenedor-faqs p {
        font-size: 24px;
        text-align: center;
    }

.opinion p {
    font-size: 12px;
    text-align: left;
}

.opinion strong {
    font-size: 12px;
    text-align: left;
}

.opinion em {
    font-size: 12px;
    text-align: left;
    color: #0F4C75;
}

.carrusel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carrusel-opiniones {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.opinion {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    width: 260px;
    box-shadow: 0 6px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
    text-align: left;
}

.estrellas {
    color: #E7CC00;
    font-size: 16px;
    margin-bottom: 10px;
}

.carrusel-btn {
    background: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 0 10px;
    z-index: 1;
    color: #0F4C75;
}

.izquierda {
    margin-right: 10px;
}

.derecha {
    margin-left: 10px;
}

/* Ocultar scrollbar */
.carrusel-opiniones::-webkit-scrollbar {
    display: none;
}

.carrusel-opiniones {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

/* Capa difuminada lateral */
.carrusel-fade {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to right, transparent, white);
    transition: opacity 0.3s ease;
}

/* Al hacer scroll se oculta */
.carrusel-wrapper.scrolled .carrusel-fade {
    opacity: 0;
}


/* SECCIÓN FAQ */
.faq {
    max-width: 850px;
    margin: 40px auto 0 auto;
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-item {
    border-bottom: 1px solid #FF6B6B;
    padding-bottom: 12px;
}

    .faq-item h4 {
        font-size: 20px;
        font-weight: 600;
        cursor: pointer;
        margin: 0;
    }

.faq-toggle {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #0F4C75;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .faq-toggle .icon {
        transition: transform 0.3s ease;
        transform: rotate(0deg);
        width: 24px;
        height: 24px;
    }

.faq-item.active .icon {
    transform: rotate(180deg);
}

.faq-item .respuesta {
    font-size: 15px;
    font-weight: 400;
    margin-top: 8px;
    color: #000;
    display: none;
    text-align: left;
}

.faq-item.active .respuesta {
    display: block;
}

/* FOOTER */
#footer {
    background-color: #0F4C75;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 80px 40px 80px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    max-height: 51px;
}

.footer-nav {
    display: flex;
    gap: 120px;
    justify-content: flex-start;
}

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }

    .footer-nav li {
        margin-bottom: 20px;
    }

        .footer-nav li strong {
            font-size: 16px;
            font-weight: 600;
            color: white;
            display: inline-block;
        }

    .footer-nav a {
        color: white;
        text-decoration: none;
        font-size: 12px;
        font-weight: 400;
    }

        .footer-nav a:hover {
            text-decoration: underline;
        }

/* Parte inferior del footer */
.footer-copyright {
    text-align: center;
    padding: 10px 0px 10px 0px;
    border-top: 1px solid rgba(255, 255, 255, 1);
    font-size: 12px;
    max-width: 100% !important;
}

/* ---------------------------
   ESTILOS RESPONSIVE (MOBILE)
------------------------------*/
@media (max-width: 768px) {
    /* HEADER */
    .header-content {
        padding: 20px 10px 20px 10px;
    }

    /* Mostrar botón y ocultar menú desktop */
    .nav-desktop {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }

    /* ===== Menú móvil ===== */
    .mobile-menu {
        display: block; /* existe en el DOM */
        position: fixed;
        top: 72px;
        right: -100%;
        width: 300px;
        background: #fff;
        border-radius: 15px 0px 0px 15px;
        box-shadow: 0px 6px 10px rgba(0,0,0,.1);
        padding: 20px 10px 20px 20px;
        z-index: 1001;
        transition: right .25s ease;
    }

    .menu-item-con-submenu {
        padding: 0;
    }

    .submenu {
        display: block;
        position: initial;
        background: white;
        border: none;
        box-shadow: none;
        border-radius: 0px;
        margin-top: 0px;
        padding: 0;
    }

    .mobile-menu ul {
        list-style: none;
        margin: 0;
    }

    .mobile-menu li {
        margin-bottom: 14px;
    }

    .mobile-menu a {
        color: #0F4C75;
        font-weight: 600;
        text-decoration: none;
        display: block;
        padding: 15px 6px;
    }

    /* Botón contacto a ancho completo */
    .btn-contacto.mobile {
        display: flex;
        padding-top: 14px;
        padding-bottom: 14px;
        margin-top: 20px;
    }

    /* Overlay */
    .menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.1);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
    }

    /* Estados abiertos */
    .mobile-menu.open {
        right: 0;
    }

    .menu-overlay.show {
        opacity: 1;
        pointer-events: auto;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* HERO */
    .hero-home-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 10px 40px 10px;
        gap: 20px;
    }

    .hero-home p {
        font-size: 20px;
        font-weight: 400;
    }

    .btn-prueba, .btn-demo {
        padding: 10px 18px;
    }


    /* HERO CONTACTO + FORMULARIO */
    .hero {
        padding: 40px 0;
    }

    .hero-content {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
        padding: 0 10px;
    }

    .hero-texto {
        flex: none;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero .p-bold,
    .hero p {
        font-size: 20px;
    }

    .formulario {
        width: 100%;
        max-width: 100%;
        gap: 10px;
    }

    .fila {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
    }

    .formulario button {
        width: 100%;
    }

    /* CONTENEDOR EMPRESAS */
    .contenedor-empresas .container {
        padding: 40px 10px 40px 10px;
        text-align: center;
    }

    .logos-empresas {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }

        .logos-empresas img {
            max-width: 150px;
            height: auto;
        }

    /* BENEFICIOS */
    .beneficios-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 40px 10px;
    }

    .beneficio {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

        .beneficio img {
            width: 200px;
            height: 200px;
            margin-bottom: none;
        }

    /* BLOQUE IMG + TEXTO */
    .container {
        padding: 20px 10px 40px 10px;
    }

    .contenedor-imagenes .intro p {
        font-size: 20px;
    }

    .bloque-img-texto {
        flex-direction: column;
        padding: none;
        gap: 10px;
    }

        .bloque-img-texto.invertido {
            flex-direction: column;
            padding: none;
            gap: 10px;
        }

        .bloque-img-texto img {
            width: 100%;
            height: auto;
            max-width: 100%;
            border-radius: 30px;
        }

        .bloque-img-texto .texto {
            text-align: left;
            max-width: 100%;
        }

        .bloque-img-texto h3 {
            font-size: 28px;
        }

        .bloque-img-texto p {
            font-size: 20px;
        }

    /* BLOQUE FUNCIONAMIENTO */
    .contenedor-funcionamiento .pasos {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .contenedor-funcionamiento .paso {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    /* BLOQUE OPINIONES */
    .contenedor-opiniones {
        padding: 40px 10px;
    }

        .contenedor-opiniones p {
            font-size: 20px;
        }

    .opinion p {
        font-size: 14px;
        text-align: left;
    }

    .opinion strong {
        font-size: 14px;
        text-align: left;
    }

    .opinion em {
        font-size: 14px;
        text-align: left;
        color: #0F4C75;
    }

    .carrusel-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .carrusel-btn,
    .carrusel-fade {
        display: none;
    }

    .carrusel-opiniones {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .opinion {
        scroll-snap-align: center;
        width: 80%;
        margin: 0 auto;
    }

    .carrusel-puntos {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .punto {
        width: 10px;
        height: 10px;
        background-color: #D0D0D0;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.3s;
    }

        .punto.activo {
            background-color: #0F4C75;
        }

    /* BLOQUE FAQ'S */
    .contenedor-faqs {
        padding: 40px 10px;
    }

    .faq {
        margin: 0;
        padding: 20px 10px;
    }

    .contenedor-faqs p {
        font-size: 20px;
    }

    .respuesta p {
        font-size: 14px;
        text-align: left;
    }

    /* BLOQUE PLANES */
    .contenedor-planes-precios {
        padding: 0px;
    }

    .planes-grid {
        grid-template-columns: 1fr;
    }

    /* Contenedores GENERICOS (CONTACTO) */
    .contenedor-general {
        gap: 0px;
    }

    /* Sección solicitar prueba EN CONTACTO */
    .contenedor-solicitar-prueba {
        padding: 0px 10px 40px 10px;
    }


    /* BLOQUE LLAMADA A LA ACCIÓN */
    .contenedor-llamada-accion {
        align-items: center;
        padding: 40px 10px 40px 10px;
        border-radius: 50px;
    }

    .container-box {
        background: #FF6B6B !important;
    }

        .container-box p {
            font-size: 20px;
            max-width: 100%;
        }

    .btn-cta {
        max-width: 300px;
        font-size: 15px;
    }

    /* FOOTER en movil */

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 40px;
    }

    .footer-logo {
        margin-bottom: 40px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

        .footer-nav ul {
            text-align: center;
        }

    .footer-bottom {
        padding: 10px 20px;
        font-size: 12px;
        text-align: center;
    }
}

:-webkit-any(article, aside, nav, section) h1 {
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
}

.resaltado {
    color: #0F4C75;
}

.bloque-gris {
    background-color: #f2f2f2;
}

.int-school .opiniones h3 {
    font-size: 40px;
    font-weight: 600;
    text-transform: none;
}

.int-school .opiniones > .container > .row {
    flex-direction: column;
}

    .int-school .opiniones > .container > .row .col-md-4 {
        width: 100%;
        text-align: center;
    }

    .int-school .opiniones > .container > .row .col-md-8 {
        width: 100%;
        padding-bottom: 0 !important;
    }

.header .container {
    padding: 10px;
}

.header .header-btn-collapse-nav {
    display: none;
}

.header .dropdown-toggle::after {
    display: none;
}

@media (max-width: 991px) {

    .btn-contacto {
        margin-top: 20px;
    }

    .nav {
        display: block;
    }

    .header .dropdown-menu {
        display: block;
        position: initial;
        border: none;
    }

        .header .dropdown-menu ul {
            list-style-type: none;
            padding-left: 15px;
        }

            .header .dropdown-menu ul li a {
                font-weight: 400;
            }

    .header .header-btn-collapse-nav {
        background: #FF6B6B;
        color: #FFF;
        font-size: 20px;
        padding: 5px 10px;
        display: block;
    }

    .header .header-nav-main nav.show {
        transform: translateX(0);
        transition: ease all 500ms;
    }

    .header .header-nav-main nav {
        padding: 15px;
        display: block;
        position: fixed;
        top: 70px;
        right: 0;
        left: auto;
        width: 250px;
        height: auto;
        transform: translateX(110%);
        background-color: #FFF;
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
        box-shadow: 4px 4px 20px 0px #00000040;
        transition: ease all 500ms;
    }

    .collapse:not(.show).collapsing {
        transition: none !important;
        height: auto !important;
    }
}

@media (min-width: 992px) {
    .header .header-nav-main nav {
        display: flex !important;
    }

        .header .header-nav-main nav > ul > li.dropdown.open > .dropdown-menu,
        .header .header-nav-main nav > ul > li.dropdown.accessibility-open > .dropdown-menu,
        .header .header-nav-main nav > ul > li.dropdown:hover > .dropdown-menu {
            top: auto;
            display: block;
            opacity: 1;
        }

            .header .header-nav-main nav > ul > li.dropdown:hover > .dropdown-menu ul {
            }

        .header .header-nav-main nav > ul > li.dropdown:hover > .dropdown-menu {
            background: white;
            border: 1px solid #E5E5E5;
            border-radius: 10px;
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 0px 0px 10px 0px;
            min-width: 220px;
        }

            .header .header-nav-main nav > ul > li.dropdown:hover > .dropdown-menu li a {
                display: block;
                padding: 10px 20px;
                text-decoration: none;
                color: #0F4C75;
                font-weight: 500;
                white-space: nowrap;
            }

                .header .header-nav-main nav > ul > li.dropdown:hover > .dropdown-menu li a:hover {
                    color: #FF6B6B;
                }

        .header .header-nav-main nav > ul > li > a.active,
        .header .header-nav-main nav > ul > li > a.active:hover,
        .header .header-nav-main .dropdown-item.active,
        .header .header-nav-main .dropdown-item:active {
            color: #FF6B6B;
            background-color: #FFF;
        }
}

.faq {
    max-width: 950px;
}

    .faq::before {
        content: none;
    }

    .faq h2 {
        font-weight: 600;
    }

    .faq .bloque-texto,
    .faq .bloque-texto h2 {
        margin: 0 !important;
    }

    .faq a.accordion-button {
        font-size: 20px;
        font-weight: 600;
        color: #0F4C75;
    }

    .faq .accordion-header {
        border-bottom: none;
    }

    .faq p {
        font-size: 24px;
    }

    .faq .accordion-item {
        border-bottom: 1px solid #FF6B6B;
    }

        .faq .accordion-item:first-of-type {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }

        .faq .accordion-item:last-of-type {
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }

        .faq .accordion-item p {
            font-size: 15px;
        }

    .faq a.accordion-button,
    .faq a.accordion-button.collapsed {
        color: #0F4C75;
    }

.bloque-blanco.no-te-decides {
    padding: 0;
}

@media (min-width: 1200px) {
    .container:not(.container-bs):not(.container-xl-custom):not(.container-xxl-custom):not(.header-container):not(.d-flex) {
        padding-left: 0;
        padding-right: 0;
    }
}

.bloque-home {
    background-image: url('/img/img-hero-contacto.png');
}

.form-contacto-int-school .form-control, .form-contacto-int-school textarea, .form-contacto-int-school .form-select {
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    padding: 12px;
}

.form-contacto-int-school .btn-primary,
.contenedor-solicitar-prueba .btn-primary {
    background-color: #FF6B6B;
    color: white;
    border: none;
    font-size: 15px;
    border-radius: 50px;
    padding: 8px 30px !important;
}

    .form-contacto-int-school .btn-primary:hover,
    .contenedor-solicitar-prueba .btn-primary:hover {
        background-color: #FF6B6B !important;
        box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.25);
        transform: scale(1.01);
    }

.form-contacto-int-school h2.titulo {
    font-weight: 600;
}

.bloque-contacto p,
.opiniones .subtitulo p {
    font-size: 20px;
}

.bloque-contacto.bloque-final {
    margin-bottom: 40px;
}

.bloque-inicial {
    padding-top: 0;
}

.contenedor-que-puedes h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contenedor-que-puedes p {
    margin-bottom: 10px;
}

@media (min-width: 769px) {
    .demo {
        padding: 0 200px;
    }
}

.demo .formulario {
    box-shadow: 4px 4px 50px 6px #0000001A;
    border-radius: 25px;
    width: 100%;
    padding: 20px;
}

.demo h3 {
    border-bottom: 1px solid #FF6B6B;
    color: #FF6B6B;
    text-align: center;
    font-size: 24px;
    text-transform: none;
    font-weight: 600;
}

.demo .col-lg-6 {
    padding: 0 40px;
}

.demo .logo {
    text-align: center;
}

    .demo .logo img {
        width: 153px;
    }

.demo p {
    color: #585858;
    font-weight: 400;
}

.demo div.label {
    color: #585858;
    font-weight: 600;
}

.demo div.input {
    border: 1px solid var(--Int-School-Color-Secondary-1, #E5E5E5);
    width: 100%;
    padding: 10px;
    border-radius: 4px;
}

.demo .accede {
    text-align: center;
    margin-top: 10px;
}

    .demo .accede a {
        background-color: #FF6B6B;
        color: white;
        padding: 10px 0;
        display: block;
        border-radius: 4px;
    }

.demo .copyright {
    color: #585858;
    font-weight: 700;
    font-size: 12px;
    margin-top: 20px;
    text-align: center;
}
