/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    padding-top: 80px; /* Espacio para header fixed */
}

/* ================= HEADER ================= */

.header {
    width: 100%;
    height: 80px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 45px;
}

/* NAV DESKTOP */
.nav {
    z-index: 999;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.nav a:hover {
    color: #00A859;
}


/* Ocultar "Empleados" del menú en desktop */
.menu-empleados {
    display: none;
}

/* Mostrar "Empleados" en el menú mobile */
@media (max-width: 768px) {
    .menu-empleados {
        display: block !important;
    }
}


/* BOTÓN CTA */
.btn-cta {
    background: #00A859;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.btn-cta:hover {
    background: #008f4a;
}

/* ICONO MENU MOBILE */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* BOTÓN EMPLEADOS */
.btn-empleados {
    background: #333;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
    margin-right: 10px;
}

.btn-empleados:hover {
    background: #555;
}

/* Contenedor de botones */
.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}


/* ================= HERO ================= */

.hero {
    padding: 60px 20px;
    background: #f5f7f9;
    min-height: 500px;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* CONTENEDOR DE IMÁGENES */
.hero-image {
    flex: 1;
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 16px;
    background: #e5e7eb;
}

/* TODAS LAS IMÁGENES APILADAS Y OCULTAS */
.hero-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    left: 0;
    top: 0;
    opacity: 0; /* Todas invisibles por defecto */
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

/* SOLO LA IMAGEN CON CLASE ACTIVE SE VE */
.hero-image img.active {
    opacity: 1;
    z-index: 1;
}

/* CONTENIDO DE TEXTO */
.hero-content {
    flex: 1;
}

.hero-logo {
    max-width: 220px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 34px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-benefits {
    margin-bottom: 25px;
    padding-left: 18px;
}

.hero-benefits li {
    margin-bottom: 8px;
}

.hero-btn {
    display: inline-block;
}


/* =========================
   BENEFICIOS
========================= */

.benefits {
    background-color: #0A3D91;
    padding: 60px 20px;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    color: #ffffff;
}

.benefit-item img {
    width: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.benefit-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

/* =========================
   SECCION QUE ES CREDILIBRANZA
========================= */

.about {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0A3D91;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333333;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333333;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

/* =========================
   ENTIDADES ALIADAS
========================= */

.allies {
    background-color: #F5F7FA;
    padding: 60px 20px;
}

.allies-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.allies-container h3 {
    font-size: 24px;
    margin-bottom: 40px;
    color: #0A3D91;
    font-weight: 700;
}



.allies-divider {
    height: 1px;
    background: #e1e4e8;
    margin: 50px auto;
    max-width: 90%;
}

.secretarias-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.sec-item {
    background: #ffffff;
    border: 1px solid #d1d9e6;
    color: #0A3D91;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
    cursor: default;
}

.sec-item:hover {
    background: #0A3D91;
    color: #ffffff;
    border-color: #0A3D91;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(10, 61, 145, 0.2);
}

.nota-allies {
    margin-top: 40px;
    font-size: 13px;
    color: #8898aa;
    font-style: italic;
}


/* =========================
   LLAMADA A LA ACCION
========================= */

.cta {
    background: linear-gradient(135deg, #0A3D91, #0D4EB3);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta p:not(.aviso-datos) {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #25D366;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* =========================
   PARA QUIEN ES EL CREDITO
========================= */

.audience {
    padding: 80px 20px;
    background-color: #ffffff;
}

.audience-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.audience-container h2 {
    font-size: 32px;
    color: #0A3D91;
    margin-bottom: 50px;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.audience-card {
    background-color: #F5F7FA;
    padding: 35px 25px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.audience-card img {
    width: 50px;
    margin-bottom: 20px;
}

.audience-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0A3D91;
}

.audience-card p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #333333;
}

.audience-card a {
    font-size: 14px;
    color: #0A3D91;
    font-weight: 600;
    text-decoration: none;
}

/* =========================
   COMO FUNCIONA
========================= */

.how-it-works {
    padding: 90px 20px;
    background-color: #F5F7FA;
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.how-left h2 {
    font-size: 32px;
    color: #0A3D91;
    margin-bottom: 40px;
}

.how-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: #0A3D91;
    color: #ffffff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    line-height: 45px;
    flex-shrink: 0;
}

.step-text {
    margin-left: 20px;
}

.step-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.step-text p {
    font-size: 14px;
    color: #333333;
}

.how-right img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* =========================
   REQUISITOS
========================= */

.requisitos {
    padding: 80px 20px;
    background: #f7f9fc;
    text-align: center;
}

.requisitos h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #0b3c6f;
}

.lista-requisitos {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.item-requisito {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 20px;
    color: #0b3c6f;
    padding: 12px 0;
}

.item-requisito img {
    width: 28px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(16%) sepia(78%) saturate(2250%) hue-rotate(197deg) brightness(95%) contrast(101%);
}

.lista-requisitos .nota {
    font-size: 14px;
    color: #0b3c6f;
    margin-top: 10px;
}

.cta-intermedio {
    background: #0b3c6f;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.cta-intermedio h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.cta-intermedio p:not(.aviso-datos) {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

/* =========================
   FAQ
========================= */

.faq {
    padding: 80px 5%;
    background: #f8fafc;
}

.faq h2 {
    text-align: center;
    color: #0b3c6f;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #dbeafe;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #0b3c6f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    padding-bottom: 18px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* =========================
   TESTIMONIOS
========================= */

.testimonios {
    padding: 80px 5%;
    background: #0b3c6f;
    text-align: center;
}

.testimonios h2 {
    color: #ffffff;
    margin-bottom: 40px;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonio-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.comentario {
    font-size: 16px;
    margin-bottom: 16px;
}

.autor {
    font-weight: 600;
    color: #0b3c6f;
}

/* =========================
   FORMULARIO
========================= */

.formulario {
    padding: 80px 5%;
    background: #ffffff;
    text-align: center;
}

.formulario h2 {
    color: #0b3c6f;
    margin-bottom: 10px;
}

.formulario p {
    margin-bottom: 30px;
    color: #475569;
}

.formulario form {
    max-width: 520px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.formulario input,
.formulario select {
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    font-size: 15px;
}

.formulario select {
    background: #fff;
}

.check-terminos {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-align: left;
}

.check-terminos a {
    color: #0a3cff;
    text-decoration: underline;
}

.formulario button {
    margin-top: 10px;
    background: #25d366;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.formulario button:hover {
    background: #1fab54;
}

/* =====================
   PQRS
===================== */

.pqrs-section {
    max-width: 850px;
    margin: 80px auto;
    padding: 50px 40px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contenedor-formulario-pqrs {
    padding: 20px 0;
    background: transparent;
}

.titulo-formulario {
    color: #1e3a8a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-pqrs {
    padding: 12px 40px;
    background: #1e3a8a;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-pqrs:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.contenedor-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.label-pqrs {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.input-pqrs,
.select-pqrs {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.input-pqrs:focus,
.select-pqrs:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.textarea-pqrs {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.textarea-pqrs:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.input-file {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-file:hover {
    border-color: #1e3a8a;
    background: #eff6ff;
}

.btnenviar {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btnenviar:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: #1e3a8a;
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 20px 25px;
}

.modal-title {
    font-weight: 700;
    font-size: 1.3rem;
}

.modal-body {
    padding: 30px 25px;
}

.modal-footer {
    border-top: 1px solid #e5e7eb;
    padding: 15px 25px;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #0b3c6f;
    color: #ffffff;
    padding: 60px 5% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logos {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logos img {
    height: 40px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.footer h4 {
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    opacity: 0.9;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.footer-social img {
    width: 24px;
    height: 24px;
}

.footer-copy {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    opacity: 0.8;
}

.footer-social img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(100%);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-image {
        width: 100%;
        height: 260px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-container {
        grid-template-columns: 1fr;
    }

  .how-right {
        order: -1;
    }

    /* === PEGA ESTO AQUÍ === */
    .about-container {
        grid-template-columns: 1fr; /* Una columna */
        display: flex; /* Usamos flex para reordenar */
        flex-direction: column;
    }

    .about-image {
        order: -1; /* Sube la imagen arriba */
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }
    
    .about-image img {
        max-width: 80%; /* Ajusta el tamaño para que no se vea gigante */
    }
    /* ====================== */

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logos {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        display: grid;
        grid-template-columns: 50px 1fr 80px;
        grid-template-areas: "menu cta logo";
        align-items: center;
        padding: 12px 20px;
        gap: 10px;
    }

    .menu-toggle {
        display: block;
        grid-area: menu;
        font-size: 28px;
        color: #333;
        cursor: pointer;
    }

    /* OCULTAR SOLO BOTÓN EMPLEADOS EN MOBILE */
    .btn-empleados {
        display: none !important;
    }

    /* MANTENER BOTÓN CTA VISIBLE */
    .header-buttons {
        grid-area: cta;
        justify-self: center;
    }

    .btn-cta {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        background: #00b388;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        box-shadow: 0 3px 8px rgba(0,0,0,0.12);
        white-space: nowrap;
    }

    .btn-cta:active {
        transform: scale(0.97);
    }

    .logo {
        grid-area: logo;
        justify-self: end;
    }

    .logo img {
        height: 38px;
    }

    /* MENÚ MOBILE - CORREGIDO */
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        display: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 998;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        display: block !important;
        max-height: 300px;
        overflow-y: auto;
    }

    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero-logo {
        max-width: 180px;
        margin: 0 auto 20px;
        display: block;
    }
}
    /* ... resto del responsive */


    .allies-logos {
        gap: 15px;
    }

    .allies-logos img {
        max-height: 60px;
        max-width: 140px;
        margin: 5px;
    }

    .testimonios-grid {
        grid-template-columns: 1fr;
    }

    .contenedor-formulario-pqrs {
        padding: 25px 15px;
    }

    .titulo-formulario {
        font-size: 1.6rem;
    }

    .btn-pqrs {
        padding: 10px 30px;
        font-size: 0.9rem;
    }

    .contenedor-form {
        padding: 20px;
    }

    .input-pqrs,
    .select-pqrs,
    .textarea-pqrs {
        font-size: 0.95rem;
        padding: 10px 12px;
    }

    .btnenviar {
        padding: 12px 30px;
        font-size: 1rem;
    }


@media (max-width: 600px) {
    .secretarias-grid {
        gap: 8px;
    }

    .sec-item {
        font-size: 13px;
        padding: 6px 12px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .cta p {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .benefits-container {
        grid-template-columns: 1fr;
    }

    .audience-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .titulo-formulario {
        font-size: 1.4rem;
    }

    .button-container {
        flex-direction: column;
        gap: 10px;
    }

    .btn-pqrs {
        width: 100%;
    }
}



/* ============================================== */
/*    PARCHE FINAL PARA LOGOS - PEGAR AL FINAL    */
/* ============================================== */

.allies-logos {
    gap: 40px !important;
    align-items: center !important;
}

.allies-logos img {
    /* Forzamos dimensiones mínimas y fijas */
    height: 110px !important;       /* Altura fija */
    min-width: 150px !important;    /* Ancho mínimo */
    width: auto !important;         
    
    /* Quitamos restricciones */
    max-width: none !important;
    max-height: none !important;
    
    /* Aseguramos que se vea la imagen completa */
    object-fit: contain !important; 
    margin: 15px !important;
}

/* Mantenemos el tamaño pequeño SOLO en celulares */
@media (max-width: 768px) {
    .allies-logos img {
        height: auto !important;
        max-height: 70px !important; /* Vuelve a ser pequeño en móvil */
        min-width: auto !important;
        max-width: 140px !important;
    }
}


.allies {
    height: auto !important;
    overflow: visible !important;
}


/* =========================
   AVISO TRATAMIENTO DE DATOS
========================= */

.cta .aviso-datos,
.cta-intermedio .aviso-datos {
    font-size: 13px;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 0; /* Evita heredar margin-bottom grande */
    opacity: 0.85;
}

.cta .aviso-datos a,
.cta-intermedio .aviso-datos a {
    color: inherit;
    text-decoration: underline;
}



.mensaje-exito {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}