/* RESET & VARIABLES */
:root {
    --color-navy: #0e2538;
    /* Dark Navy Blue */
    --color-gold: #C19A5B;
    /* Gold/Ochre */
    --color-cream: #F5EFEB;
    /* Light background for sections */
    --color-white: #FFFFFF;
    --color-black: #111111;
    --color-gray-text: #5A5A5A;
    --color-gray-dark: #333333;

    --font-heading: 'Libre Bodoni', serif;
    --font-body: 'Roboto', sans-serif;

    --spacing-xs: 1rem;
    /* 16px */
    --spacing-sm: 2rem;
    /* 32px */
    --spacing-md: 4rem;
    /* 64px */
    --spacing-lg: 6rem;
    /* 96px */
    --spacing-xl: 8rem;
    /* 128px */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* PLACEHOLDER UTILS */
.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
}

.large-placeholder {
    height: 400px;
    width: 100%;
}

.banner-placeholder {
    height: 50vh;
    width: 100%;
}

.logo-placeholder {
    width: 200px;
    /* Changed from min-width to allow shrinking */
    height: 100px;
    flex-shrink: 1;
}

.small-placeholder {
    min-width: 150px;
    height: 50px;
}

/* TYPOGRAPHY UTILS */
.subtitle-lines {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.subtitle-lines.line-light {
    color: var(--color-gold);
}

.btn-dark-grey {
    background-color: var(--color-gray-dark);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    margin-bottom: 40px;
    transition: background-color 0.3s ease;
}

.btn-evalua {
    background: #ff6f0c;
    color: var(--color-white) !important;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 4px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-testimonial-green {
    background-color: #394E48 !important;
    color: #F9DBDD !important;
    font-size: 21px !important;
    font-weight: 400 !important;
    padding: 8px 40px !important;
    border-radius: 12px !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.82) !important;
    margin-bottom: 30px !important;
}

.btn-testimonial-green .icon-monitor {
    width: 42px;
    height: 40px;
    min-width: 42px;
    max-width: 42px;
    filter: brightness(0) invert(1);
}

.btn-testimonial-green:hover {
    background-color: #2e403d !important;
}

.btn-evalua:hover {
    background: #e65c00;
    color: var(--color-white) !important;
}

/* 1. HERO SECTION */
.section-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background-color: var(--color-navy);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-placeholder {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right 30%;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-navy) 30%, rgba(11, 25, 44, 0.8) 55%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.placeholder-logo {
    margin-bottom: 40px;
    display: inline-block;
    max-width: 400px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 500;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 700px;
    font-family: var(--font-body);
}

/* 1B. EVALUA FORM FLOW */
.section-evalua-flow {
    background-color: var(--color-navy);
    padding: var(--spacing-md) 0;
    color: #efddde;
}

.evalua-card {
    font-family: var(--font-body);
    max-width: 980px;
    margin: 0 auto;
}

.evalua-form {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.evalua-form[hidden],
.evalua-thanks[hidden],
.section-evalua-flow[hidden] {
    display: none !important;
}

.evalua-question-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.evalua-question-label {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #8fb1ca;
}

.evalua-question-title {
    font-family: var(--font-body);
    font-size: 2.25rem;
    line-height: 1.2;
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: 0.01em;
    margin: 0;
}

.evalua-question-help {
    font-family: var(--font-body);
    font-size: 1.12rem;
    line-height: 1.5;
    color: #d6e5f1;
}

.evalua-options {
    display: grid;
    gap: 12px;
}

.evalua-options-one-col {
    grid-template-columns: 1fr;
}

.evalua-options-two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.evalua-options-three-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.evalua-option {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--color-gray-dark);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.evalua-option:hover {
    background: #f8f8f8;
    border-color: rgba(0, 0, 0, 0.18);
}

.evalua-option.is-active {
    background: #2FD8E0 !important;
    border-color: rgba(47, 216, 224, 0.9);
    color: var(--color-white);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 4px 16px rgba(47, 216, 224, 0.35);
}

.evalua-option.is-active::before {
    content: "✓";
    display: inline-block;
    margin-right: 10px;
    font-weight: 700;
    font-size: 1.1em;
}

.evalua-main-cta {
    align-self: flex-start;
    min-width: 180px;
    margin-top: 8px;
}

.evalua-main-cta:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    filter: grayscale(0.2);
}

.evalua-form-contact {
    max-width: 620px;
}

.evalua-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.evalua-field span:first-child {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #d6e5f1;
}

.evalua-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.evalua-field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.evalua-field-icon svg {
    flex-shrink: 0;
}

.evalua-field input {
    font-family: var(--font-body);
    width: 100%;
    height: 52px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    padding: 10px 14px 10px 46px;
    font-size: 1rem;
    outline: none;
}

.evalua-field input:focus {
    border-color: #84e3f0;
    box-shadow: 0 0 0 2px rgba(132, 227, 240, 0.2);
}

.evalua-field .evalua-input-wrap:focus-within .evalua-field-icon {
    color: #84e3f0;
}

.evalua-thanks {
    font-family: var(--font-body);
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 2. PLAN B SECTION */
.section-plan-b {
    padding-top: 0;
    background-color: #F8E6E5;
    /* Light pink background */
    padding-bottom: 0;
}

.plan-b-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 0;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .plan-b-header {
        padding: 80px 20px 0;
    }
}

.section-title-lines {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    font-weight: 600;
}

.section-title-lines span {
    width: 60px;
    height: 2px;
    display: block;
}

.section-title-lines span:first-child {
    background: linear-gradient(to left, var(--color-navy) 0%, transparent 100%);
}

.section-title-lines span:last-child {
    background: linear-gradient(to right, var(--color-navy) 0%, transparent 100%);
}

.plan-b-desc {
    font-size: 1.3rem;
    color: var(--color-navy);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.5;
}

.investment-text-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px 20px;
    position: relative;
    z-index: 10;
}

.line-gradient {
    height: 2px;
    background: #223852;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.investment-amount {
    font-size: 1.8rem;
    color: var(--color-navy);
    font-family: var(--font-body);
    font-weight: 700;
    padding: 15px 0;
    /* Reduced padding previously 25px */
    margin: 0;
    letter-spacing: 0.5px;
}

.plan-b-image-area {
    position: relative;
    width: 100%;
    margin-top: -60px;
    z-index: 1;
}

@media (min-width: 768px) {
    .plan-b-image-area {
        margin-top: -200px;
    }
}

.image-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #F8E6E5 0%, #F8E6E5 15%, rgba(248, 230, 229, 0.8) 45%, rgba(248, 230, 229, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

@media (min-width: 768px) {
    .image-fade-overlay {
        height: 350px;
    }
}

.extra-large-placeholder {
    height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: center 75%;
    display: block;
}

@media (min-width: 768px) {
    .extra-large-placeholder {
        height: 800px;
    }
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-icon-img {
    width: 140px;
    height: 140px;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .play-icon-img {
        width: 220px;
        height: 220px;
    }
}

.play-icon-img:hover {
    transform: scale(1.05);
}

.plan-b-bottom-bar {
    background-color: #394E4B;
    padding: 36px 4%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-b-bottom-bar .btn-light-pink {
    background-color: #F9DBDD;
    color: #0E2538;
    font-size: 21px;
    font-weight: 400;
    padding: 8px 40px;
    border-radius: 12px;
    gap: 18px;
    box-shadow: 0 0 10px rgba(249, 219, 221, 0.4);
}

.plan-b-bottom-bar .btn-light-pink .icon-monitor {
    width: 42px;
    height: 40px;
    min-width: 42px;
    max-width: 42px;
    filter: none;
}

.plan-b-bottom-bar .btn-light-pink:hover {
    background-color: #f0cdcf;
    color: #0E2538;
    box-shadow: 0 0 12px rgba(249, 219, 221, 0.5);
}

.btn-light-pink {
    background-color: #F8E6E5;
    color: var(--color-navy);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.btn-light-pink:hover {
    background-color: #e5d1d0;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.btn-light-pink .icon-monitor {
    width: 22px;
    height: 22px;
    min-width: 22px;
    max-width: 22px;
    display: inline-block;
    flex-shrink: 0;
    object-fit: contain;
}

.btn-light-pink:hover {
    background-color: #e5d1d0;
}

/* 3. PROCESS SECTION */
.section-process {
    padding: 72px 0 100px;
    background-color: #F2E2DF;
    position: relative;
}

.section-process .container {
    max-width: 1740px;
    padding: 0 38px;
}

.process-header {
    max-width: 1400px;
    margin: 0 auto 34px;
}

.section-process .section-title-lines {
    font-family: var(--font-heading);
    font-size: 54px;
    line-height: 100%;
    gap: 26px;
    margin-bottom: 28px;
    font-weight: 400;
    letter-spacing: 0;
    color: #0E2538;
}

.section-process .section-title-lines span {
    width: 64px;
    height: 2px;
    opacity: 0.9;
}



.section-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--color-navy);
    margin: 15px 0 25px;
}

.section-process .section-title {
    font-family: var(--font-body);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 100%;
    color: #0E2538;
    margin: 0 0 56px;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    color: #0E2538;
    margin: 0;
}

.process-steps-strip {
    background-color: rgba(255, 255, 255, 0.65);
    border-top: 3px solid #0E2538;
    border-bottom: 3px solid #0E2538;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 26px;
    min-height: 112px;
    padding: 28px 78px;
    margin-bottom: var(--spacing-sm);
}

.step-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 0;
    justify-content: flex-start;
    min-width: 0;
}

