/* ============================================================
   DIGICRED - Landing Page CSS
   Fuente principal: Poppins
   Paleta: Azul #0040CC / #005CDB, Teal #00C8AD, Blanco #FFF
   ============================================================ */

:root {
    --blue:       #0040CC;
    --blue-mid:   #005CDB;
    --blue-light: #1565e8;
    --teal:       #00C8AD;
    --teal-dark:  #00a891;
    --white:      #ffffff;
    --dark-navy:  #001F6B;
    --text-dark:  #222222;
    --text-gray:  #9f9c9c;
    --gray-light: #f5f5f5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
hr { border: none; border-top: 1px solid rgba(255,255,255,.2); margin: 0; }
html { scroll-behavior: smooth; }
.container-fluid {padding-right: 0;}
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}
.text-teal { color: var(--teal); }
.text-blue { color: var(--blue); }
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; }
ul { list-style: none; }

/* ===================== NAVBAR ===================== */
.navbar-main {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--teal);
    height: 68px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

.nav-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img { height: 50px; width: auto; filter: brightness(0) invert(1); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background .2s;
    white-space: nowrap;
}

.nav-links a:hover { background: rgba(255,255,255,.15); }

.btn-iniciar-nav {
    background: var(--white) !important;
    color: var(--blue) !important;
    font-weight: 700 !important;
    border-radius: 25px !important;
    padding: 7px 18px !important;
    font-size: 13px !important;
}

.btn-iniciar-nav:hover {
    background: var(--blue) !important;
    color: var(--white) !important;
}

.nav-social {
    display: flex;
    gap: 8px;
    margin-left: 8px;
}

.nav-social a {
    color: var(--white);
    font-size: 18px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    transition: background .2s;
}

.nav-social a:hover { background: rgba(255,255,255,.3); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
}

/* ===================== HERO (SECCIÓN 1) ===================== */
.section-hero { overflow: hidden; }

.hero-bg {
    position: relative;
    background: var(--blue-mid);
    background-image:
        repeating-linear-gradient(
            135deg,
            rgba(255,255,255,.06) 0px,
            rgba(255,255,255,.06) 40px,
            transparent 40px,
            transparent 80px
        );
    min-height: 650px;
    display: flex;
    align-items: stretch;
}

.hero-content {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 0 0 600px;
    align-self: flex-end;
}

.hero-person {
    width:600px;
    max-width: 100%;
    margin-bottom: -4px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,.3));
}

.hero-right {
    flex: 1;
    color: var(--white);
}

.hero-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}

.hero-title strong { font-weight: 900; }

.hero-badge {
    display: inline-block;
    background:white;
    border: 2px solid rgba(255,255,255,.4);
    color: var(--blue);
    font-size: 1.8rem;
    font-weight: 400;
    padding: 2px 20px;
    border-radius: 18px; 
    margin-bottom: 20px;
}

.hero-list {
    margin-bottom: 22px;
}

.hero-list li {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: var(--teal);
    font-size: 1.2rem;
    font-weight: 900;
}

.hero-respuesta {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 10px 10px;
    border-radius: 18px;
    margin-bottom: 28px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-prestamo {
    display: inline-block;
    background: var(--white);
    color: var(--blue);
    font-weight: 800;
    font-size: .95rem;
    padding: 12px 26px;
    border-radius: 30px;
    transition: all .3s;
    white-space: nowrap;
}

.btn-prestamo:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,200,173,.4);
}

.btn-sesion-hero {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    font-weight: 700;
    font-size: .95rem;
    padding: 12px 26px;
    border-radius: 30px;
    transition: all .3s;
    white-space: nowrap;
}

.btn-sesion-hero:hover {
    background: var(--white);
    color: var(--blue);
    transform: translateY(-2px);
}

/* Sparkles decorativos */
.sparkle {
    position: absolute;
    color: rgba(255,255,255,.4);
    font-size: 1.6rem;
    pointer-events: none;
    z-index: 1;
    animation: twinkle 3s ease-in-out infinite;
}

