/* =========================================================
   VARIÁVEIS E RESET
========================================================= */
:root {
    --primary: #E1C254; /* Dourado Premium */
    --primary-hover: #c4a742;
    --bg-dark: #0a0f16;
    --bg-card: rgba(25, 30, 40, 0.6);
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(225, 194, 84, 0.15);
    
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Cinzel', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================================
   EFEITOS DE FUNDO (ORBS)
========================================================= */
#lp-elite {
    position: relative;
    overflow: hidden;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    animation: float 10s infinite ease-in-out alternate;
}

.orb1 {
    width: 400px;
    height: 400px;
    background: rgba(225, 194, 84, 0.15);
    top: -100px;
    left: -100px;
}

.orb2 {
    width: 300px;
    height: 300px;
    background: rgba(84, 150, 225, 0.1);
    bottom: 20%;
    right: -50px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* =========================================================
   HEADER & NAVEGAÇÃO
========================================================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 22, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 40px;
    object-fit: contain;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.menu a:hover {
    color: var(--primary);
}

.btn-whats {
    background: var(--primary);
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-whats:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 194, 84, 0.3);
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero {
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-main {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(225, 194, 84, 0.4);
}

.btn-install {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-install:hover {
    background: rgba(225, 194, 84, 0.1);
}

/* Glass Card Hero */
.hero-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* =========================================================
   SEÇÕES GERAIS
========================================================= */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
}

.section-title h2 span {
    color: var(--primary);
}

.section-title p {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 1.1rem;
}

/* =========================================================
   BENEFÍCIOS (CARDS)
========================================================= */
.benefits {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111823 100%);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-float {
    width: 70px;
    height: 70px;
    background: rgba(225, 194, 84, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card p {
    color: var(--text-muted);
}

/* =========================================================
   PLANOS DE STREAMING
========================================================= */
.plans {
    padding: 100px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.plan {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.plan:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(225, 194, 84, 0.15);
}

.plan h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

.plan ul {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.plan ul li {
    margin-bottom: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan ul li i {
    color: var(--primary);
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: rgba(225, 194, 84, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.plan:hover .plan-btn {
    background: var(--primary);
    color: #000;
}

/* =========================================================
   FAQ (ACCORDION)
========================================================= */
.faq {
    padding: 80px 0 120px;
    background: #0d1219;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 15px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer p {
    color: var(--text-muted);
}

/* =========================================================
   FOOTER
========================================================= */
footer {
    background: #05080c;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 10px;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */
.whats-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
}

.whats-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================================
   RESPONSIVIDADE (MOBILE)
========================================================= */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    .menu {
        display: none; /* Em um projeto real, aqui entra um menu hambúrguer */
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .stats {
        gap: 15px;
    }
    
    .stat h2 {
        font-size: 1.8rem;
    }
}