/* Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --primary-color: #7000FF;
    --secondary-color: #00D1FF;
    --bg-dark: #0A0A0A;
    --card-bg: #151515;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Menu de Navegação */
header {
    padding: 20px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    z-index: 9999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: visible !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible !important;
}

.logo { font-size: 1.6rem; font-weight: 900; }
.logo span { color: var(--primary-color); }

nav ul { display: flex; list-style: none; gap: 30px; align-items: center; overflow: visible; }
nav a { text-decoration: none; color: var(--text-white); transition: 0.3s; }
nav a:hover { color: var(--primary-color); }

.btn-nav { background: var(--primary-color); padding: 8px 20px; border-radius: 8px; }

/* SEÇÃO HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 8% 60px 8%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1300px;
    width: 100%;
    flex-wrap: wrap; /* Garante que os elementos se ajustem em telas menores */
}

.hero-text { 
    flex: 1.2; 
    min-width: 300px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-text h1 span {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-banner {
    flex: 1.5;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-banner img {
    width: 100%;
    max-width: 750px; /* Aumentado para maior impacto visual */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(112, 0, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
    object-fit: contain;
}

.cta-principal {
    display: inline-block;
    padding: 18px 35px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.3s;
    text-align: center;
}

/* PREÇOS */
.pricing { padding: 100px 8%; background: #0d0d0d; text-align: center; }
.grid-precos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
}
.card-preco {
    background: #151515;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.price { font-size: 3rem; font-weight: 900; color: var(--primary-color); margin: 20px 0; }
.btn-comprar { display: block; padding: 12px; border: 2px solid var(--primary-color); color: white; text-decoration: none; border-radius: 8px; font-weight: bold; }
.destaque { border: 2px solid var(--primary-color); position: relative; transform: scale(1.05); z-index: 1; }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary-color); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }

/* PORTFÓLIO */
.portfolio { padding: 60px 8%; text-align: center; }
.grid-portfolio {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    margin: 40px auto 0 auto;
    max-width: 900px; 
}
.card { background: var(--card-bg); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.05); }
.card img { width: 100%; height: 280px; object-fit: cover; cursor: zoom-in; }
.card-info { padding: 15px; text-align: left; }
.card-info h3 { font-size: 1.1rem; }
.card-info p { color: var(--primary-color); font-size: 0.85rem; font-weight: bold; }

/* FAQ */
.faq-section { padding: 80px 8%; text-align: center; }
.faq-container { max-width: 800px; margin: 40px auto 0; text-align: left; }
.faq-item { background: var(--card-bg); margin-bottom: 15px; border-radius: 12px; overflow: hidden; }
.faq-question { width: 100%; padding: 20px; background: none; border: none; color: white; display: flex; justify-content: space-between; cursor: pointer; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.3s; }

/* AVALIAÇÕES */
.testimonials { padding: 80px 8%; text-align: center; background: #0D0D0D; }
.grid-reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.card-review { background: #151515; padding: 25px; border-radius: 15px; text-align: left; border: 1px solid rgba(255, 255, 255, 0.05); }

/* CONTA E DROPDOWN */
#netlify-identity-widget { z-index: 100000 !important; }
.account-wrapper { position: relative; overflow: visible; }
.btn-account {
    display: flex; align-items: center; justify-content: center;
    width: 45px; height: 45px; background: rgba(112, 0, 255, 0.1);
    color: #7000FF; border: 2px solid #7000FF; border-radius: 50%;
    font-size: 1.5rem; cursor: pointer; transition: 0.3s;
}

.account-dropdown {
    position: absolute; top: 60px; right: 0;
    background: #151515; border: 2px solid #7000FF; border-radius: 12px;
    width: 200px; display: none; flex-direction: column;
    z-index: 10001; box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.account-dropdown.active { display: flex !important; }
.dropdown-header { padding: 15px; background: rgba(112, 0, 255, 0.1); text-align: center; }
.account-dropdown a { padding: 12px 20px; color: #bbb; text-decoration: none; display: flex; gap: 10px; }
.account-dropdown a:hover { background: rgba(112, 0, 255, 0.1); color: white; }

/* RESPONSIVIDADE CELULAR */
@media (max-width: 768px) {
    header, nav { overflow: visible !important; }
    
    nav { 
        flex-direction: column; 
        padding: 15px 5%; 
    }
    
    nav ul { 
        gap: 10px; 
        margin-top: 10px;
    }

    .hero {
        padding-top: 160px; /* Espaço para o menu fixo no mobile */
        text-align: center;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-banner {
        order: -1; /* Coloca o banner acima do texto no mobile */
        margin-bottom: 30px;
    }

    .hero-banner img {
        max-width: 100%;
        width: 100%;
    }

    .desktop-only { display: none; }
    .grid-portfolio { grid-template-columns: 1fr; }
    .btn-nav { padding: 8px 12px !important; font-size: 0.85rem !important; }
    .account-dropdown { top: 55px; right: -10px; }
}