.sparkle-1 { top: 15%; right: 8%; }
.sparkle-2 { top: 50%; right: 18%; font-size: 1rem; animation-delay: 1s; }
.sparkle-3 { bottom: 20%; left: 45%; font-size: 1.2rem; animation-delay: 2s; }

@keyframes twinkle {
    0%, 100% { opacity: .3; transform: scale(1); }
    50%       { opacity: 1;  transform: scale(1.3); }
}

/* ===================== SECCIÓN 2: MÁS FÁCIL ===================== */

.section-facil {
    background-image: url('../assets/img/img2/Fondo-2.jpg');
    background-size: cover;
    background-position: center bottom;
    min-height: 650px;
}
.facil-bg {
    position: relative;
    padding: 70px 0 60px;
}

.facil-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.facil-content { flex: 1; }

.facil-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 40px;
    text-align: center;
}

.facil-title strong { font-weight: 900; }

.facil-steps {
    display: flex;
    margin-bottom: 40px;
    justify-content: center;
}

.step-item {
    flex: 1;
    text-align: center;
    max-width: 200px;
    position: relative;
}

.step-icon-wrap {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.step-icon-wrap img { width: 100px; height: 100px; object-fit: contain; }

.step-connector {
    width: 10%;
    height: 4px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
    margin: 5px;
   align-self:center;
}

.step-title {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.step-desc {
    font-size: .82rem;
    line-height: 1.5;
}

.facil-cta {
    text-align: center;
    margin-bottom: 20px;
}

.btn-solicitud {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 40px;
    border-radius: 30px;
    transition: all .3s;
}

.btn-solicitud:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,200,173,.4);
}

.cat-disclaimer {
    font-size: .7rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
    line-height: 1.5;
    text-align: justify;
}

.facil-img-col {
    flex: 0 0 620px;
    position: relative;
}

.facil-person {
    width: 30%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,.3));
}

/* Decorative sparkles section 2 */
.facil-sparkle {
    position: absolute;
    color: var(--teal);
    pointer-events: none;
    font-size: 2rem;
    opacity: .5;
}

.facil-sp1 { top: 10%; right: 5%; font-size: 1.4rem; }
.facil-sp2 { bottom: 15%; left: 5%; font-size: 2rem; }

/* ===================== SECCIÓN 3: QUIÉNES SOMOS ===================== */
/* .section-quienes { overflow: hidden; } */

.quienes-bg{
    background-image: url('../assets/img/img3/Fondo-3.png');
    background-size: cover;
    background-position: center center;
    min-height: 650px;
    padding: 60px 0;
}
/* .quienes-bg {
    position: relative;
    background: var(--blue-mid);
    background-image:
        repeating-linear-gradient(
            135deg,
            rgba(255,255,255,.05) 0px,
            rgba(255,255,255,.05) 40px,
            transparent 40px,
            transparent 80px
        );
    padding: 80px 0;
    overflow: hidden;
} */

.quienes-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.quienes-text { flex: 1; color: var(--white); }

.quienes-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
}

.quienes-title strong { font-weight: 700; }

.logo-inline {
    height: 50px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    filter: brightness(0) invert(1);
}

.quienes-desc {
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,.9);
    margin-bottom: 16px;
    max-width: 480px;
}

.quienes-img-col {
    padding-top: 40px;
    flex: 0 0 560px;
    position: relative;
}

.quienes-photo {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

/* Decorative sparkles section 3 */
.q-sparkle {
    position: absolute;
    color: rgba(255,255,255,.3);
    pointer-events: none;
    font-size: 2rem;
}

.q-sp1 { top: 10%; right: 3%; font-size: 1.4rem; }
.q-sp2 { bottom: 15%; left: 5%; font-size: 1rem; }
.q-sp3 { top: 50%; right: 12%; font-size: 2rem; }

/* Ola decorativa derecha */
/* .quienes-bg::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 300px;
    background: rgba(0,200,173,.25);
    border-radius: 50%;
    pointer-events: none;
} */

/* ===================== SECCIÓN 4: REQUISITOS ===================== */
.section-requisitos { overflow: hidden; }

.req-bg {
    position: relative;
    background: var(--white);
    padding: 80px 0 0;
}

.req-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.req-content { flex: 1; }

.req-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--teal);
}