.step-strip-item:nth-child(1) {
    flex: 1 1 0;
}

.step-strip-item:nth-child(2) {
    flex: 1.45 1 0;
}

.step-strip-item:nth-child(3) {
    flex: 1.15 1 0;
}

.step-strip-item:nth-child(4) {
    flex: 0.85 1 0;
}

.step-square {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background-color: #0F2538;
    color: var(--color-white);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    border-radius: 0;
    border: 0.75px solid #F2E2DF;
    box-shadow: 0 0 10px rgba(196, 246, 255, 0.5);
}

.step-strip-text {
    font-family: var(--font-body);
    font-size: 1.45rem;
    font-weight: 400;
    color: #0E2538;
    text-align: left;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.process-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1360px;
    margin: 0 auto var(--spacing-sm);
    align-items: start;
}

.process-detail-item {
    text-align: center;
    padding: 24px 16px;
    background-color: transparent;
}

.detail-icon-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-detail-item p {
    font-size: 12px;
    color: #0E2538;
    line-height: 1.4;
    font-weight: 400;
}

.overlapping-logo-container {
    position: absolute;
    bottom: -90px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.circle-logo-placeholder {
    width: 180px;
    height: 180px;
    background-color: var(--color-navy);
    color: var(--color-gold);
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-family: var(--font-heading);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* 4. LUXURY HOUSE TRANSITION */
.section-luxury-house {
    position: relative;
    width: 100%;
    height: 500px;
}

.section-luxury-house .banner-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.luxury-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
    pointer-events: none;
}

.placeholder-icon {
    font-size: 12px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 10px;
}

.center-absolute {
    margin-bottom: 0;
    pointer-events: auto;
}

.testimonial-top-bar {
    background-color: var(--color-white);
    padding: 25px 0 0;
}

.btn-dark-grey .icon-monitor {
    width: 22px;
    height: 22px;
    min-width: 22px;
    max-width: 22px;
    display: inline-block;
    flex-shrink: 0;
    object-fit: contain;
}

/* 5. TESTIMONIAL */
.section-testimonial {
    padding: 10px 0 var(--spacing-lg);
    background-color: var(--color-white);
}

.testimonial-card {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-placeholder {
    height: 500px;
    width: 100%;
    background-size: 150%;
    background-position: center 22%;
    background-repeat: no-repeat;
    border: none;
}

.testimonial-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0.8) 50%, transparent);
    padding: 80px 40px 40px;
    text-align: center;
    z-index: 2;
}

.testimonial-quote {
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
}

/* 6. MIGRATORY BENEFITS */
.section-migratory-benefits {
    padding: var(--spacing-md) 0 0;
    background-color: var(--color-navy);
    color: #efddde;
    position: relative;
}

.migratory-header {
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
    color: #efddde;
}

.migratory-header .section-title-lines {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    color: #EFDDDE;
}

.migratory-header .section-title-lines span {
    background-color: transparent;
}

.migratory-header .section-title-lines span:first-child {
    background: linear-gradient(to right, transparent 0%, #5bc5f2 100%);
}

.migratory-header .section-title-lines span:last-child {
    background: linear-gradient(to left, transparent 0%, #5bc5f2 100%);
}

.migratory-subtitle {
    font-family: var(--font-body);
    font-size: 26px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 25px;
    color: #EFDDDE;
}

.migratory-separator {
    width: 100%;
    max-width: 1100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #3c7087 20%, #3c7087 80%, transparent 100%);
    margin: 10px auto 30px;
}

.migratory-desc {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 60px;
    color: #efddde;
}

.migratory-list-wrapper {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-bottom: 430px;
}

.migratory-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.migratory-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.beneficio-icon-placeholder {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.migratory-list-item p {
    font-family: var(--font-body);
    font-size: 21px;
    line-height: 1.4;
    font-weight: 400;
}

.migratory-list-item strong {
    font-weight: 600;
}

.skyline-image-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 550px;
    z-index: 1;
}

.skyline-image-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(to bottom, var(--color-navy) 0%, rgba(11, 25, 44, 0.8) 40%, transparent 100%);
    z-index: 2;
}

.skyline-placeholder {
    width: 100%;
    height: 100%;
    background-color: #2a3a4f;
    border: none;
    color: #acc1db;
}

/* 7. RESPALDO */
.section-respaldo {
    padding: var(--spacing-md) 0;
    background-color: #E6E0DE;
}

.section-respaldo .section-title-lines {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #0E2538;
}

.respaldo-desc {
    font-family: var(--font-body);
    max-width: 1190px;
    margin: 0 auto;
    font-size: 26px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    color: #0E2538;
    text-align: center;
}

.respaldo-desc-small {
    font-family: var(--font-body);
    font-size: 26px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    color: #0E2538;
    text-align: center;
    margin: 25px auto 40px;
}

.respaldo-separator {
    width: 100%;
    max-width: 1100px;
    height: 2px;
    margin: 10px auto 50px;
    background-color: #FFFFFF;
}

.logos-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

/* 8. EVALUACION PRIVADA */
.section-evaluacion {
    background-color: var(--color-navy);
    position: relative;
    overflow: hidden;
}

.evaluacion-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 55px 20px 30px;
    z-index: 3;
}

.evaluacion-header .section-title-lines {
    color: #efddde;
    margin-bottom: 0;
    font-size: 2.4rem;
    font-weight: 400;
    gap: 20px;
}

.evaluacion-header .section-title-lines span {
    background-color: transparent;
    width: 40px;
}

.evaluacion-header .section-title-lines span:first-child {
    background: linear-gradient(to left, rgba(255, 255, 255, 0.8), transparent);
}

.evaluacion-header .section-title-lines span:last-child {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), transparent);
}

.evaluacion-image-container {
    width: 100%;
    position: relative;
    background-image: url('../imagenes/evaluacion_fondo.jpeg');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    aspect-ratio: 1920 / 977;
    padding-bottom: 100px;
}

.evaluacion-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, var(--color-navy) 0%, rgba(11, 25, 44, 0.9) 50%, transparent 100%);
    z-index: 2;
}

.full-evaluacion-placeholder {
    width: 100%;
    display: none;
}

.evaluacion-action-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-navy);
    z-index: 3;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 24px 4%;
    gap: 16px;
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.evaluacion-action-box.container {
    max-width: 100%;
}

.evaluacion-box-text {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
}

.evaluacion-box-graphics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.chevron-right {
    width: 18px;
    height: 18px;
    border-top: 1.5px solid rgba(255, 255, 255, 0.7);
    border-right: 1.5px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    display: inline-block;
}

.icon-with-glow {
    position: relative;
    padding: 12px 0;
}

.icon-with-glow::before,
.icon-with-glow::after {
    content: '';
    position: absolute;
    left: -35px;
    right: -35px;
    height: 1px;
    background-color: #61dfec;
    box-shadow: 0 0 12px #61dfec, 0 0 4px #61dfec;
}

.icon-with-glow::before {
    top: 0;
}

.icon-with-glow::after {
    bottom: 0;
}

