/* Variáveis */
:root {
    --gold: #ffcc00;
    --gold-dark: #cca300;
    --dark-bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background-color: var(--dark-bg); 
    color: white; 
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll Suave */
html { scroll-behavior: smooth; }

/* WhatsApp Flutuante */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    z-index: 9999;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: 0.3s;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* Header */
header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.5s;
}
header.scrolled {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
}
.logo { font-size: 26px; font-weight: 900; letter-spacing: -1px; }
.logo span { color: var(--gold); }

nav a { color: white; text-decoration: none; margin-left: 25px; font-size: 14px; font-weight: 600; }
.cta-nav { background: var(--gold); color: black !important; padding: 8px 20px; border-radius: 5px; }

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.pexels.com/photos/7234275/pexels-photo-7234275.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.overlay {
    position: absolute;
    top:0; left:0; width: 100%; height: 100%;
    background: linear-gradient(to top, var(--dark-bg), rgba(0,0,0,0.4));
}
.hero-content { position: relative; z-index: 10; max-width: 800px; padding: 0 20px; }
.hero-content h1 { font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin: 20px 0; }
.hero-content p { font-size: 1.2rem; color: #ccc; margin-bottom: 40px; }

.btn-gold { background: var(--gold); color: black; padding: 18px 35px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 1.1rem; transition: 0.3s; }
.btn-outline { border: 2px solid white; color: white; padding: 16px 35px; border-radius: 50px; text-decoration: none; font-weight: bold; margin-left: 15px; transition: 0.3s; }
.btn-gold:hover { background: white; transform: translateY(-3px); }

/* Features Section */
.features { padding: 100px 5%; background: #0a0a0a; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.f-card { 
    background: var(--card-bg); 
    padding: 40px; 
    border-radius: 20px; 
    text-align: center; 
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s;
}
.f-card:hover { border-color: var(--gold); transform: translateY(-10px); background: rgba(255,255,255,0.08); }
.f-card i { font-size: 40px; color: var(--gold); margin-bottom: 20px; }

/* Content Blocks */
.showcase { padding: 100px 5%; }
.content-block { display: flex; align-items: center; gap: 50px; margin-bottom: 100px; }
.content-block.reverse { flex-direction: row-reverse; }
.content-block .text { flex: 1; }
.content-block .image { flex: 1; }
.content-block .image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.content-block h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--gold); }
.content-block ul { list-style: none; margin-top: 20px; }
.content-block ul li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.content-block ul li i { color: var(--gold); }

/* Pricing */
.price-tables { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 50px; }
.price-card { 
    background: var(--card-bg); 
    padding: 60px 40px; 
    border-radius: 30px; 
    width: 380px; 
    text-align: center; 
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}
.price-card.popular { 
    border: 2px solid var(--gold); 
    transform: scale(1.05); 
    background: rgba(255, 204, 0, 0.03);
}
.ribbon { 
    position: absolute; top: 20px; right: -10px; 
    background: var(--gold); color: black; 
    padding: 5px 20px; font-weight: bold; font-size: 12px;
    border-radius: 5px;
}
.price { font-size: 4rem; font-weight: 900; margin: 30px 0; }
.price span { font-size: 1.5rem; }
.save { color: #25d366; font-weight: bold; margin-bottom: 20px; }
.plan-list { text-align: left; margin-bottom: 40px; }
.plan-list li { margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; }

.btn-card { 
    display: block; padding: 20px; border-radius: 10px; 
    background: #222; color: white; text-decoration: none; font-weight: bold; transition: 0.3s;
}
.btn-card.gold { background: var(--gold); color: black; }

footer { padding: 60px 5%; text-align: center; border-top: 1px solid #111; color: #555; }
.socials { margin-top: 20px; font-size: 20px; display: flex; justify-content: center; gap: 20px; }

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-btns { display: flex; flex-direction: column; gap: 15px; }
    .btn-outline { margin-left: 0; }
    .content-block { flex-direction: column !important; text-align: center; }
}

/* Estilo do botão hamburguer (escondido no PC) */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gold);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Mostra o botão no celular */
        z-index: 1001;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%; /* Esconde o menu para a direita */
        width: 70%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s;
        box-shadow: -10px 0 20px rgba(0,0,0,0.5);
    }

    /* Quando o menu estiver ativo */
    nav.active {
        right: 0;
    }

    nav a {
        margin: 20px 0 !important;
        font-size: 18px !important;
        width: 80%;
        text-align: center;
    }

    .cta-nav {
        background: var(--gold);
        width: 80%;
    }
}