:root {
    --color-primary-red: #EB001B;
    --color-primary-orange: #00a1fc;
    --color-mc-orange: #00a1fc;
    --color-mc-orange-dark: #0082c9;
    --color-mc-yellow: #F79E1B;
    --color-black: #1a1a1a;
    --color-white: #ffffff;
    --color-light-grey: #fafafa;
    --color-border: rgba(0, 0, 0, 0.05);
    --color-text-body: #333333;

    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-family-serif: 'Helvetica Neue', Helvetica, Arial, sans-serif;

    --header-height: 90px;
    --header-total: 120px;
    --spacing-1: 0.5rem;
    --spacing-2: 1rem;
    --spacing-3: 1.5rem;
    --spacing-4: 2.5rem;
    --spacing-5: 4rem;
    --spacing-6: 6rem;
    --spacing-7: 10rem;

    --radius-sm: 0.5rem;
    --radius-md: 1.25rem;
    --radius-lg: 2rem;
    --radius-pill: 2.5rem;

    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.06);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

section {
    scroll-margin-top: 0;
    scroll-snap-align: start;
    /* Ancora cada secao no snap */
}

body {
    font-family: var(--font-family);
    color: var(--color-text-body);
    line-height: 1.6;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.bg-light-grey {
    background-color: var(--color-light-grey);
}

.bg-black {
    background-color: var(--color-black);
    color: var(--color-white);
}

.bg-grey-muted {
    background-color: #f5f5f5;
}

.hidden {
    display: none !important;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-serif);
    color: var(--color-black);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.bg-black h1,
.bg-black h2,
.bg-black h3,
.bg-black h4,
.bg-black p {
    color: var(--color-white);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.section-desc {
    font-size: 1.125rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: all .25s ease;
    text-align: center;
    padding: 0.7rem 1.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-lg {
    padding: 0.7rem 1.6rem;
    font-size: 0.92rem;
}

/* Primary Button (Orange) */
.btn-primary {
    background: linear-gradient(135deg, var(--color-mc-orange), var(--color-mc-orange-dark));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 18px rgba(0, 161, 252, 0.18);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-mc-orange-dark), var(--color-mc-orange));
    transition: opacity 0.5s ease;
    border-radius: var(--radius-pill);
    z-index: -1;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0, 161, 252, 0.28);
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Secondary Button (Outline) */
.btn-secondary {
    background-color: transparent;
    color: var(--color-mc-orange);
    border: 2px solid var(--color-mc-orange);
}

.btn-secondary::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-mc-orange);
    transition: all 0.3s ease;
    border-radius: var(--radius-pill);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-secondary:hover::before {
    width: 100%;
}

/* Secondary Button on Dark Background */
.btn-secondary.on-dark {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
}

.btn-secondary.on-dark::before {
    background-color: transparent;
}

.btn-secondary.on-dark:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* Icon Button (for search) */
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-black);
    color: var(--color-black);
    transition: all 0.3s ease;
    background: transparent;
}

.btn-icon:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* Header */
.header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(95% - 48px);
    max-width: 1330px;
    background-color: rgba(255, 255, 255, 0.85);
    /* More transparent */
    backdrop-filter: blur(12px);
    /* Blur effect */
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-pill);
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-soft);
}

.header.scrolled {
    box-shadow: var(--shadow-hover);
    top: 16px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.header-container {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

/* Logo imitating MC circles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-circles {
    display: flex;
    position: relative;
    width: 48px;
    height: 30px;
}

.logo .circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    opacity: 0.9;
    mix-blend-mode: multiply;
}

.logo.on-dark .circle {
    mix-blend-mode: screen;
}

.logo .circle.red {
    background-color: var(--color-primary-red);
    left: 0;
}

.logo .circle.orange {
    background-color: var(--color-primary-orange);
    right: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: -0.5px;
}

.logo.on-dark .logo-text {
    color: var(--color-white);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #4a4a4a;
    position: relative;
}

.nav-link:hover {
    color: var(--color-black);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-mc-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-black);
    padding: 5px;
}

/* Hero Section */
.hero {
    position: relative !important;
    height: 100vh !important;
    height: 100dvh !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    background-color: var(--color-black);
    overflow: hidden !important;
}

.hero>.container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-inner {
    position: relative !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    display: flex !important;
    align-items: center !important;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-color: #f1f3f5;
    /* Light gray loading bg */
}

/* Preloader UI under the hero-inner */
.video-preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f1f3f5;
    z-index: 1;
    /* Below the hero-inner container */
    transition: opacity 0.5s ease;
}

.preloader-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    opacity: 0.6;
    animation: preloaderPulse 1.5s infinite ease-in-out;
}

.preloader-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(0, 161, 252, 0.2);
    border-top: 3px solid var(--color-mc-blue);
    border-radius: 50%;
    animation: preloaderSpin 1s linear infinite;
}

@keyframes preloaderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloaderPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

