@charset "utf-8";

@font-face {
    font-family: 'Montserrat';
    src: url('montserrat.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ethnocentric';
    src: url('ethnocentric.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ========================================================= */
/* Base Reset & Typography                                   */
/* ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #01030c;
    --color-text: #f4f7ff;
    --color-highlight: #4f9dff;
    --color-highlight-strong: #1f63ff;
    --color-highlight-soft: #9fd4ff;
    --color-iris: #6d7dff;
    --color-accent: #fcc707;
    --color-accent-strong: #12c6ff;
    --color-panel: rgba(10, 20, 45, 0.65);
    --color-panel-strong: rgba(12, 34, 78, 0.75);
    --rgb-highlight: 79, 157, 255;
    --rgb-accent: 18, 183, 236;
    --font-sans: 'Montserrat', 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    min-height: 100vh;
    font-weight: 600;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================================= */
/* Decorative Background                                     */
/* ========================================================= */
.dealership-backdrop {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 15% 85%, rgba(30, 82, 214, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(18, 183, 236, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 45% 60%, rgba(17, 115, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 40%, rgba(9, 209, 255, 0.18) 0%, transparent 50%),
        linear-gradient(135deg, #020611 0%, #071732 50%, #000000 100%);
    animation: backgroundPulse 14s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%,
    100% {
        filter: brightness(0.9) saturate(1.4) hue-rotate(0deg);
    }

    33% {
        filter: brightness(1.1) saturate(1.7) hue-rotate(15deg);
    }

    66% {
        filter: brightness(1.0) saturate(1.5) hue-rotate(-10deg);
    }
}

.floating-ornaments {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.ornament {
    position: absolute;
    border: 1px solid rgba(50, 226, 255, 0.2);
    animation: floatShape 20s linear infinite;
}

.ornament:nth-child(1) {
    width: 100px;
    height: 100px;
    left: 10%;
    border-color: rgba(63, 157, 255, 0.2);
}

.ornament:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 70%;
    border-radius: 50%;
    animation-delay: -5s;
    border-color: rgba(18, 183, 236, 0.2);
}

.ornament:nth-child(3) {
    width: 80px;
    height: 80px;
    left: 30%;
    animation-delay: -10s;
    transform: rotate(45deg);
    border-color: rgba(109, 125, 255, 0.2);
}

.ornament:nth-child(4) {
    width: 120px;
    height: 120px;
    left: 50%;
    animation-delay: -15s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(45deg, rgba(18, 183, 236, 0.2), transparent);
}

@keyframes floatShape {
    from {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10%,
    90% {
        opacity: 1;
    }

    to {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.accent-lines {
    position: fixed;
    inset: 0;
    z-index: -1;
}

.accent-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    height: 1px;
    animation: accentPulse 3s ease-in-out infinite;
}

.accent-line:nth-child(1) {
    top: 20%;
    background: linear-gradient(90deg, transparent, var(--color-highlight-soft), transparent);
}

.accent-line:nth-child(2) {
    top: 60%;
    background: linear-gradient(90deg, transparent, var(--color-highlight), transparent);
    animation-delay: -1s;
}

.accent-line:nth-child(3) {
    top: 40%;
    background: linear-gradient(90deg, transparent, var(--color-iris), transparent);
    animation-delay: -2s;
}

section[id] {
    scroll-margin-top: 120px;
}

@keyframes accentPulse {
    0%,
    100% {
        opacity: 0.2;
        transform: scaleX(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* ========================================================= */
/* Utilities                                                 */
/* ========================================================= */
.u-glass-panel {
    background: var(--color-panel);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.u-glass-panel--strong {
    background: var(--color-panel-strong);
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.gradient-color {
     font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--color-highlight-soft) 0%, var(--color-highlight) 35%, var(--color-iris) 65%, var(--color-accent) 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: modernGradient 4s ease 0.3s infinite, fadeRight 0.6s ease 0.3s forwards;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
    opacity: 0;
}

.is-hidden {
    display: none !important;
}

.action-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--color-text), var(--color-highlight));
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(var(--rgb-highlight), 0.2);
}

.action-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(var(--rgb-highlight), 0.35);
}

.action-button--ghost {
    border: 2px solid var(--color-text);
    background: transparent;
    color: var(--color-text);
    box-shadow: 0 4px 15px rgba(var(--rgb-highlight), 0.15);
}

.action-button--ghost:hover {
    background: rgba(var(--rgb-highlight), 0.12);
}

/* ========================================================= */
/* Header & Navigation                                       */
/* ========================================================= */
.primary-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 96%;
    max-width: 1200px;
    padding: 18px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(var(--rgb-highlight), 0.08);
    border: 1px solid rgba(var(--rgb-highlight), 0.2);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.primary-header.scrolled {
    background: rgba(var(--rgb-highlight), 0.12);
    border-color: rgba(var(--rgb-highlight), 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(var(--rgb-highlight), 0.15);
}

.primary-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Ethnocentric', var(--font-sans);
    letter-spacing: 0.12em;
    background: linear-gradient(45deg, var(--color-text), var(--color-highlight));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    animation: brandGlow 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.brand-mark:hover {
    transform: scale(1.05);
}

.brand-mark__icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px var(--color-text));
}

@keyframes brandGlow {
    0%,
    100% {
        filter: drop-shadow(0 0 10px var(--color-text));
    }

    50% {
        filter: drop-shadow(0 0 20px var(--color-highlight));
    }
}

.primary-nav__links {
    display: flex;
    list-style: none;
    gap: 12px;
}

.primary-nav__links a {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
}

.primary-nav__links a.active {
    color: var(--color-text);
    background: linear-gradient(135deg, rgba(var(--rgb-highlight), 0.2), rgba(var(--rgb-accent), 0.15));
    box-shadow: 0 0 20px rgba(var(--rgb-highlight), 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 15px rgba(var(--rgb-highlight), 0.2);
    border: 1px solid rgba(var(--rgb-highlight), 0.35);
    text-shadow: 0 0 10px rgba(var(--rgb-highlight), 0.8);
    transform: translateY(-1px);
}

.primary-nav__links a.active::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--color-highlight-soft), var(--color-highlight), var(--color-iris), var(--color-highlight-soft));
    background-size: 400% 400%;
    border-radius: 17px;
    z-index: -1;
    animation: borderGlow 3s ease infinite;
}

.primary-nav__links a.external-link::after {
    content: " \2197";
    font-size: 0.8em;
    vertical-align: super;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(var(--rgb-highlight), 0.12);
    box-shadow: 0 0 15px rgba(var(--rgb-highlight), 0.35);
}

.nav-toggle__bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, var(--color-text), var(--color-highlight));
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .nav-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.nav-toggle.active .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.primary-nav__drawer {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: none;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.primary-nav__drawer.active {
    display: flex;
    animation: drawerSlideDown 0.3s ease-out;
}

@keyframes drawerSlideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.primary-nav__drawer a {
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.primary-nav__drawer a:hover {
    background: rgba(var(--rgb-highlight), 0.12);
    color: var(--color-text);
    box-shadow: 0 0 20px rgba(var(--rgb-highlight), 0.35);
    transform: translateY(-2px);
}

.primary-nav__drawer a.active {
    background: linear-gradient(135deg, rgba(var(--rgb-highlight), 0.25), rgba(var(--rgb-accent), 0.2));
    color: var(--color-text);
    border: 1px solid rgba(var(--rgb-highlight), 0.4);
    box-shadow: 0 0 25px rgba(var(--rgb-highlight), 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(var(--rgb-highlight), 0.6);
}

/* ========================================================= */
/* Hero Section                                              */
/* ========================================================= */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(var(--rgb-highlight), 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: heroGlow 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes heroGlow {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
        opacity: 1;
    }
}

.hero-section__content {
    max-width: 1000px;
    padding: 0 40px;
    margin-top: 120px;
    animation: heroAppear 2.5s ease-out;
}

@keyframes heroAppear {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-section__eyebrow {
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeLeft 1.2s ease 0.3s forwards;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    position: relative;
    display: inline-block;
    font-weight: 300;
}

.hero-section__eyebrow::before,
.hero-section__eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-text), transparent);
    animation: linePulse 3s ease infinite;
}

.hero-section__eyebrow::before {
    left: -60px;
}

.hero-section__eyebrow::after {
    right: -60px;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes linePulse {
    0%,
    100% {
        opacity: 0.4;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

.hero-section h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--color-highlight-soft) 0%, var(--color-highlight) 35%, var(--color-iris) 65%, var(--color-accent) 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: modernGradient 4s ease 0.3s infinite, fadeRight 0.6s ease 0.3s forwards;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
    opacity: 0;
}

@keyframes modernGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-section__description {
    max-width: 700px;
    margin: 40px auto 50px;
    opacity: 0;
    animation: fadeInScale 1.2s ease 0.9s forwards;
}

.hero-section__description p {
    font-size: 1.6rem;
    color: #d1d1d1;
    line-height: 1.7;
    font-weight: 500;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    margin: 60px auto 50px;
    max-width: 640px;
    opacity: 0;
    animation: slideUpStagger 1.2s ease 1.2s forwards;
}

.hero-metrics__item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(var(--rgb-highlight), 0.15), rgba(var(--rgb-accent), 0.08));
    border: 1px solid rgba(var(--rgb-highlight), 0.45);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.hero-metrics__item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(var(--rgb-accent), 0.8);
    box-shadow: 0 20px 40px rgba(var(--rgb-highlight), 0.25);
}

.hero-metrics__value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    display: block;
    text-shadow: 0 0 15px rgba(var(--rgb-highlight), 0.4);
    margin-bottom: 8px;
}

.hero-metrics__label {
    font-size: 0.8rem;
    color: #dcdcdc;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

@keyframes slideUpStagger {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: buttonSlideUp 1.2s ease 1.5s forwards;
}

@keyframes buttonSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================================= */
/* Lead Capture & Form                                       */
/* ========================================================= */
.lead-capture {
    padding: 0;
    position: relative;
    padding-top: 40px;
}

.lead-capture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(var(--rgb-highlight), 0.2), transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.lead-capture__container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.lead-capture__card {
    position: relative;
    padding: 70px 55px;
    width: 100%;
    max-width: 860px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.lead-form__intent-switch {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.intent-toggle {
    flex: 1 1 150px;
    padding: 14px 22px;
    border-radius: 50px;
    border: 2px solid rgba(var(--rgb-highlight), 0.5);
    background: transparent;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--rgb-highlight), 0.2);
}

.intent-toggle.active {
    background: linear-gradient(135deg, var(--color-text), var(--color-highlight));
    color: #000;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(var(--rgb-highlight), 0.35);
}

.intent-toggle:hover {
    transform: translateY(-3px) scale(1.01);
}

@media (min-width: 900px) {
    .lead-form__intent-switch {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .intent-toggle {
        flex: 1 1 auto;
    }
}

.form-field {
    display: flex;
    align-items: center;
    gap: 16px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.field-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
    background: rgba(var(--rgb-highlight), 0.1);
    border: 1px solid rgba(var(--rgb-highlight), 0.3);
    flex: 0 0 220px;
}

.field-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    line-height: 1;
    color: #fff;
}

.field-hint {
    font-size: 0.95rem;
    color: #dcdcdc;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-input::placeholder {
    color: #9c9c9c;
}

.currency-input {
    font-variant-numeric: tabular-nums;
}

.whatsapp-submit {
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    color: #000;
    background: linear-gradient(120deg, var(--color-accent), var(--color-highlight));
    box-shadow: 0 12px 35px rgba(var(--rgb-highlight), 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.whatsapp-submit:hover:not(:disabled) {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(var(--rgb-highlight), 0.35);
}

.whatsapp-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================================= */
/* WhatsApp CTA                                              */
/* ========================================================= */
.whatsapp-cta {
    padding: 140px 20px 120px;
    position: relative;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    inset: 10% 20%;
    background: radial-gradient(circle at 50% 50%, rgba(var(--rgb-highlight), 0.18), transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.whatsapp-cta__container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.whatsapp-cta__card {
    text-align: center;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 30px;
    border: 1px solid rgba(var(--rgb-highlight), 0.25);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.whatsapp-cta__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text);
    opacity: 0.8;
}

.whatsapp-cta__title {
    font-size: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(135deg, var(--color-highlight-soft) 0%, var(--color-highlight) 50%, var(--color-iris) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.whatsapp-cta__copy {
    color: #d6d6d6;
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto 10px;
}

/* ========================================================= */
/* Services Grid                                             */
/* ========================================================= */
.services-section {
    padding: 0 0 150px;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(var(--rgb-accent), 0.12), transparent);
    animation: rotateHalo 20s linear infinite;
    z-index: -1;
}

@keyframes rotateHalo {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.services-section__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 40px;
}

.section-heading {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.section-heading__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(var(--rgb-highlight), 0.8);
}

.section-heading__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-accent);
    position: relative;
    line-height: 1.2;
    text-align: center;
}

.section-heading__title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-highlight-strong));
    border-radius: 2px;
}

.section-heading__subtitle {
    color: #d1d1d1;
    font-size: 1.05rem;
    max-width: 720px;
    line-height: 1.7;
}

.section-heading--compact {
    margin-bottom: 36px;
    gap: 10px;
}

.section-heading--compact .section-heading__title::after {
    bottom: -6px;
}

.section-heading--left {
    text-align: left;
    align-items: flex-start;
}

.section-heading--left .section-heading__title {
    text-align: left;
}

.section-heading--left .section-heading__title::after {
    left: 0;
    transform: none;
}

.section-heading--left .section-heading__subtitle {
    text-align: left;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card {
    flex: 1;
    padding: 50px;
    transform: skew(-5deg);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: skew(-5deg) translateY(-10px);
    box-shadow: 0 30px 60px rgba(var(--rgb-accent), 0.25);
}

.service-card__icon {
    font-size: 4rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--color-highlight), var(--color-iris));
    -webkit-background-clip: text;
    background-clip: text;
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-card p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
}

.service-visual {
    flex: 1;
    height: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
}

.service-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(79, 157, 255, 0.15), rgba(18, 183, 236, 0.15));
    transition: all 0.4s ease;
}

