/* =========================================
   VARIÁVEIS E PALETA DE CORES (Premium Navy)
   ========================================= */
:root {
    --primary-bg: #050a12;
    --secondary-bg: #0d1520;
    --accent-color: #4169e1;
    --bronze-accent: #8e6d45;
    --text-white: #ffffff;
    --text-gray: #b0b8c4;
    --card-white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* CONFIGURAÇÕES GERAIS */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--primary-bg); color: var(--text-white); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR & MENU MOBILE */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; background: rgba(5, 10, 18, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
}
.logo { font-size: 1.5rem; font-weight: 800; color: #fff; text-decoration: none; }
.logo span { color: var(--accent-color); }
.nav-list { display: flex; list-style: none; gap: 25px; align-items: center; }
.nav-list li a { text-decoration: none; color: var(--text-white); font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
.nav-list li a:hover { color: var(--accent-color); }

.overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 999; backdrop-filter: blur(4px); }
.overlay.active { display: block; }

.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1100; }
.menu-toggle .bar { width: 30px; height: 3px; background-color: var(--text-white); transition: 0.3s; border-radius: 5px; }

@media (max-width: 992px) {
    .menu-toggle { display: flex; }
    .nav-list {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background-color: var(--secondary-bg); flex-direction: column;
        align-items: center; justify-content: center; transition: 0.5s ease-in-out;
        z-index: 1050; box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-list.active { right: 0; }
    .nav-list li { margin: 20px 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* HERO SECTION */
.hero {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
    align-items: center; text-align: center;
    background: linear-gradient(rgba(5, 10, 18, 0.7), rgba(5, 10, 18, 0.9)), 
                url('img/gabriell.jpeg') center/cover;
    padding: 100px 20px 40px;
}
.hero h1 { font-size: clamp(2.5rem, 8vw, 5rem); text-transform: uppercase; letter-spacing: 5px; margin-bottom: 15px; line-height: 1.1; }
.subtitle { color: var(--bronze-accent); font-style: italic; font-size: 1.2rem; margin-bottom: 35px; }

/* BOTÕES & SEÇÕES */
.btn-primary { background-color: var(--accent-color); color: white; padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 14px; transition: var(--transition); display: inline-block; }
.btn-primary:hover { transform: scale(1.05); filter: brightness(1.2); box-shadow: 0 10px 20px rgba(65, 105, 225, 0.3); }

.section { padding: 100px 0; }
.section-title { font-size: 2.2rem; text-align: center; margin-bottom: 60px; text-transform: uppercase; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--bronze-accent); margin: 15px auto; }

.method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.method-item { background: var(--secondary-bg); padding: 40px 30px; border-radius: 15px; border-top: 4px solid var(--bronze-accent); transition: var(--transition); }
.method-item:hover { transform: translateY(-10px); background: #131e2d; }
.method-item i { font-size: 2rem; color: var(--accent-color); margin-bottom: 20px; display: block; }

/* TABELA DE PREÇOS */
#planos { background-color: #f9f9f9; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 25px; }
.plan-card { background: var(--card-white); color: #333; padding: 40px 30px; border-radius: 20px; transition: var(--transition); display: flex; flex-direction: column; border: 1px solid #eee; }
.plan-card:hover { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.plan-card.featured { border: 3px solid var(--accent-color); transform: scale(1.05); }
.service-tag { display: inline-block; padding: 5px 15px; background: var(--primary-bg); color: #fff; border-radius: 20px; font-size: 0.7rem; text-transform: uppercase; margin-bottom: 15px; width: fit-content; }
.plan-card .price { font-size: 2rem; font-weight: 800; margin: 20px 0; color: var(--primary-bg); }
.plan-card ul { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.plan-card ul li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }

/* NÚMEROS & STATS */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.stat-card { background: var(--secondary-bg); padding: 40px; border-radius: 20px; text-align: center; transition: var(--transition); }
.stat-card i { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 15px; }
.stat-card .number { font-size: 3rem; font-weight: 700; color: var(--accent-color); }

/* CONTATO & SOCIAL BUTTONS */
.contact-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.contact-btn { text-decoration: none; padding: 20px 40px; border-radius: 50px; font-weight: 700; display: flex; align-items: center; gap: 15px; transition: var(--transition); }
.contact-btn:not(.whatsapp) { background: var(--text-white); color: var(--primary-bg); }
.contact-btn.whatsapp { background: #25d366; color: white; }

.social-btns-wrapper { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; padding: 20px; }
.social-btn { display: flex; align-items: center; gap: 10px; padding: 12px 25px; border-radius: 12px; text-decoration: none; font-weight: 600; color: white; transition: transform 0.3s ease, filter 0.3s ease; min-width: 160px; justify-content: center; }
.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.tiktok { background: #000000; border: 1px solid #ff0050; }
.youtube { background: #ff0000; }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(40px); transition: 1s all ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* MEDIA QUERIES MOBILE (TODAS QUE VOCÊ MANDOU) */
@media (max-width: 480px) {
    .btn-giant { font-size: 0.85rem; padding: 18px 25px; white-space: normal; width: 100%; line-height: 1.2; }
    .cta-wrapper { padding: 40px 15px; }
    .cta-wrapper h2 { font-size: 1.4rem; }
}

@media (max-width: 768px) {
    .social-btns-wrapper { flex-direction: column; align-items: center; }
    .social-btn { width: 100%; max-width: 280px; }
}

/* FOOTER */
footer { padding: 50px 0; text-align: center; background: var(--primary-bg); color: var(--text-gray); font-size: 0.8rem; border-top: 1px solid rgba(255, 255, 255, 0.05); }