.req-title strong { font-weight: 900; color: var(--teal); }

.req-badge {
    display: inline-flex;
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 40px;
    border-radius: 30px;
    
}

.req-list {padding: 0 20px 0 120px }

.req-list li {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.req-check {
    color: var(--teal);
    font-size: 1.2rem;
    font-weight: 900;
}

.req-img-col {
    flex: 0 0 500px;
    position: relative;
}

.req-person {
    width: 500px;
    position: relative;
    z-index: 2;
}
.req-footer-img {
    position: absolute;
    bottom: 0px;
    left: 45%;
    width: 220px;
    transform: translateX(-50%);
    text-align: center;
}


.req-footer-logo {
    position: absolute;
    bottom: 0px;
    left: -30px;
    width: 40%;
    transform: translateX(0%);
    text-align: center;
}

/* .req-logo { height: 36px; width: auto; } */
.req-logo1 { width: auto; height: 100px; margin-bottom: 0px; } 

/* ===================== SECCIÓN 5: CALCULADORA ===================== */
.section-calc { overflow: hidden; }

.calc-bg {
    position: relative;
    background: var(--blue-mid);
    background-image:
        repeating-linear-gradient(
            135deg,
            rgba(255,255,255,.05) 0px,
            rgba(255,255,255,.05) 40px,
            transparent 40px,
            transparent 80px
        );
    padding: 50px 0 0;
}

.calc-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.calc-widget-col { flex: 1; padding: 0 50px 0 140px; }

.calc-card {
    background: var(--white);
    border-radius: 20px;
    padding: 34px 65px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.calc-header {
    margin-bottom: 30px;
}

.calc-title {
    font-size: 2.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
    background: var(--teal);
    padding: 10px 5px;
    border-radius: 30px;
}

.calc-title strong { font-weight: 700; }

.calc-field { margin-bottom: 22px; }

.calc-label {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 10px;
}

.calc-amount {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 1.5rem;
}

.range-display {
     color: var(--text-gray);
    font-weight: 500;
    font-size: 1.5rem;
}

.emoji-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.emoji-opt {
    font-size: 1.6rem;
    cursor: pointer;
    transition: all .2s;
}



.emoji-img { width: 45px; height: 45px; }

/* Range sliders */
.calc-range {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 3px;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--blue) 100%);
    outline: none;
    cursor: pointer;
    margin-bottom: 4px;
}

.calc-range.calc-range-teal {
    background: linear-gradient(165deg, var(--gray-light) 0%, var(--teal) 100%);
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--teal);
    box-shadow: 0 2px 8px rgba(0,0,0,.2); 
    cursor: pointer;
    transition: transform .2s;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 50px solid var(---blue);
}

.calc-range.calc-range-teal::-webkit-slider-thumb { background: linear-gradient(165deg, var(--teal) 0%, var(--teal) 100%); }

.calc-range::-webkit-slider-thumb:hover { transform: scale(1.15); }

.range-limits {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    color: var(--text-gray);
}

.calc-result {
    background: var(--white);
    border: 2px solid var(--blue);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: .95rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 18px;
    text-align: center;
}

.calc-result strong {
    color: var(--blue);
    font-size: 1.3rem;
    font-weight: 800;
}

.btn-calc-cta {
    display: block;
    background: var(--teal);
    color: var(--white);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 14px 10px;
    border-radius: 30px;
    text-align: center;
    transition: all .3s;
    margin-bottom: 14px;
    letter-spacing: .5px;
}

.btn-calc-cta:hover {
    background: var(--teal-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,200,173,.4);
}