.service-visual:hover::before {
    background: linear-gradient(45deg, rgba(79, 157, 255, 0.25), rgba(18, 183, 236, 0.25));
}

.service-visual:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(50, 226, 255, 0.3);
}

.service-row:nth-child(1) .service-visual {
    background-image: url('images/compra.webp');
}

.service-row:nth-child(2) .service-visual {
    background-image: url('images/venda.webp');
}

.service-row:nth-child(3) .service-visual {
    background-image: url('images/aluga.webp');
}

.service-row:nth-child(4) .service-visual {
    background-image: url('images/compra.webp');
}

/* ========================================================= */
/* Showcase & Timeline (optional sections)                   */
/* ========================================================= */
.showcase-grid,
.milestone-timeline {
    padding: 150px 0;
    position: relative;
}

.timeline-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-highlight-soft), var(--color-highlight), var(--color-iris));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(var(--rgb-highlight), 0.3);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 60px;
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 60px;
    padding-right: 0;
}

.timeline-content {
    max-width: 450px;
    padding: 50px 40px;
    background: rgba(var(--rgb-highlight), 0.12);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(var(--rgb-highlight), 0.2);
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--color-highlight), var(--color-highlight-soft));
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(var(--rgb-highlight), 0.6), 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.timeline-year {
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(var(--rgb-highlight), 0.4);
}

