/* 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: linear-gradient(180deg, #425a56 0%, #394E4B 100%);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 400;
    padding: 12px 30px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 -2px 12px rgba(132, 227, 240, 0.22),
        0 8px 18px rgba(0, 0, 0, 0.18);
}

.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: linear-gradient(180deg, #496460 0%, #2F413E 100%);
    border-color: rgba(255, 255, 255, 0.95);
    color: var(--color-white);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 -2px 14px rgba(132, 227, 240, 0.28),
        0 10px 22px rgba(0, 0, 0, 0.2);
}

/* 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: 28px 4%;
}

.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: 0.98;
    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%, #93EFFF 20%, #93EFFF 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-desc br,
    .respaldo-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.9rem;
        margin-bottom: 25px;
    }

    .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;
    }

    .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;
    height: 100vh;
    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%;
}