.cat-disclaimer-sm {
    margin-top: 8px;
    font-size: .8rem;
    color: var(--white);
    line-height: 1.4;
    text-align: center;
    opacity: .9;
    font-weight: 500;
}

/* Imagen lado derecho sección 5 */
.calc-img-col {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.calc-dialog-bubble {
    padding: 14px 20px;
    width:50%;
    position: relative;
    margin-left: 40px;
}


.calc-person {
    width: 100%;
    max-width: 1000px;
    position: relative;
    z-index: 2;
    margin-top: -50px;
}
.symbol-amount {
    color: var(--teal);
    font-size: 2.0rem;
    font-weight: 700;
}

/* Sparkles sección 5 */
.calc-sparkle {
    position: absolute;
    color: rgba(255,255,255,.3);
    pointer-events: none;
    font-size: 2rem;
}

.cs1 { top: 12%; right: 4%; font-size: 1.4rem; }
.cs2 { bottom: 15%; left: 3%; font-size: 1rem; }

/* ===================== SECCIÓN 6: TESTIMONIOS ===================== */
.section-testimonios {
    background-image: url('../assets/img/img6/Fondo-6.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 700px;
}

.test-bg {
    background-image: url('../assets/img/img6/Elementos.png');
    background-size: 90%;
    background-position: center bottom;
    background-repeat: no-repeat;
    min-height: 650px;
    position: relative;
}

.test-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
}

.test-title strong { font-weight: 900; }

.test-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    padding: 180px  120px;
}

.test-arrow {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
     background-color: var(--white);
    border: 2px solid rgba(255,255,255,.5);
    color: var(--blue);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    z-index: 5;
    line-height: 1;
    padding-bottom: 2px;
}

.test-arrow:hover {
    background: var(--blue-mid);
    color: var(--white);
    transform: scale(1.08);
}

.test-grid {
    flex: 1;
    display:grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 16px;
    overflow: hidden;
    transition: transform .4s ease;
}

.test-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

.test-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Emojis decorativos sección 6 */
.test-emoji-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    pointer-events: none;
    opacity: .85;
   
}

.test-emoji-left img { width: 100%; }

.test-logo-bottom {
    text-align: center;
    margin-top: 36px;
}

.test-logo-bottom img {
    height: 36px;
    width: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.t-sparkle {
    position: absolute;
    color: rgba(255,255,255,.3);
    pointer-events: none;
    font-size: 1.8rem;
}

.ts1 { top: 12%; right: 5%; }
.ts2 { bottom: 18%; right: 8%; font-size: 1rem; }

/* Ola decorativa fondo sección 6 */
.test-bg::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    pointer-events: none;
}

/* ===================== SECCIÓN 7: FAQ ===================== */
/* .section-faq { overflow: hidden; } */

.faq-bg {
    background-image: url('../assets/img/img7/Fondo-7.jpg');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 750px;
    padding-bottom: 60px;
}

.faq-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--blue);
    text-align: center;
    margin-bottom: 12px;
}

.faq-title strong { font-weight: 900; }

.faq-line {
    width: 80px;
    height: 4px;
    background: var(--teal);
    border-radius: 2px;
    margin: 0 auto 40px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 160px;
}

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    text-align: left;
}

.faq-btn-dark {
    background: var(--blue);
    color: var(--white);
}

.faq-btn-dark:hover { background: var(--dark-navy); }

.faq-btn-teal {
    background: var(--teal);
    color: var(--white);
}

.faq-btn-teal:hover { background: var(--teal-dark); }

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform .3s;
    line-height: 1;
}

.faq-btn.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 28px;
}

.faq-answer.open {
    max-height: 200px;
    padding: 16px 28px;
}