.timeline-content h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.timeline-content p {
    color: #d1d1d1;
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================================= */
/* Footer                                                    */
/* ========================================================= */
.site-footer {
    text-align: center;
    padding: 60px 20px 40px;
    border-top: 1px solid rgba(var(--rgb-highlight), 0.25);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.site-footer__content {
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer__links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.site-footer__links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.site-footer__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color-highlight-soft), var(--color-highlight));
    transition: width 0.3s ease;
}

.site-footer__links a:hover {
    color: var(--color-text);
    text-shadow: 0 0 10px rgba(var(--rgb-highlight), 0.5);
}

/* ========================================================= */
/* Site Modals                                               */
/* ========================================================= */
body.modal-open {
    overflow: hidden;
}

.site-modal[hidden] {
    display: none !important;
}

.site-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.site-modal.is-open {
    display: flex;
}

.site-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 3, 12, 0.92);
    backdrop-filter: blur(24px);
}

.site-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    padding: 60px;
    border-radius: 40px;
    background: rgba(8, 18, 45, 0.9);
    border: 1px solid rgba(var(--rgb-highlight), 0.35);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65);
    overflow: hidden;
}

.site-modal__dialog::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(var(--rgb-highlight), 0.25), transparent 60%),
        radial-gradient(circle at 80% 0%, rgba(var(--rgb-accent), 0.3), transparent 60%);
    opacity: 0.6;
    z-index: 0;
}

