/* Reset and Base Styles */
:root {
    --bg-dark: #07070a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #f8f9fa;
    --text-secondary: #a0a0ab;
    --accent-gold-light: #f5d76e;
    --accent-gold: #d4af37;
    --accent-gold-dark: #997a15;
    
    --glow-spread: rgba(212, 175, 55, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- NEW: Animated Background Grid --- */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -3;
    pointer-events: none;
}

/* --- NEW: Animated Orbs --- */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -2;
    pointer-events: none;
    opacity: 0.6;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: float1 20s infinite alternate ease-in-out;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-gold-dark) 0%, transparent 70%);
    bottom: 10%;
    right: -150px;
    animation: float2 25s infinite alternate ease-in-out;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation: float3 18s infinite alternate ease-in-out;
}

@keyframes float1 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(200px, 150px); }
}
@keyframes float2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-300px, -200px); }
}
@keyframes float3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, -100px) scale(1.3); }
}

/* Typography & Utilities */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* --- NEW: Text Shine Effect --- */
.shine-effect {
    background-size: 200% auto;
    animation: shine 4s linear infinite;
    background-image: linear-gradient(
        to right,
        var(--accent-gold-light) 0%,
        #fff 50%,
        var(--accent-gold-light) 100%
    );
}

@keyframes shine {
    to { background-position: 200% center; }
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0; /* Aumentado o respiro */
}

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

.mt-2 { margin-top: 1rem; }

/* --- NEW: Advanced Button Styling --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #111;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    z-index: -1;
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold-dark), var(--accent-gold-light));
    background-size: 200% auto;
    border-radius: 52px;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: shine 3s linear infinite;
}

.glow-btn:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
    color: #000;
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.3rem;
}

/* Glassmorphism Cards (Vanilla Tilt removes the need for hover transform here) */
.glass-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-left: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 2.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform-style: preserve-3d;
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 4rem;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

/* --- NEW: Pulse Badge --- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold-light);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(212, 175, 55, 0.8);
    animation: pulse-dot-anim 2s infinite;
}

@keyframes pulse-dot-anim {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-weight: 300;
}

/* Pain Points / Intro Section */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-content p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.flex-center {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    transform: translateZ(20px); /* 3D depth for tilt */
}

.icon-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    color: var(--accent-gold-light);
    padding: 1.2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.1);
}

/* Benefits Grid */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem 2.5rem;
}

.benefit-icon {
    color: var(--accent-gold-light);
    width: 40px;
    height: 40px;
    transform: translateZ(30px); /* Popping out effect on tilt */
}

.benefit-card p {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 400;
    transform: translateZ(20px);
}

/* Authority / Experience Section */
.authority-content {
    padding: 5rem;
    position: relative;
    overflow: hidden;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 30px;
    color: rgba(255, 255, 255, 0.02);
    width: 200px;
    height: 200px;
    z-index: 0;
}

.authority-content h3 {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    font-style: italic;
    color: #fff;
    text-align: center;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 4rem 0;
}

.experience-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.exp-number {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
}

.exp-label {
    color: var(--accent-gold);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.exp-text p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
}

/* --- NEW: Infinite Marquee Carousel --- */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    margin-top: 2rem;
    /* Gradient masks to fade edges */
    -webkit-mask-image: linear-gradient(90deg, transparent, #fff 15%, #fff 85%, transparent);
    mask-image: linear-gradient(90deg, transparent, #fff 15%, #fff 85%, transparent);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scroll-marquee 30s linear infinite;
    gap: 3rem;
}

.artist-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    cursor: default;
}

.artist-tag:hover {
    color: var(--accent-gold-light);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.5rem)); }
}

/* CTA Section */
.cta-box {
    padding: 6rem 4rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(212,175,55,0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 30px rgba(212,175,55,0.05);
}

.cta-box h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transform: translateZ(30px);
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    transform: translateZ(20px);
}

.cta-actions {
    transform: translateZ(40px);
}

.scarcity {
    font-size: 1rem !important;
    color: var(--accent-gold) !important;
    margin-top: 2rem !important;
    margin-bottom: 0 !important;
    font-weight: 500;
    transform: translateZ(20px);
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    background: rgba(0,0,0,0.3);
}

/* Animations (Scroll Reveal) */
.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .grid-2-cols {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .authority-content {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .section { padding: 5rem 0; }
    
    .hero h1 { font-size: 3rem; }
    
    .text-content h2, .section-header h2, .cta-box h2 {
        font-size: 2.5rem;
    }
    
    .authority-content h3 { font-size: 1.5rem; }
    
    .cta-box { padding: 4rem 2rem; }
    
    .artist-tag { font-size: 1.4rem; }
}