.faq-answer p {
    font-size: .9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-logo-bottom {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.faq-logo-bottom img {
    height: 34px;
    width: auto;
}



/* Ola decorativa izquierda sección 7 */
.faq-wave-left {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100px;
    height: 40px;
    background: var(--teal);
    border-radius: 0 20px 20px 0;
    opacity: .3;
}

/* ===================== FOOTER ===================== */

.footer-bg {
    background: var(--blue-mid);
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-grid-extended {
    display: flex;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    align-content: stretch;
    flex-direction: row;
    justify-content: space-around;
}

.footer-col-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-isotipo {
    width: 80px;
    height: auto;
}

.footer-heading {
    font-size: .85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-col p {
    font-size: .82rem;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    margin-bottom: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
       color: var(--white);
}

.footer-links a {
    color: var(--white);
    font-size: .82rem;
    transition: color .2s;
}

.footer-links a:hover { color: var(--teal); }

.footer-links-extended {
    color: rgba(255,255,255,.7);
}

a.footer-links-extended:hover { color: var(--teal); }
.footer-blog-text {
    font-size: .8rem;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-text-extended {
    font-size: .8rem;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    max-width: 90%;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all .2s;
}

.footer-social-icon:hover {
    background: var(--teal);
    transform: translateY(-2px);
}

/* Footer bottom bar */
.footer-bottom-bar {
        background: var(--blue);
    padding: 80px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-logo { height: 80px; width: auto;  filter: brightness(0) invert(1); }

.footer-copy {
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    margin: 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .facil-img-col { flex: 0 0 200px; }
    .facil-person { width: 200px; }

    .hero-left { flex: 0 0 420px; }
    .hero-person { width: 420px; }

    .calc-widget-col { flex: 0 0 480px; padding: 0 30px 0 70px; }

    .quienes-img-col { flex: 0 0 320px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-col-logo { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 900px) {
    .hero-left { flex: 0 0 280px; }
    .hero-person { width: 280px; }
    .hero-right { padding: 50px 20px 50px 28px; }

    .facil-inner { flex-direction: column; }
    .facil-img-col { flex: none; width: 100%; display: none; }

    .quienes-inner { flex-direction: column; }
    .quienes-img-col { flex: none; width: 100%; max-width: 420px; margin: 0 auto; padding-top: 0; }

    .req-inner { flex-direction: column; }
    .req-img-col { flex: none; width: 100%; max-width: 280px; margin: 0 auto; }
    .req-person { width: 100%; }

    .calc-inner { flex-direction: column; }
    .calc-widget-col { flex: none; width: 100%; max-width: 560px; margin: 0 auto; padding: 0 20px; }
    .calc-img-col { width: 100%; align-items: center; }
    .calc-person { max-width: 280px; }

    .test-carousel-wrapper { padding: 80px 40px; }

    .faq-list { padding-top: 130px; }

    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        background: var(--blue-mid);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 12px 0;
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 24px; width: 100%; border-radius: 0; font-size: 15px; }
    .btn-iniciar-nav { margin: 8px 24px; width: calc(100% - 48px) !important; text-align: center; }
    .nav-social { display: none; }
}

@media (max-width: 640px) {
    .hero-bg { min-height: auto; }
    .hero-content { flex-direction: column; align-items: center; padding: 0; }
    .hero-left { flex: none; width: 100%; display: flex; justify-content: center; padding-top: 30px; }
    .hero-person { width: 260px; margin-bottom: 0; }
    .hero-right { padding: 24px 20px 40px; text-align: center; }
    .hero-list li { justify-content: center; }
    .hero-btns { justify-content: center; }

    .facil-steps { flex-direction: column; align-items: center; gap: 30px; }
    .step-item { max-width: 100%; width: 280px; }

    .quienes-bg { padding: 40px 0; }

    .req-list { padding: 0 16px; }

    .test-grid { grid-template-columns: 1fr; }
    .test-carousel-wrapper { padding: 40px 16px; }

    .faq-list { padding-top: 100px; padding-left: 16px; padding-right: 16px; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-col-logo { grid-column: auto; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
    .footer-bottom-bar { padding: 24px 0; }

    .calc-card { padding: 24px 20px; }
    .calc-widget-col { padding: 0 12px; }

    .faq-btn { font-size: .85rem; padding: 12px 20px; }
}