.site-modal__content {
    position: relative;
    z-index: 1;
    overflow-y: auto;
    max-height: calc(90vh - 120px);
    padding-right: 20px;
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.site-modal__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0.75;
}

.site-modal__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

.site-modal__section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(var(--rgb-highlight), 0.2);
    padding: 24px;
    border-radius: 18px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.site-modal__section h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.site-modal__section p,
.site-modal__content > p,
.site-modal__footer {
    color: #e1e7ff;
    line-height: 1.8;
    font-size: 1rem;
}

.site-modal__footer {
    font-size: 0.9rem;
    opacity: 0.8;
}

.site-modal__close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(var(--rgb-highlight), 0.35);
    background: rgba(0, 0, 0, 0.45);
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
}

.site-modal__close:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(var(--rgb-highlight), 0.5);
}

.site-modal__content::-webkit-scrollbar {
    width: 6px;
}

.site-modal__content::-webkit-scrollbar-thumb {
    background: rgba(var(--rgb-highlight), 0.5);
    border-radius: 6px;
}

.site-modal__content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.site-footer__links a:hover::after {
    width: 100%;
}

.site-footer__credit {
    color: #666666;
    font-size: 0.85rem;
    margin-top: 20px;
}

.site-footer__credit a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer__credit a:hover {
    color: var(--color-highlight);
    text-shadow: 0 0 8px rgba(var(--rgb-highlight), 0.45);
}