.transition-reveal {
    clip-path: circle(0% at center);
    transition: clip-path 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.transition-reveal.is-playing {
    clip-path: circle(150% at center);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto !important;
    min-width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    z-index: 1;
}

.video-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero:hover .video-controls {
    opacity: 1;
}

.video-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* 45% */
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 780px;
    /* Ampliado para caber as duas linhas do titulo sem quebrar */
    padding: 320px 5rem 0;
}

.hero-title {
    font-family: var(--font-family-serif);
    font-size: clamp(30px, 3.6vw, 48px);
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.18;
    color: var(--color-white);
    letter-spacing: -0.01em;
    white-space: nowrap;
    /* Impede quebra de linha no desktop */
    max-width: 100%;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 2.4rem;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    letter-spacing: 0.01em;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Animations */
.animate-moveup {
    opacity: 0;
    transform: translateY(40px);
    animation: moveUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes moveUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section / Elementor overrides */
.elementor-section,
section {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    scroll-margin-top: 0;
}

.section {
    min-height: auto;
    height: auto;
    display: block;
    padding: 80px 0;
}

.section>.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
}

/* Specific for Consórcio section to be 100vh on desktop */
#consorcio {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    #consorcio {
        min-height: auto;
        display: block;
    }
}

/* ── Consorcio Card — Premium Clean ──────────────────────── */
.consorcio-card {
    background: linear-gradient(180deg, #ffffff, #f7f9fc);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 26px;
    padding: 72px 64px;
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s cubic-bezier(.16, 1, .3, 1);
}

.consorcio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 60px 140px rgba(0, 0, 0, 0.08);
}

.consorcio-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Simulador Iframe Transitions */
.sim-cta-container {
    padding: 60px 0;
}

#sim-wrapper.active {
    display: block !important;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.simulador-section iframe {
    transition: height 0.4s ease-out;
}

/* Title */
.highlight-title {
    font-size: clamp(34px, 3vw, 52px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #1a1a1a;
}

/* Desc */
.highlight-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    max-width: 720px;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Feature list — 2 columns */
.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 18px 60px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    color: #0f172a;
    transition: color .2s;
}

.feature-list li:hover {
    color: #2563eb;
}

.feature-list svg {
    flex-shrink: 0;
    color: #00a1fc;
}

/* CTA Button — herda o padrão do site (.btn-primary #00a1fc) */
.consorcio-card .btn-primary {
    height: 48px;
    padding: 0 34px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .02em;
    margin-top: 24px;
    width: auto;
}

.consorcio-card .btn-primary:hover {
    transform: translateY(-2px);
}

.consorcio-card .btn-primary::before {
    display: none;
}

/* Mobile */
@media (max-width: 900px) {
    .consorcio-card {
        padding: 38px 20px;
        border-radius: 20px;
        width: 90%;
        margin: 0 auto;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .consorcio-card .btn-primary {
        width: 100%;
    }
}


/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
}

.step-card {
    background: var(--color-white);
    padding: 4rem 2.5rem;
    /* Mais respiro */
    border-radius: var(--radius-lg);
    /* Bordas mais suaves */
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary-orange);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-card h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Split Grid for Protecao and Credito */
.split-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Changed to 1 column since they are separate now */
    gap: 4rem;
    width: 100%;
    max-width: 800px;
    /* Limit width for single cards for better readability */
    margin: 0 auto;
}

@media (max-width: 991px) {
    .split-grid {
        grid-template-columns: 1fr;
    }
}

.split-card {
    background: var(--color-white);
    padding: 5rem 4rem;
    /* Mais respiro interno */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
}

.split-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.split-card .card-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: var(--color-black);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-list strong {
    font-size: 1.125rem;
    color: var(--color-black);
}

.service-list span {
    color: #555;
}

/* Card Links General (Reused from old card link structure) */
.card-link {
    color: var(--color-mc-orange);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.card-link .arrow {
    transition: transform 0.3s ease;
}

.card-link:hover .arrow {
    transform: translateX(4px);
}

/* Differentials Grid */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.diff-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* Mobile Fullscreen Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-light-grey);
    z-index: 90;
    padding-top: 69px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}



