:root {
    --primary-gold: #FFD700;
    --primary-gold-hover: #E6C200;
    --accent-cyan: #00E5FF;
    --accent-red: #FF2E2E;
    --accent-green: #00FF94;
    --bg-dark: #050B14;
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-light: #F8FAFC;
    --text-dim: #94A3B8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 20px rgba(0, 229, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography & Gradients */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    line-height: 1.1;
}

.text-gradient-gold {
    background: linear-gradient(to right, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-green {
    background: linear-gradient(to right, #00FF94, #00B869);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-cyan {
    color: var(--accent-cyan);
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.highlight-red {
    color: var(--accent-red);
    font-weight: 700;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 0 6rem;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: grid-move 20s linear infinite;
    z-index: 0;
}

@keyframes grid-move {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px) translateZ(-200px);
    }
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.badge-wrapper {
    margin-bottom: 1.5rem;
}

.badge-alert {
    display: inline-block;
    background: rgba(255, 46, 46, 0.1);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pulse-red {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 46, 46, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 46, 46, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 46, 46, 0);
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 900;
}

.hero-benefits {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* CTA Buttons */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent-green) 0%, #00C853 100%);
    color: #003300;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.btn-hero {
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(0, 255, 148, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(0, 255, 148, 0.6);
}

.btn-text {
    z-index: 2;
}

.btn-sub {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 2px;
    z-index: 2;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.scarcity-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--accent-red);
    font-weight: 600;
}

/* Hero Visuals & Animation */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.house-model-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.house-3d-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.glowing-ring {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(5px);
    animation: spin-slow 20s linear infinite;
    z-index: 1;
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--accent-cyan);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.card-1 {
    top: 20%;
    right: 0;
    animation: float 5s ease-in-out infinite 1s;
}

.card-2 {
    bottom: 20%;
    left: 0;
    animation: float 5s ease-in-out infinite 2s;
}

/* Construction Animation (Building Blocks) */
.construction-anim {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    z-index: 0;
    opacity: 0.5;
}

.block {
    position: absolute;
    background: var(--accent-cyan);
    opacity: 0.3;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.b1 {
    bottom: 0;
    left: 0;
    animation: build 4s infinite;
}

.b2 {
    bottom: 0;
    left: 35px;
    animation: build 4s infinite 0.5s;
}

.b3 {
    bottom: 35px;
    left: 0;
    animation: build 4s infinite 1s;
}

.b4 {
    bottom: 35px;
    left: 35px;
    animation: build 4s infinite 1.5s;
}

@keyframes build {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    20% {
        transform: translateY(0);
        opacity: 0.3;
    }

    80% {
        transform: translateY(0);
        opacity: 0.3;
    }

    100% {
        transform: translateY(0);
        opacity: 0.3;
    }
}

/* Value Shock Section */
.value-shock {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0B1221);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: white;
}

.section-subtitle {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 4rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cost-card {
    border-left: 4px solid var(--accent-red);
}

.opportunity-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid var(--accent-cyan);
    position: relative;
    transform: scale(1.05);
}

.neon-border {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-cyan);
    color: #000;
    font-weight: 800;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.price-comparison {
    margin: 2rem 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.final-price .prefix {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.final-price .installments {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
}

.final-price .cash-price {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.btn-small {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-small:hover {
    background: var(--accent-cyan);
    color: #000;
}

/* Features Grid */
.content-showcase {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.gradient-1 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.gradient-2 {
    background: linear-gradient(135deg, #00E5FF, #0099CC);
}

.gradient-3 {
    background: linear-gradient(135deg, #FF2E2E, #CC0000);
}

.gradient-4 {
    background: linear-gradient(135deg, #00FF94, #00C853);
}

/* Final CTA */
.final-cta {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
    background: #050B14;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 1;
}

.final-content {
    max-width: 700px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(to right, #FFF, #94A3B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.urgent-box {
    margin: 2rem 0;
    border-color: var(--accent-red);
}

.btn-large {
    font-size: 1.4rem;
    padding: 1.5rem 3rem;
    min-width: 350px;
}

.btn-large small {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 0.5rem;
    opacity: 0.8;
    text-transform: none;
}

.pulse-gold {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-benefits {
        justify-content: center;
    }

    .cta-wrapper {
        align-items: center;
    }

    .hero-visual {
        height: 400px;
    }

    .house-3d-img {
        max-width: 100%;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}