.eval-svg {
    width: 72px;
    height: 72px;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.eval-btn-wrapper {
    display: flex;
    justify-content: center;
}

.btn-box-dark {
    background-color: #394E4B;
    border: 0.75px solid #F2E2DF;
    color: var(--color-white);
    font-size: 0.95rem;
    padding: 40px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 0 10px rgba(196, 246, 255, 0.5);
}

.btn-box-dark:hover {
    background-color: #2d3f3c;
}

/* 9. FOOTER */
.footer {
    background-color: var(--color-white);
    color: var(--color-navy);
    padding: 40px 0 24px;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-main {
    margin-bottom: 24px;
    padding: 10px;
}

.footer-legales {
    text-align: center;
}

.footer-legales-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-dark);
    margin-bottom: 12px;
}

.placeholder-logo-footer {
    width: 275px;
    height: 113px;
    max-width: 275px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.footer-bottom-info {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    color: #282828;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.footer-bottom-info a,
.footer-bottom-info .footer-disclaimer {
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    color: #282828;
}

.footer-bottom-info a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-info a:hover {
    color: var(--color-gold);
}

.footer-divider {
    color: #282828;
    font-size: 12px;
    font-weight: 400;
}

.footer-disclaimer {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    color: #282828;
}

/* ============================================
   SCROLL ANIMATION SYSTEM
   ============================================ */

/* ── Base "ready" state: invisible, will-change for GPU ── */
.anim-ready {
    opacity: 0;
    will-change: transform, opacity, filter;
    transition:
        opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Fade Up ── */
[data-anim="fade-up"].anim-ready {
    transform: translateY(60px);
}

[data-anim="fade-up"].anim-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Fade Down ── */
.anim-fade-down.anim-ready,
[data-anim="fade-down"].anim-ready {
    transform: translateY(-40px);
}

.anim-fade-down.anim-visible,
[data-anim="fade-down"].anim-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Fade Up (hero variant) ── */
.anim-fade-up.anim-ready {
    transform: translateY(40px);
}

.anim-fade-up.anim-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Fade Right ── */
[data-anim="fade-right"].anim-ready {
    transform: translateX(-50px);
}

[data-anim="fade-right"].anim-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── Fade Left ── */
[data-anim="fade-left"].anim-ready {
    transform: translateX(50px);
}

[data-anim="fade-left"].anim-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── Zoom In ── */
[data-anim="zoom-in"].anim-ready {
    transform: scale(0.88);
}

[data-anim="zoom-in"].anim-visible {
    opacity: 1;
    transform: scale(1);
}

/* ── Fade Up with Scale ── */
[data-anim="fade-up-scale"].anim-ready {
    transform: translateY(50px) scale(0.92);
}

[data-anim="fade-up-scale"].anim-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ── Scale X (for separators/lines) ── */
[data-anim="scale-x"].anim-ready {
    transform: scaleX(0);
}

[data-anim="scale-x"].anim-visible {
    opacity: 1;
    transform: scaleX(1);
}

/* ── Fade In (simple opacity) ── */
[data-anim="fade-in"].anim-ready {
    transform: none;
}

[data-anim="fade-in"].anim-visible {
    opacity: 1;
}

/* ── Visible (generic) ── */
.anim-ready.anim-visible {
    opacity: 1;
}

/* ── Play icon pulse ── */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.play-icon-img.pulse {
    animation: pulse-ring 0.8s ease-in-out infinite;
}

/* ── Luxury house banner GPU transition ── */
.section-luxury-house .banner-placeholder {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
}

/* ── Hero background parallax layer ── */
.hero-bg-placeholder {
    will-change: transform;
    transition: none;
    /* parallax driven by JS */
}

/* ── Magnetic hover reset ── */
.btn-evalua,
.btn-light-pink,
.btn-dark-grey,
.btn-box-dark,
.evalua-option {
    transition: transform 0.25s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ── Logo hover lift ── */
.logo-despacho {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.logo-despacho:hover {
    transform: translateY(-6px) scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ── Tablet (≤ 992px) ── */
@media (max-width: 992px) {
    .hero-bg-placeholder {
        width: 100%;
        opacity: 0.3;
    }

    .hero-content {
        padding: 60px 20px;
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title-lines {
        font-size: 2.2rem;
        gap: 15px;
    }

    .process-steps-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px 25px;
    }

    .process-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process-title {
        font-size: 38px;
    }

    .section-process {
        padding: 64px 0 92px;
    }

    .section-process .container {
        padding: 0 28px;
    }

    .process-header {
        max-width: 1020px;
        margin-bottom: 26px;
    }

    .section-process .section-title-lines {
        font-size: 42px;
        gap: 18px;
        margin-bottom: 22px;
    }

    .section-process .section-title-lines span {
        width: 48px;
    }

    .section-process .section-title {
        font-size: 22px;
        margin: 0 0 38px;
    }

    .process-title {
        font-size: 42px;
    }

    .process-steps-strip {
        padding: 26px 28px;
    }

    .step-strip-item {
        gap: 16px;
        width: 100%;
    }

    .step-strip-item:nth-child(1),
    .step-strip-item:nth-child(2),
    .step-strip-item:nth-child(3),
    .step-strip-item:nth-child(4) {
        flex: 1 1 auto;
    }

    .step-square {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 21px;
    }

    .step-strip-text {
        font-size: 1.18rem;
    }

    .migratory-list-wrapper {
        flex-direction: column;
        padding-bottom: 400px;
    }

    .skyline-image-area {
        height: 400px;
    }

    .testimonial-quote {
        font-size: 1.8rem;
    }

    .testimonial-placeholder {
        height: 400px;
    }

    .evaluacion-action-box {
        flex-direction: row;
        gap: 15px;
        padding: 14px 20px;
        justify-content: space-evenly;
    }

    .evaluacion-header .section-title-lines {
        font-size: 1.8rem;
    }

    .extra-large-placeholder {
        height: 500px;
    }

    .evalua-question-title {
        font-size: 1.95rem;
    }

    .evalua-options-three-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Disable parallax on tablets – causes jank */
    .section-luxury-house .banner-placeholder {
        background-attachment: scroll !important;
    }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
    .section-hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .placeholder-logo {
        max-width: 280px;
    }

    .section-evalua-flow {
        padding: 48px 0;
    }

    .evalua-form {
        gap: 34px;
    }

    .evalua-question-title {
        font-size: 1.65rem;
    }

    .evalua-question-help {
        font-size: 1rem;
    }

    .evalua-options-two-col,
    .evalua-options-three-col {
        grid-template-columns: 1fr;
    }

    .evalua-main-cta {
        width: 100%;
        text-align: center;
    }

    .section-plan-b {
        padding-top: 50px;
    }

    .plan-b-header {
        padding: 0;
    }

    .investment-text-box {
        padding: 0;
    }

    .plan-b-desc {
        font-size: 1.1rem;
    }

    .plan-b-desc br,
    .migratory-list-item p br,
    .migratory-subtitle br {
        display: none;
    }

    .section-title-lines {
        font-size: 1.8rem;
        gap: 10px;
    }

    .section-title-lines span {
        width: 30px;
    }

    .investment-amount {
        font-size: 1.4rem;
        padding: 12px 0;
    }

    .plan-b-image-area {
        margin-top: -50px;
    }

    .extra-large-placeholder {
        height: 400px;
        object-position: center 30%;
    }

    .play-icon-img {
        width: 70px;
        height: 70px;
    }

    .logos-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .process-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-detail-item {
        padding: 16px 10px;
    }

    .process-title {
        font-size: 32px;
    }

    .section-process {
        padding: 56px 0 84px;
    }

    .section-process .container {
        padding: 0 18px;
    }

    .process-header {
        margin-bottom: 22px;
    }

    .section-process .section-title-lines {
        font-size: 36px;
        gap: 12px;
        margin-bottom: 18px;
        line-height: 1.02;
    }

    .section-process .section-title-lines span {
        width: 32px;
    }

    .section-process .section-title {
        font-size: 20px;
        margin: 0 0 26px;
        line-height: 1.35;
    }

    .process-title {
        font-size: 36px;
    }

    .process-steps-strip {
        padding: 18px 20px;
    }

    .step-strip-text {
        font-size: 1.08rem;
        line-height: 1.02;
    }

    .step-square {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 20px;
    }

    .overlapping-logo-container {
        bottom: -60px;
    }

    .circle-logo-placeholder {
        width: 120px;
        height: 120px;
        font-size: 10px;
        padding: 15px;
    }

    .section-luxury-house {
        height: 350px;
    }

    .section-luxury-house .banner-placeholder {
        background-attachment: scroll !important;
    }

    .testimonial-placeholder {
        height: 350px;
        background-size: cover;
        background-position: center 30%;
    }

    .testimonial-quote {
        font-size: 1.4rem;
    }

    .testimonial-text-overlay {
        padding: 50px 20px 25px;
    }

    .btn-light-pink,
    .btn-dark-grey {
        font-size: 14px;
        padding: 10px 22px;
    }

    .migratory-header {
        margin-bottom: var(--spacing-md);
    }

    .migratory-header .section-title-lines {
        font-size: 42px;
    }

    .migratory-subtitle {
        font-size: 22px;
    }

    .migratory-list-item p {
        font-size: 18px;
    }

    .section-respaldo .section-title-lines {
        font-size: 42px;
    }

    .migratory-list-wrapper {
        padding-bottom: 300px;
        gap: 25px;
    }

    .skyline-image-area {
        height: 300px;
    }

    .section-respaldo {
        padding: var(--spacing-md) 0;
    }

    .section-respaldo .section-title-lines {
        font-size: 36px;
    }

    .respaldo-desc {
        font-size: 20px;
    }

    .logos-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .logo-despacho {
        max-width: 100px;
        height: auto;
    }

    .evaluacion-header {
        position: relative;
        padding: 20px 15px 0px;
    }

    .evaluacion-header .section-title-lines {
        font-size: 1.5rem;
    }

    .evaluacion-image-container {
        aspect-ratio: auto;
        min-height: auto;
        background-image: none !important;
        padding-bottom: 0;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .full-evaluacion-placeholder {
        display: block !important;
        width: 100%;
        height: 250px;
        object-fit: cover;
        object-position: center 25%;
    }

    .evaluacion-image-container::before {
        display: none;
    }

    .evaluacion-action-box {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 15px 10px;
        border-top: none;
    }

    .evaluacion-box-text {
        font-size: 0.6rem;
        text-align: left;
        flex: 1;
    }

    .evaluacion-box-graphics {
        gap: 5px;
        flex-shrink: 0;
    }

    .chevron-right {
        width: 10px;
        height: 10px;
    }

    .eval-svg {
        width: 30px;
        height: 30px;
    }

    .icon-with-glow::before,
    .icon-with-glow::after {
        left: -8px;
        right: -8px;
    }

    .eval-btn-wrapper {
        flex-shrink: 0;
    }

    .evaluacion-action-box .btn-box-dark {
        font-size: 0.65rem;
        padding: 8px 15px;
    }

    .footer {
        padding: 32px 0 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-logo-main {
        margin-bottom: 16px;
    }

    .placeholder-logo-footer {
        width: 220px;
        height: auto;
        max-width: 220px;
    }

    .footer-bottom-info {
        flex-direction: column;
        gap: 10px;
    }

    .footer-divider {
        display: none;
    }

    /* On mobile, disable heavy parallax transforms */
    .hero-bg-placeholder {
        transform: none !important;
    }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
    .section-hero {
        min-height: 65vh;
    }

    .hero-content {
        padding: 50px 15px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.82rem;
        margin-bottom: 25px;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .placeholder-logo {
        max-width: 220px;
        margin-bottom: 25px;
    }

    .btn-evalua {
        font-size: 14px;
        padding: 10px 22px;
    }

    .evalua-question-label {
        font-size: 0.8rem;
    }

    .evalua-question-title {
        font-size: 1.35rem;
    }

    .evalua-option {
        font-size: 0.92rem;
        min-height: 48px;
        padding: 10px 12px;
    }

    .section-title-lines {
        font-size: 1.5rem;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .section-title-lines span {
        width: 20px;
    }

    .plan-b-desc {
        font-size: 0.95rem;
        padding-left: 15px;
        padding-right: 15px;
    }

    .investment-amount {
        font-size: 1.2rem;
    }

    .extra-large-placeholder {
        height: 300px;
    }

    .play-icon-img {
        width: 55px;
        height: 55px;
    }

    .process-title {
        font-size: 24px;
    }

    .section-process .container {
        padding: 0 14px;
    }

    .section-process .section-title-lines {
        font-size: 28px;
        gap: 8px;
        margin-bottom: 14px;
    }

    .section-process .section-title-lines span {
        width: 22px;
    }

    .section-process .section-title {
        font-size: 18px;
        margin: 0 0 20px;
    }

    .process-title {
        font-size: 28px;
    }

    .process-steps-strip {
        padding: 16px;
    }

    .step-strip-item {
        gap: 12px;
    }

    .step-square {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 18px;
    }

    .step-strip-text {
        font-size: 1rem;
    }

    .section-luxury-house {
        height: 250px;
    }

    .testimonial-placeholder {
        height: 280px;
    }

    .testimonial-quote {
        font-size: 1.15rem;
    }

    .testimonial-text-overlay {
        padding: 35px 15px 20px;
    }

    .migratory-list-wrapper {
        padding-bottom: 220px;
    }

    .skyline-image-area {
        height: 220px;
    }

    .migratory-header .section-title-lines {
        font-size: 28px;
    }

    .migratory-subtitle {
        font-size: 18px;
    }

    .migratory-list-item p {
        font-size: 16px;
    }

    .section-respaldo .section-title-lines {
        font-size: 28px;
    }

    .respaldo-desc {
        font-size: 18px;
    }

    .migratory-desc {
        font-size: 0.9rem;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .logo-despacho {
        max-width: 75px;
    }

    .evaluacion-image-container {
        min-height: 400px;
    }

    .evaluacion-header .section-title-lines {
        font-size: 1.25rem;
    }

    .evaluacion-box-text {
        font-size: 0.8rem;
    }

    .btn-box-dark {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .footer-bottom-info {
        font-size: 11px;
    }

    .placeholder-logo-footer {
        width: 170px;
        height: auto;
        max-width: 170px;
    }
}

/* ── Prefers reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .anim-ready {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero-bg-placeholder {
        transform: none !important;
    }

    .section-luxury-house .banner-placeholder {
        transform: none !important;
    }
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 70vh;
    height: auto;
    background-color: rgba(14, 37, 56, 0.85);
    /* Navy with opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay[hidden] {
    display: none !important;
    opacity: 0;
}

.modal-content {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    border-top: 4px solid var(--color-gold);
    animation: modalPopUp 0.4s ease-out;
}

.modal-icon {
    color: var(--color-gold);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.modal-title {
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.modal-text {
    font-family: var(--font-body);
    color: var(--color-gray-dark);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-close-btn {
    width: 100%;
    margin-top: 0;
}

@keyframes modalPopUp {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Modal de Video */
.video-thumbnail-trigger {
    cursor: pointer;
}

.video-modal-overlay {
    padding: 20px;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalPopUp 0.4s ease-out;
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-modal-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-modal-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- VARIABLES GLOBALES PARA TU PLAN B --- */
:root {
    --color-navy: #0E2538;
    --color-white: #FFFFFF;
    --color-cream: #E3DADB;
    --font-heading: 'Libre Bodoni', serif;
    --font-body: 'Roboto', sans-serif;
}

.section-plan-b {
    background-color: #EFDDDE !important;
}

.section-process {
    background-color: var(--color-cream) !important;
}

/* --- ESTILOS GENERALES Y TIPOGRAFÍAS --- */
.tuplanb-title {
    font-family: var(--font-heading);
    font-size: 54px;
    color: var(--color-navy);
    font-weight: 400;
    text-align: center;
}

.tuplanb-subtitle-regular {
    font-family: var(--font-body);
    font-size: 26px;
    color: var(--color-navy);
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tuplanb-separator {
    display: block !important;
    border: none;
    height: 1px;
    background-color: #0E2538;
    max-width: 950px;
    width: 100%;
    margin: 20px auto !important;
}

/* --- 1. HERO --- */
.tuplanb-hero {
    position: relative;
    height: 70vh !important;
    min-height: 500px !important;
    max-height: 70vh !important;
    overflow: hidden !important;
    background-color: var(--color-navy);
    display: block !important;
}

.hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: none;
    align-items: flex-start !important;
    z-index: 1;
}

.hero-slide.active {
    display: flex !important;
    align-items: flex-start !important;
    z-index: 2;
}

.tuplanb-hero .hero-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.tuplanb-hero .hero-bg-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-navy) 30%, rgba(11, 25, 44, 0.8) 55%, transparent 100%);
    z-index: 1;
}

.tuplanb-hero .hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    padding-top: 90px !important;
    padding-bottom: 0px !important;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tuplanb-hero .placeholder-logo {
    height: 60px !important;
    width: auto !important;
    max-width: none !important;
    margin-top: 0 !important;
    margin-bottom: 30px !important;
}

.tuplanb-hero .hero-title {
    font-size: 54px !important;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
    text-align: left;
    min-height: 120px !important;
}

.tuplanb-hero .hero-subtitle {
    font-family: var(--font-body);
    font-size: 28px !important;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 8px !important;
    color: #fff;
    text-align: left;
}

.tuplanb-hero .hero-desc {
    font-family: var(--font-body);
    font-size: 21px !important;
    font-weight: 400;
    margin-bottom: 20px !important;
    max-width: 480px;
    color: #fff;
    margin-top: 0 !important;
    text-align: left;
    min-height: 64px !important;
}

.tuplanb-hero .btn-evalua {
    margin-top: 10px !important;
    margin-bottom: 65px !important;
    background-color: #ff6f0c !important;
    color: #ffffff !important;
    font-size: 21px !important;
    font-weight: 900 !important;
    padding: 18px 45px !important;
    border-radius: 6px !important;
    border: 1.5px solid #ffffff !important;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-dots .dot.active {
    background-color: #ff6f0c;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 12;
    width: 28px;
    height: 64px;
    border: none;
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(2px);
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
    background-color: rgba(255, 111, 12, 0.85);
    transform: translateY(-50%) scale(1.05);
    outline: none;
}

.hero-arrow-prev {
    left: 14px;
}

.hero-arrow-next {
    right: 14px;
}

/* --- 2. FRUSTRACIÓN --- */
.plan-b-header {
    padding-top: 0px !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    max-width: 950px !important;
    margin-left: auto;
    margin-right: auto;
}

.plan-b-frustration-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-navy);
    text-align: center;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.frustration-grid {
    display: flex;
    justify-content: space-between;
    max-width: 1120px !important;
    margin: 40px auto 60px auto !important;
    gap: 20px;
}

.frustration-col {
    flex: 1;
}

.frustration-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frustration-col li {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--color-navy);
    margin-bottom: 12px;
    line-height: 1.4;
    text-align: left;
    position: relative;
    padding-left: 28px !important;
}

.frustration-col li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -9px;
    font-size: 32px !important;
    color: var(--color-navy);
    line-height: 1;
}

.plan-b-bottom-bar {
    background-color: #394E4B !important;
    padding: 35px 0 !important;
    height: 132px !important;
    min-height: 132px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.plan-b-bottom-bar p {
    color: #fff !important;
    font-family: var(--font-body) !important;
    font-size: 26px !important;
    font-weight: 300 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.video-embed-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 36px !important;
}

.video-embed-container iframe {
    width: 825px !important;
    height: 430px !important;
    max-width: 100%;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.section-plan-b {
    background-color: #EFDDDE !important;
    padding-top: 40px !important;
}

/* --- 3. COMO FUNCIONA --- */
.section-process {
    background-color: #EBE5E6 !important;
    padding-top: 70px !important;
    padding-bottom: 60px !important;
}

.process-header .tuplanb-title:first-child {
    margin-bottom: 50px !important;
}

.process-header .tuplanb-subtitle-regular {
    margin-bottom: 45px !important;
}

.process-header .tuplanb-title:nth-of-type(2) {
    margin-bottom: 45px !important;
}

.tuplanb-steps {
    background-color: transparent !important;
    border-top: 3px solid var(--color-navy) !important;
    border-bottom: 3px solid var(--color-navy) !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    padding: 17.5px 78px 21px 78px !important;
    max-width: 1331.6px !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    margin: 0 auto 30px auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.approval-rate-text {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 26px;
    color: var(--color-navy);
    text-align: center;
    margin: 30px 0 45px 0;
    width: 100%;
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}

.tuplanb-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 0px !important;
}

.step-icon {
    height: 88px !important;
    width: auto;
    margin-bottom: 44px !important;
}

.tuplanb-step-item .tuplanb-step-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.tuplanb-step-item .step-square {
    width: 36.4px !important;
    height: 36.4px !important;
    min-width: 36.4px !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    background-color: var(--color-navy) !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--color-cream) !important;
    border: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    padding: 0 0 2px 0 !important;
}

.tuplanb-step-item .step-strip-text {
    font-family: var(--font-body);
    font-size: 21px !important;
    font-weight: 400 !important;
    line-height: 1.15 !important;
    color: var(--color-navy) !important;
    text-align: left !important;
}

.tuplanb-steps .approval-rate-text {
    margin-top: 44px !important;
    margin-bottom: 0 !important;
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    font-size: 26px !important;
    color: var(--color-navy) !important;
    text-align: center !important;
}

/* --- 4. PILARES --- */
.pillars-box {
    background-color: var(--color-navy);
    color: #fff;
    border-radius: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
    max-width: 1332px;
    height: 510px;
    margin: 0 auto;
    padding: 82px 122px 60px !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pillars-top-row,
.pillars-bottom-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.pillars-bottom-row {
    margin-top: 26px !important;
    justify-content: center;
    gap: 120px;
}

.pillar-item {
    text-align: center;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pillars-bottom-row .pillar-item {
    width: 378px;
}

.pillar-item img {
    height: 74px !important;
    width: auto;
    margin-bottom: 17px !important;
    filter: brightness(0) invert(1);
}

.pillar-item h4 {
    font-family: var(--font-body) !important;
    font-size: 22.5px !important;
    font-weight: 700 !important;
    color: #0083B9 !important;
    margin-bottom: 5px !important;
    line-height: 1.2 !important;
}

.pillar-item p {
    font-size: 22.5px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    font-family: var(--font-body) !important;
    font-weight: 400 !important;
}

/* --- 5. CASA DE TRANSICION --- */
.tuplanb-house {
    margin-top: -182px;
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

.house-bg {
    background: url('../imagenesyrecursos/fondo_casa.jpg') no-repeat center center / cover !important;
    width: 100% !important;
    height: 566px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35) !important;
    position: relative;
    z-index: 2;
}

/* --- 6. TESTIMONIALES --- */
.section-testimonials {
    background-color: var(--color-cream);
    padding: 75px 0 !important;
}

.testimonials-img-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 384.6px) !important;
    column-gap: 44.5px !important;
    row-gap: 55px !important;
    justify-content: center !important;
    max-width: 1242.8px !important;
    width: 100% !important;
    margin: 0 auto !important;
    align-items: start !important;
}

.testimonio-card {
    background-color: var(--color-navy) !important;
    border-radius: 12px !important;
    padding: 65px 27.6px 33px !important;
    text-align: left !important;
    color: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: auto !important;
    width: 384.6px !important;
    margin: 0 auto !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    box-sizing: border-box !important;
}

.testimonio-text {
    font-family: var(--font-body) !important;
    font-size: 22.5px !important;
    line-height: 1.4 !important;
    margin-bottom: 55px !important;
    flex: 1 !important;
}

.testimonio-author {
    background-color: #fff !important;
    color: var(--color-navy) !important;
    border-radius: 8px !important;
    padding: 21px 28px 21px 35px !important;
    display: flex !important;
    align-items: center !important;
    gap: 28px !important;
    height: 127px !important;
    width: 329.4px !important;
    box-sizing: border-box !important;
}

.testimonio-author img {
    width: 85px !important;
    height: 85px !important;
    border-radius: 50% !important;
    margin: 0 !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
}

.author-info {
    font-family: var(--font-body) !important;
    font-size: 22.5px !important;
    line-height: 1.2 !important;
    color: var(--color-navy) !important;
}

.author-info strong {
    font-size: 22.5px !important;
    font-weight: 700 !important;
}

/* --- 7. BENEFICIOS MIGRATORIOS --- */
/* --- 7. BENEFICIOS MIGRATORIOS --- */
.section-migratory-benefits {
    background: linear-gradient(to bottom,
            var(--color-navy) 0%,
            var(--color-navy) 20%,
            rgba(14, 37, 56, 0.8) 45%,
            rgba(14, 37, 56, 0.5) 70%,
            rgba(14, 37, 56, 0.1) 100%), url('../imagenesyrecursos/fondo_beneficios.jpg') no-repeat center bottom / cover !important;
    padding: 80px 0 260px 0 !important;
    min-height: 1114px !important;
    box-sizing: border-box !important;
}

.section-migratory-benefits .tuplanb-title {
    color: #EFDDDE !important;
    font-size: 54px !important;
    margin-bottom: 50px !important;
}

.beneficios-subtitle {
    font-family: var(--font-body) !important;
    font-size: 26px !important;
    color: var(--color-cream) !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    margin-bottom: 50px !important;
}

.beneficios-desc {
    font-family: var(--font-body) !important;
    font-size: 24px !important;
    color: var(--color-cream) !important;
    text-align: center !important;
    max-width: 1000px !important;
    margin: 0 auto 50px !important;
    line-height: 1.5 !important;
}

.beneficios-grid-new {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 60px;
}

.beneficios-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.beneficio-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.beneficio-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    filter: none !important;
}

.beneficio-item p {
    color: var(--color-cream) !important;
    font-family: var(--font-body);
    font-size: 21px !important;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

/* --- 8. RESPALDO --- */
.section-respaldo {
    padding: 75px 0 !important;
    background-color: var(--color-cream) !important;
}

.section-respaldo .tuplanb-subtitle-regular {
    font-size: 28px !important;
    max-width: 1000px !important;
}

.respaldo-separator {
    width: 100%;
    max-width: 1100px;
    height: 2px;
    margin: 85px auto 85px !important;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 15%, rgba(255, 255, 255, 0.9) 85%, rgba(255, 255, 255, 0) 100%) !important;
}

.logos-grid {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    gap: 30px !important;
}

.logos-grid img {
    height: auto !important;
    max-height: 55px !important;
    max-width: 180px !important;
    object-fit: contain !important;
}

/* --- 9. EVALUACION --- */
.section-evaluacion-new {
    display: block;
    width: 100%;
}

.evaluacion-top-dark {
    background: linear-gradient(to bottom, #0e2538 0%, rgba(14, 37, 56, 0.85) 15%, rgba(14, 37, 56, 0) 45%), url('../imagenesyrecursos/evaluacion_fondo.jpeg') no-repeat center center / cover !important;
    padding-top: 40px;
    padding-bottom: 300px;
    width: 100%;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.evaluacion-title-white {
    color: #EFDDDE !important;
    margin-bottom: 0 !important;
}

.evaluacion-bottom-blue {
    background-color: #354C62 !important;
    width: 100%;
    padding: 45px 0;
    box-sizing: border-box;
    display: block;
}

.evaluacion-row {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    gap: 40px;
}

.evaluacion-text-col {
    flex: 1.5;
}

.evaluacion-text-col p {
    color: #ffffff !important;
    font-family: var(--font-body) !important;
    font-size: 28px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    margin: 0;
    text-align: left;
}

.evaluacion-icon-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent) 1;
    padding: 15px 0;
}

.chevron-right-large {
    color: #5bc5f2;
    font-size: 72px;
    font-weight: 100;
    line-height: 1;
    font-family: var(--font-body);
}

.evaluacion-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.evaluacion-icon-box img {
    height: 85px;
    width: auto;
    filter: brightness(0) invert(1);
}

.evaluacion-btn-col {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
}

.btn-evalua-orange-stacked {
    background-color: #ff6f0c !important;
    color: #F2E2DF !important;
    font-family: var(--font-body) !important;
    font-weight: 900 !important;
    font-size: 21px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1.2 !important;
    border-radius: 6px !important;
    border: 1.5px solid #ffffff !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    padding: 20px 35px !important;
    transition: background-color 0.3s ease;
}

.btn-evalua-orange-stacked:hover {
    background-color: #e65c00 !important;
}

/* --- BUTTON GLOBALS --- */
.btn-evalua {
    background-color: #ff6f0c !important;
    color: #F2E2DF !important;
    font-family: var(--font-body) !important;
    font-weight: 900 !important;
    font-size: 21px !important;
    padding: 18px 45px !important;
    border-radius: 6px !important;
    border: 1.5px solid #ffffff !important;
    text-transform: none !important;
    display: inline-block !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.btn-evalua:hover {
    background-color: #e65c00 !important;
    color: #F2E2DF !important;
}

/* --- FOOTER NEW --- */
.footer-new {
    background-color: var(--color-white) !important;
    padding: 40px 0 !important;
    border-top: 1px solid var(--color-cream) !important;
    text-align: center !important;
}

.footer-new-logo {
    width: 180px !important;
    height: auto !important;
    margin: 0 auto 20px !important;
    display: block !important;
}

.footer-new-links {
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    color: #52545D !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

.footer-new-links a {
    color: #52545D !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-new-links a:hover {
    color: #0083B9 !important;
}

.footer-new-links span {
    color: #52545D !important;
}

/* ============================================================
   CUSTOM ESTILOS TU PLAN B USA
   ============================================================ */

/* --- Botón naranja override --- */
.btn-orange {
    background: #ff6f0c !important;
    border: 1.5px solid #ffffff !important;
    color: #fff !important;
    box-shadow: none !important;
    border-radius: 6px !important;
    padding: 10px 35px !important;
    font-weight: 900 !important;
    /* Roboto Black */
    font-family: var(--font-body) !important;
    font-size: 21px !important;
}

.btn-orange:hover {
    background: #e56300 !important;
    border: 1.5px solid #ffffff !important;
}

/* --- 1. HERO --- */
.tuplanb-hero {
    height: 70vh !important;
    min-height: 500px !important;
    max-height: 70vh !important;
}

.tuplanb-hero .hero-bg-placeholder {
    background-position: right center;
}

.tuplanb-logo {
    height: 60px !important;
    width: auto !important;
    max-width: none !important;
    min-width: auto !important;
    margin-bottom: 60px !important;
    margin-top: 112px;
}

.tuplanb-hero .hero-content {
    padding-top: 0;
}

.tuplanb-hero .hero-title {
    font-size: 54px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.tuplanb-hero .hero-subtitle {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #fff;
}

.tuplanb-hero .hero-desc {
    font-family: var(--font-body);
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 0;
    max-width: 580px;
    color: #fff;
    margin-top: 10px;
    line-height: 1.5;
}

.tuplanb-hero .btn-evalua {
    margin-top: 40px;
    margin-bottom: 20px;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.hero-dots .dot.active {
    background: #fff;
}

/* --- ESTILOS GENERALES TU PLAN B --- */
.tuplanb-section-bg {
    background-color: #ECE5E5 !important;
    /* Color de fondo rosado/beige claro ajustado */
}

.tuplanb-title {
    font-size: 54px;
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-navy);
    margin: 0;
}

.tuplanb-subtitle-regular {
    font-family: var(--font-body);
    font-size: 26px;
    font-weight: 400;
    color: var(--color-navy);
    margin-top: 15px;
    margin-bottom: 25px;
}

.tuplanb-separator {
    border: none;
    border-top: 1px solid #999;
    width: 875px;
    max-width: 90%;
    margin: 15px auto;
}

.section-plan-b {
    background-color: #EFDDDE !important;
}

.section-plan-b .plan-b-header {
    padding-top: 0px;
}

.plan-b-frustration-title {
    font-family: var(--font-body);
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-navy);
    margin-top: 15px;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.frustration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 30px !important;
    max-width: 1120px !important;
    margin: 20px auto 0;
    text-align: left;
}

.frustration-grid li {
    font-size: 19px !important;
    line-height: 1.5 !important;
    color: var(--color-navy);
    margin-bottom: 14px !important;
    position: relative;
    padding-left: 28px !important;
}

.frustration-grid li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 36px !important;
    color: var(--color-navy);
    line-height: 1;
}

.video-embed-container {

    margin-top: 110px;

    margin-bottom: 36px;

}

.plan-b-bottom-bar {

    background-color: #1b3636 !important;

    padding: 35px 4% !important;

    min-height: 130px;

}

.plan-b-bottom-bar p {

    color: #fff;

    font-size: 26px;

    max-width: 1200px;

    margin: 0 auto;

    line-height: 1.6;

}



/* --- 3. COMO FUNCIONA --- */

.section-process {

    padding: 70px 0 100px !important;

    background-color: #ECE5E5 !important;

}

.section-process .process-header {

    margin-bottom: 0;

}

.section-process .section-title {

    margin: 50px 0 45px;

}

.section-process .process-title {

    margin-bottom: 45px;

}

.section-process .container {

    max-width: 1400px;

}



/* Steps con Ã­conos arriba y nÃºmero+texto abajo */

.tuplanb-steps {

    flex-direction: row;

    justify-content: space-between;

    align-items: flex-start;

    padding: 44px 50px 52px;

    gap: 20px;

    margin-top: 88px;

    margin-bottom: 30px;

}

.tuplanb-step-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    flex: 1;

    gap: 44px;

}

.tuplanb-step-icon {

    width: 80px;

    height: 80px;

    display: block;

}

.tuplanb-step-label {

    display: flex;

    align-items: flex-start;

    gap: 8px;

}

.tuplanb-step-label .step-strip-text {

    font-size: 21px;

    font-weight: 400;

    line-height: 1.3;

}

.tuplanb-step-label .step-square {

    font-size: 26px;

    font-weight: 700;

}

.approval-rate-text {

    font-family: var(--font-body);

    font-weight: 600;

    font-size: 26px;

    color: var(--color-navy);

    text-align: center;

    margin: 30px 0 30px;

}



/* Caja Pilares */

.pillars-box {

    background-color: var(--color-navy);

    color: #fff;

    border-radius: 40px;

    width: 100%;

    max-width: 1332px;

    min-height: 510px;

    margin: 0 auto;

    padding: 82px 60px 60px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    justify-content: center;

}

.pillars-top-row,

.pillars-bottom-row {

    display: flex;

    justify-content: center;

    gap: 45px;

}

.pillars-bottom-row {

    margin-top: 45px;

}

.pillar-item {

    text-align: center;

    width: 378px;

}

.pillar-item img {

    height: 60px;

    margin-bottom: 25px;

}

.pillar-item h4 {

    font-family: var(--font-body);

    font-size: 22.5px;

    font-weight: 700;

    color: #5bc5f2;

    margin-bottom: 10px;

}

.pillar-item p {

    font-size: 22.5px;

    line-height: 1.3;

    margin: 0;

    font-family: var(--font-body);

}



/* --- 4. CASA TRANSICION --- */

.tuplanb-house {

    height: 566px;

    margin-top: -182px;

}

.tuplanb-house .banner-placeholder {

    background-attachment: scroll;

}



/* --- 5. TESTIMONIALES --- */

.section-testimonials {

    padding: 75px 0;

    background-color: #E6E0DE;

}

.section-testimonials .section-title-lines {

    margin-bottom: 20px;

}

.testimonials-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    margin-bottom: 85px;

}

.testimonio-card {

    background-color: var(--color-navy);

    color: #fff;

    border-radius: 20px;

    padding: 30px 22px 22px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-height: 350px;

    text-align: left;

}

.testimonio-text {

    font-size: 22.5px;

    line-height: 1.5;

    flex-grow: 1;

    font-family: var(--font-body);

    font-weight: 400;

}

.testimonio-author {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 18px;

    background-color: #fff;

    color: #000;

    padding: 10px 14px;

    border-radius: 12px;

}

.testimonio-author img {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    object-fit: cover;

    flex-shrink: 0;

}

.author-info {

    font-size: 22.5px;

    font-family: var(--font-body);

    line-height: 1.3;

    font-weight: 400;

}

.author-info strong {

    font-size: 22.5px;

    font-weight: 700;

}



/* --- 6. BENEFICIOS MIGRATORIOS --- */

/* Usa los estilos heredados de capitalbridge (section-migratory-benefits) sin cambios */



/* --- 7. RESPALDO --- */

.section-respaldo {

    padding: 75px 0 85px !important;

}

.section-respaldo .respaldo-desc {

    margin-bottom: 85px;

}

.section-respaldo .respaldo-separator {

    margin-bottom: 85px;

}



/* --- 8. EVALUACION PRIVADA --- */

.section-evaluacion .evaluacion-image-container {

    background-image: none;

    aspect-ratio: auto;

    padding-bottom: 0;

}

.section-evaluacion .full-evaluacion-placeholder {

    width: 100%;

    display: block;

}



/* ============================================================

   RESPONSIVE TU PLAN B USA

   ============================================================ */

@media (max-width: 991px) {
    /* --- 1. HERO --- */
    .tuplanb-hero {
        height: 520px !important;
        min-height: 520px !important;
        max-height: 520px !important;
    }
    .tuplanb-hero .hero-content {
        padding-top: 20px !important;
    }
    .tuplanb-hero .hero-bg-placeholder {
        opacity: 1 !important;
        background-position: center center !important;
    }
    .tuplanb-logo {
        height: 45px !important;
        margin-top: 25px !important;
        margin-bottom: 25px !important;
    }
    .tuplanb-hero .hero-title {
        font-size: 32px !important;
        min-height: auto !important;
        margin-bottom: 12px !important;
    }
    .tuplanb-hero .hero-subtitle {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    .tuplanb-hero .hero-desc {
        font-size: 16px !important;
        min-height: auto !important;
        margin-bottom: 20px !important;
        max-width: 100% !important;
    }
    .tuplanb-hero .btn-evalua {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
        font-size: 18px !important;
        padding: 12px 30px !important;
    }
    .tuplanb-hero .hero-bg-placeholder::before {
        background: linear-gradient(to bottom, rgba(14, 37, 56, 0.62) 0%, rgba(14, 37, 56, 0.35) 100%) !important;
    }
    .hero-arrow {
        width: 24px;
        height: 54px;
        font-size: 24px;
    }
    .hero-arrow-prev {
        left: 10px;
    }
    .hero-arrow-next {
        right: 10px;
    }
    /* Hide br tags inside hero texts and evaluation to let them wrap naturally */
    .hero-title br,
    .hero-desc br,
    .plan-b-bottom-bar p br,
    .evaluacion-text-col p br {
        display: none !important;
    }

    /* --- 2. CONSTRUYE HOY TU PLAN B --- */
    .tuplanb-title {
        font-size: 36px !important;
    }
    .tuplanb-subtitle-regular {
        font-size: 20px !important;
        padding: 0 15px !important;
    }
    .tuplanb-separator {
        max-width: 90% !important;
        margin: 15px auto !important;
    }
    .plan-b-frustration-title {
        font-size: 20px !important;
        padding: 0 15px !important;
    }
    .frustration-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        text-align: left !important;
        padding: 0 20px !important;
    }
    .frustration-grid li {
        font-size: 16px !important;
        padding-left: 20px !important;
        margin-bottom: 10px !important;
    }
    .frustration-grid li::before {
        font-size: 28px !important;
        top: -6px !important;
    }
    .video-embed-container {
        margin-top: 30px !important;
        margin-bottom: 25px !important;
        padding: 0 15px !important;
    }
    .video-embed-container iframe {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9 !important;
    }
    .plan-b-bottom-bar {
        padding: 25px 20px !important;
        min-height: auto !important;
    }
    .plan-b-bottom-bar p {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }

    /* --- 3. COMO FUNCIONA --- */
    .section-process {
        padding: 50px 0 !important;
    }
    .tuplanb-steps {
        padding: 20px 15px !important;
        margin-top: 40px !important;
        margin-bottom: 20px !important;
    }
    .steps-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 35px 20px !important;
        align-items: start !important;
    }
    .tuplanb-step-item {
        width: 100% !important;
        gap: 0 !important;
    }
    .step-icon {
        height: 70px !important;
        margin-bottom: 15px !important;
    }
    .tuplanb-step-item .tuplanb-step-label {
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
    }
    .tuplanb-step-item .step-square {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        font-size: 20px !important;
    }
    .tuplanb-step-item .step-strip-text {
        font-size: 16px !important;
    }
    .approval-rate-text,
    .tuplanb-steps .approval-rate-text {
        font-size: 18px !important;
        margin: 25px 0 !important;
        padding: 0 15px !important;
    }

    /* --- 4. PILARES --- */
    .pillars-box {
        padding: 35px 20px !important;
        border-radius: 20px !important;
        height: auto !important;
        min-height: auto !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 35px 20px !important;
        justify-items: center !important;
        width: 92% !important;
        margin: 0 auto !important;
    }
    .pillars-top-row,
    .pillars-bottom-row {
        display: contents !important;
    }
    .pillar-item,
    .pillars-bottom-row .pillar-item {
        width: 100% !important;
        max-width: 320px !important;
    }
    .pillars-bottom-row .pillar-item:last-child {
        grid-column: span 2 !important;
        justify-self: center !important;
    }
    .pillar-item img {
        height: 55px !important;
        margin-bottom: 12px !important;
    }
    .pillar-item h4 {
        font-size: 18px !important;
        margin-bottom: 5px !important;
    }
    .pillar-item p {
        font-size: 16px !important;
    }

    /* --- 5. CASA TRANSICION --- */
    .tuplanb-house {
        margin-top: -110px !important;
        height: auto !important;
    }
    .house-bg {
        height: 280px !important;
    }

    /* --- 6. TESTIMONIALES --- */
    .section-testimonials {
        padding: 50px 0 !important;
    }
    .testimonials-img-grid {
        grid-template-columns: 1fr !important;
        row-gap: 35px !important;
        max-width: 480px !important;
        width: 90% !important;
        margin: 0 auto !important;
    }
    .testimonio-card {
        width: 100% !important;
        padding: 35px 20px 25px !important;
        min-height: auto !important;
    }
    .testimonio-text {
        font-size: 16px !important;
        margin-bottom: 20px !important;
    }
    .testimonio-author {
        width: 100% !important;
        height: auto !important;
        padding: 15px 20px !important;
        gap: 15px !important;
        margin-top: 0 !important;
    }
    .testimonio-author img {
        width: 60px !important;
        height: 60px !important;
    }
    .author-info,
    .author-info strong {
        font-size: 15px !important;
    }
    .section-testimonials .btn-orange {
        margin-top: 30px !important;
    }

    /* --- 7. BENEFICIOS MIGRATORIOS --- */
    .section-migratory-benefits {
        padding: 50px 0 !important;
        min-height: auto !important;
    }
    .section-migratory-benefits .tuplanb-title {
        font-size: 28px !important;
        margin-bottom: 25px !important;
    }
    .beneficios-subtitle {
        font-size: 18px !important;
        margin-bottom: 25px !important;
        padding: 0 15px !important;
    }
    .beneficios-desc {
        font-size: 16px !important;
        padding: 0 15px !important;
        margin-bottom: 30px !important;
    }
    .beneficios-grid-new {
        flex-direction: column !important;
        gap: 25px !important;
        padding: 0 20px !important;
    }
    .beneficios-col {
        gap: 20px !important;
    }
    .beneficio-item {
        gap: 15px !important;
    }
    .beneficio-item img {
        width: 32px !important;
        height: 32px !important;
    }
    .beneficio-item p {
        font-size: 16px !important;
    }

    /* --- 8. RESPALDO --- */
    .section-respaldo {
        padding: 50px 0 !important;
    }
    .section-respaldo .tuplanb-subtitle-regular {
        font-size: 20px !important;
    }
    .respaldo-separator {
        margin: 40px auto !important;
    }
    .logos-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 25px 35px !important;
        padding: 0 20px !important;
    }
    .logos-grid img {
        max-height: 40px !important;
        max-width: 130px !important;
    }

    /* --- 9. EVALUACION PRIVADA --- */
    .evaluacion-top-dark {
        padding-top: 30px !important;
        padding-bottom: 240px !important;
        min-height: auto !important;
        background-position: center top !important;
    }
    .evaluacion-title-white {
        font-size: 24px !important;
        padding: 0 15px !important;
    }
    .evaluacion-bottom-blue {
        padding: 40px 20px !important;
    }
    .evaluacion-row {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }
    .evaluacion-text-col p {
        font-size: 18px !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }
    .evaluacion-icon-col {
        padding: 10px 0 !important;
        border-left: none !important;
        border-right: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-image: none !important;
        width: 100% !important;
    }
    .evaluacion-icon-box img {
        height: 60px !important;
    }
    .evaluacion-btn-col {
        justify-content: center !important;
        width: 100% !important;
    }
    .btn-evalua-orange-stacked {
        font-size: 18px !important;
        padding: 15px 30px !important;
        width: 100% !important;
        max-width: 320px !important;
    }
}

@media (max-width: 767px) {
    /* --- 1. HERO --- */
    .tuplanb-hero {
        height: 480px !important;
        min-height: 480px !important;
        max-height: 480px !important;
    }
    .tuplanb-hero .hero-bg-placeholder {
        background-position: center bottom !important;
    }
    .tuplanb-logo {
        height: 38px !important;
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }
    .tuplanb-hero .hero-title {
        font-size: 26px !important;
        margin-bottom: 10px !important;
    }
    .tuplanb-hero .hero-subtitle {
        font-size: 15px !important;
        margin-bottom: 6px !important;
    }
    .tuplanb-hero .hero-desc {
        font-size: 15px !important;
        margin-bottom: 15px !important;
    }
    .tuplanb-hero .btn-evalua {
        font-size: 16px !important;
        padding: 10px 24px !important;
    }
    .hero-arrow {
        width: 22px;
        height: 48px;
        font-size: 22px;
    }
    .hero-arrow-prev {
        left: 6px;
    }
    .hero-arrow-next {
        right: 6px;
    }

    /* --- 2. CONSTRUYE HOY TU PLAN B --- */
    .tuplanb-title {
        font-size: 28px !important;
    }
    .tuplanb-subtitle-regular {
        font-size: 17px !important;
    }
    .plan-b-frustration-title {
        font-size: 17px !important;
    }
    .frustration-grid li {
        font-size: 15px !important;
    }
    .plan-b-bottom-bar p {
        font-size: 16px !important;
    }

    /* --- 3. COMO FUNCIONA --- */
    .approval-rate-text,
    .tuplanb-steps .approval-rate-text {
        font-size: 16px !important;
    }
    .steps-grid {
        gap: 25px 10px !important;
    }
    .step-icon {
        height: 55px !important;
        margin-bottom: 10px !important;
    }
    .tuplanb-step-item .tuplanb-step-label {
        gap: 6px !important;
    }
    .tuplanb-step-item .step-square {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        font-size: 14px !important;
        border-radius: 3px !important;
        padding: 0 0 1px 0 !important;
    }
    .tuplanb-step-item .step-strip-text {
        font-size: 12px !important;
        line-height: 1.15 !important;
    }

    /* --- 4. PILARES --- */
    .pillars-box {
        padding: 30px 10px !important;
        gap: 25px 10px !important;
        width: 92% !important;
        margin: 0 auto !important;
    }
    .pillar-item img {
        height: 48px !important;
        margin-bottom: 8px !important;
    }
    .pillar-item h4 {
        font-size: 15px !important;
        margin-bottom: 4px !important;
    }
    .pillar-item p {
        font-size: 13px !important;
        line-height: 1.25 !important;
    }

    /* --- 5. CASA TRANSICION --- */
    .tuplanb-house {
        margin-top: -90px !important;
        height: auto !important;
    }
    .house-bg {
        height: 220px !important;
    }

    /* --- 6. TESTIMONIALES --- */
    .testimonio-text {
        font-size: 15px !important;
    }
    .author-info,
    .author-info strong {
        font-size: 14px !important;
    }

    /* --- 7. BENEFICIOS MIGRATORIOS --- */
    .section-migratory-benefits .tuplanb-title {
        font-size: 24px !important;
    }
    .beneficios-subtitle {
        font-size: 16px !important;
    }
    .beneficios-desc {
        font-size: 15px !important;
    }
    .beneficio-item p {
        font-size: 15px !important;
    }

    /* --- 8. RESPALDO --- */
    .section-respaldo .tuplanb-subtitle-regular {
        font-size: 17px !important;
    }

    /* --- 9. EVALUACION PRIVADA --- */
    .evaluacion-top-dark {
        padding-top: 20px !important;
        padding-bottom: 180px !important;
        background-position: center top !important;
    }
    .evaluacion-title-white {
        font-size: 19px !important;
        padding: 0 10px !important;
    }
    .evaluacion-text-col p {
        font-size: 16px !important;
    }

    /* --- FOOTER --- */
    .footer-new-links {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .footer-new-links span:not(:last-child) {
        display: none !important;
    }
}

.privacy-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    color: #111111;
    line-height: 1.6;
}

.privacy-container h1 {
    font-family: 'Libre Bodoni', serif;
    color: #0e2538;
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-align: center;
}

.privacy-container h2 {
    font-family: 'Libre Bodoni', serif;
    color: #0e2538;
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.privacy-container p {
    margin-bottom: 15px;
}

.privacy-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-container li {
    margin-bottom: 10px;
}

.privacy-header {
    background-color: #0e2538;
    padding: 20px;
    text-align: center;
}

.privacy-header img {
    max-height: 60px;
    filter: brightness(0) invert(1);
}

.privacy-back {
    display: inline-block;
    margin-bottom: 20px;
    color: #C19A5B;
    text-decoration: none;
    font-weight: bold;
}

.privacy-back:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .privacy-container {
        margin: 30px auto !important;
        padding: 15px !important;
    }
    .privacy-container h1 {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }
    .privacy-container h2 {
        font-size: 1.4rem !important;
        margin-top: 25px !important;
    }
}
