:root {
    /* Cor baseada na logo */
    --primary: #d12026;
    --primary-dark: #a81a1f;
    --primary-glow: rgba(209, 32, 38, 0.4);
    --bg: #0a0a0a;
    --surface: #121212;
    --surface-accent: #1a1a1a;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border: rgba(255, 255, 255, 0.08);
}



/* Zero reset moderno */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}



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

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

/* Helpers de Cor */
.accent { color: var(--primary); }

/* Noise Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff4d4d);
    z-index: 2000;
}

/* Reveal Animations Base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Navegação */
.nav-premium {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(209, 32, 38, 0.2));
    transition: all 0.3s ease;
}

.nav-logo-img:hover {
    filter: drop-shadow(0 0 20px var(--primary));
    transform: scale(1.1);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Mouse Glow Effect */
.mouse-glow {
    position: fixed;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(209, 32, 38, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

/* Hero Section High Impact */
.hero-impact {
    padding-top: 180px;
    padding-bottom: 150px;
    background: radial-gradient(circle at 70% 30%, rgba(209, 32, 38, 0.1), transparent 50%),
                radial-gradient(circle at 20% 70%, rgba(209, 32, 38, 0.05), transparent 40%);
    position: relative;
    overflow: hidden;
}

.hero-impact::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('https://images.unsplash.com/photo-1558981403-c5f91cbba527?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    opacity: 0.08;
    z-index: -1;
    filter: saturate(0);
    transition: transform 0.5s ease-out;
}

.hero-impact:hover::after {
    transform: scale(1.05);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text h1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -3px;
    max-width: 900px;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 3.5rem;
}

.badge-premium {
    background: rgba(209, 32, 38, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-text h1 {
    animation: fadeInUp 1s cubic-bezier(0.2, 1, 0.3, 1) 0.2s backwards;
}

.hero-text p {
    animation: fadeInUp 1s cubic-bezier(0.2, 1, 0.3, 1) 0.4s backwards;
}

.hero-cta-group {
    animation: fadeInUp 1s cubic-bezier(0.2, 1, 0.3, 1) 0.6s backwards;
}

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

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
}

.hero-media-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-big {
    width: 100%;
    max-width: 500px;
    transform: perspective(1000px) rotateY(-5deg);
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.hero-media-wrapper:hover .hero-logo-big {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(120px);
    opacity: 0.2;
    z-index: -1;
}

/* Botões Customizados */
.btn-primary {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-align: center;
}

.btn-primary.large { padding: 1.2rem 3rem; font-size: 1.1rem; }
.btn-primary.small { padding: 0.8rem 1.5rem; font-size: 0.9rem; }

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px var(--primary-glow), 0 0 10px var(--primary);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s;
    text-align: center;
}

.btn-secondary.large { padding: 1.2rem 3rem; font-size: 1.1rem; }

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Stats Bar */
.stats-bar {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: radial-gradient(circle at 50% 50%, rgba(209, 32, 38, 0.03), transparent);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent, var(--primary-glow), transparent);
    animation: rotate 10s linear infinite;
    opacity: 0.1;
    z-index: -1;
    transform: translate(-50%, -50%);
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item { text-align: center; }
.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
}
.stat-label {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

/* Como funciona - Steps */
.steps { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step-card {
    background: var(--surface);
    padding: 3.5rem 2.5rem;
    border-radius: 30px;
    position: relative;
    border: 1px solid var(--border);
    transition: all 0.4s;
}

.step-card:hover { 
    border-color: var(--primary); 
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.step-num {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.05;
    color: var(--primary);
}

.step-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    display: block;
}

.step-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.step-card p { color: var(--text-muted); }

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

.step-card:nth-child(2) { transition-delay: 0.1s; }
.step-card:nth-child(3) { transition-delay: 0.2s; }

/* Vantagens / Perks */
.perks { padding: 100px 0; background: #070707; }
.perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.perk-info h2 { font-size: 3rem; font-weight: 800; margin-bottom: 2rem; }
.perk-info p { margin-bottom: 2.5rem; font-size: 1.1rem; color: var(--text-muted); }

.perk-list { list-style: none; }
.perk-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    font-size: 1.05rem;
}
.perk-list i { color: #10b981; }

.perks-cards { display: grid; gap: 1.5rem; }
.glass-perk {
    background: var(--surface-accent);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border);
}
.glass-perk.active {
    background: linear-gradient(145deg, #121212, #181111);
    border-color: rgba(209, 32, 38, 0.3);
}
.glass-perk i { color: var(--primary); width: 40px; height: 40px; margin-bottom: 1.5rem; }
.glass-perk h4 { margin-bottom: 0.5rem; font-size: 1.3rem; }

/* FAQ */
.faq-section { padding: 100px 0; }
.section-title-center { text-align: center; font-size: 3rem; margin-bottom: 50px; }

.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
    margin-bottom: 1.5rem;
    background: var(--surface);
    border-radius: 15px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after { content: '+'; color: var(--primary); font-size: 1.5rem; }
.faq-item[open] summary::after { content: '-'; }

.faq-content { padding: 0 2rem 1.5rem; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 1rem; }

/* Footer Master */
.footer-master {
    padding: 80px 0 40px;
    background: #000;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-logo { height: 60px; margin-bottom: 1.5rem; }
.footer-brand p { color: var(--text-muted); max-width: 300px; }

.footer-links-group h5, .footer-contact h5 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links-group ul { list-style: none; }
.footer-links-group li { margin-bottom: 0.8rem; }
.footer-links-group a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.footer-links-group a:hover { color: var(--primary); }

.footer-contact p { color: var(--text-muted); margin-bottom: 1rem; display: flex; gap: 0.8rem; }
.footer-contact i { color: var(--primary); width: 20px; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    box-shadow: 0px 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #1ebe57;
    box-shadow: 0px 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    width: 32px;
    height: 32px;
    color: white;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 3.5rem; }
    .hero-container, .perks-grid, .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text { display: flex; flex-direction: column; align-items: center; }
    .nav-menu { display: none; }
    .hero-media-wrapper { margin-top: 3rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-brand, .footer-links-group, .footer-contact { align-items: center; display: flex; flex-direction: column; }
}