.mobile-menu-body {
    padding: 2rem 0;
    flex-grow: 1;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-link:hover {
    color: var(--color-primary-orange);
}

.mobile-nav-link:hover svg {
    transform: translateX(5px);
}

.mobile-nav-link svg {
    transition: transform 0.3s ease;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* Turn the colored logo into a pure white logo for the dark footer */
.footer-brand .logo img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-desc {
    color: #999;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.link-group h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.link-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-group a {
    color: #a0a09f;
}

.link-group a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid #323231;
    padding-top: 2rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #a0a09f;
    font-size: 0.875rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a:hover {
    color: var(--color-white);
}

/* ===== DESKTOP EXPERIENCE (fullscreen premium) ===== */
@media (min-width: 1024px) {
    body {
        scroll-snap-type: y mandatory;
    }

    .section {
        min-height: 100vh;
        height: 100vh;
        display: flex;
        align-items: center;
    }

    .section>.container {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Media Queries */
@media (max-width: 991px) {
    .header {
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        border-radius: 0 0 var(--radius-md) var(--radius-md) !important;
        padding: 0 !important;
    }

    .header-container {
        padding: 0 1.2rem;
        height: 69px;
        position: relative;
    }

    .header-actions {
        margin-left: auto;
    }

    .nav-menu {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        padding: 0;
    }

    .header-container .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {

    section,
    .section {
        height: auto !important;
        min-height: auto !important;
        padding: 60px 0;
        display: block;
    }

    .section>.container {
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero {
        height: 100vh !important;
        height: 100dvh !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .hero>.container {
        height: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-inner {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .hero-content {
        padding: 80px 24px !important;
        max-width: 100%;
        text-align: center;
        width: 100%;
        margin: 0 !important;
    }

    .hero-cta {
        gap: 0.6rem;
        /* Menos espaco entre os botoes */
    }

    .hero-cta .btn {
        padding: 0.55rem 1.25rem;
        /* Botoes mais slim no mobile */
        font-size: 0.85rem;
    }

    .hero-title {
        white-space: normal !important;
        font-size: 26px !important;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.45;
        margin-bottom: 1.25rem;
    }

    .btn {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.25;
        word-wrap: break-word;
        word-break: break-word;

        br {
            display: none;
        }
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .consorcio-card {
        padding: 34px 18px;
        border-radius: 18px;
        width: 90%;
        margin: 0 auto;
    }

    .split-card {
        padding: 2.5rem 1.5rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .highlight-title {
        font-size: 2.25rem;
    }

    .highlight-desc {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .footer-container {
        flex-direction: column;
    }
}

/* ===== STRATEGY LATERAL EDITORIAL ===== */

.simulador-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.simulador-section iframe {
    width: 100%;
    border: none;
    display: block;
    /* Height will be controlled dynamically by JS to fit content exactly */
}

@media (max-width: 600px) {
    .simulador-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .simulador-section iframe {
        width: 90% !important;
        margin: 0 auto !important;
        zoom: 1 !important;
    }
}

.strategy-section {
    padding: 120px 0;
    background: #f5f5f5;
}

.strategy-layout {
    display: flex;
    align-items: center;
    gap: 8%;
}

/* Imagem */

.strategy-image-box {
    flex: 0 0 42%;
    position: relative;
    border-radius: 48px;
    overflow: hidden;
    max-height: 420px;
    transition: all .8s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.10);
}

.strategy-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: all 1.2s cubic-bezier(.16, 1, .3, 1);
}

/* Hover elegante */

.strategy-image-box:hover {
    border-radius: 18px;
    max-height: 520px;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.18);
}

.strategy-image-box:hover img {
    transform: scale(1.06);
}

/* Texto */

.strategy-text-box {
    flex: 1;
}

.strategy-title {
    font-size: clamp(22px, 2vw, 32px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.strategy-desc {
    font-size: 0.95rem;
    color: #666;
    max-width: 560px;
    line-height: 1.6;
}

/* Mobile */

@media (max-width: 900px) {
    .strategy-layout {
        flex-direction: column;
        gap: 40px;
    }

    .strategy-image-box {
        flex: 0 0 auto;
        width: 100%;
        max-height: 320px;
        border-radius: 28px;
    }

    .strategy-title {
        font-size: 18px;
    }

    .strategy-desc {
        font-size: 0.82rem;
    }
}

/* ── Simulador Section Header ─────────────────────────────── */
.simulador-header {
    text-align: center;
    padding: 60px 24px 40px;
}

.simulador-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.simulador-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    max-width: 620px;
    margin: 0 auto;
    font-weight: 400;
}

/* ── Sobre Section — Premium Dark ─────────────────────────── */
.sobre-section {
    background: #0a0a14;
    padding: 120px 0;
}

.sobre-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
}

.sobre-title {
    font-size: clamp(23px, 2.7vw, 36px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 14px;
}

.sobre-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    letter-spacing: 0.01em;
}

.sobre-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.sobre-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 25px 22px;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1), background .4s, border-color .4s;
}

.sobre-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 161, 252, 0.25);
}

.sobre-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(0, 161, 252, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.sobre-card-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 7px;
    letter-spacing: -0.01em;
}

.sobre-card-desc {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

@media (max-width: 900px) {
    .sobre-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Simulator Mobile Width Override */
@media (max-width: 600px) {
    #simulador .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 600px) {
    .sobre-section {
        padding: 70px 0;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sobre-card {
        padding: 28px 24px;
    }
}

/* ── Contact Modal Wrapper ────────────────────────────────── */
.contact-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal-wrapper.active {
    display: flex;
    opacity: 1;
}

.contact-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
}