/* ========================================================= */
/* Responsive Breakpoints                                    */
/* ========================================================= */
@media (max-width: 1024px) {
    .service-row {
        flex-direction: column;
        gap: 40px;
        min-height: 720px;
    }

    .service-row:nth-child(even) {
        flex-direction: column;
    }

    .service-visual {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 1000px) {
    .primary-nav__links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 900px) {
    .lead-capture {
        padding: 1px 0 0;
        margin: 50px 0 0;
    }

    .lead-capture__card {
        padding: 50px 35px;
    }
}

@media (max-width: 768px) {
    .lead-form__intent-switch {
        flex-direction: column;
    }

    .form-field {
        flex-direction: column;
        align-items: flex-start;
    }

    .field-label {
        width: 100%;
        flex: none;
    }

    .intent-toggle {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .hero-section__content {
        padding: 40px 20px;
    }

    .hero-section h1 {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .hero-section__description p {
        font-size: 1.1rem;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .action-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .site-modal__dialog {
        padding: 40px 24px;
        border-radius: 28px;
    }

    .site-modal__content {
        max-height: calc(90vh - 80px);
        padding-right: 6px;
    }

    .site-modal__close {
        top: 15px;
        right: 15px;
    }
}

/* ========================================================= */
/* Scrollbar                                                 */
/* ========================================================= */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--color-accent), var(--color-highlight-strong));
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(var(--rgb-accent), 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--color-highlight-strong), var(--color-iris));
    box-shadow: 0 0 15px rgba(var(--rgb-highlight), 0.6);
}
