:root {
    --bg-main: #111214;
    --bg-secondary: #1A1C1F;
    --bg-elevated: #202328;
    --border-soft: #2B3036;

    --gold: #C79C42;
    --gold-soft: #D8B767;
    --text-main: #F5F5F7;
    --text-muted: #A4A9B3;
    --accent-green: #35C66B;
    --accent-red: #E64A4A;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at top, #1E2024 0, #111214 38%, #050506 100%);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ========== LAYOUT BASE ========== */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER / NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(22px);
    background: linear-gradient(to bottom, rgba(5,5,6,0.96), rgba(17,18,20,0.92));
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 0, #FFE3A3, #C79C42 55%, #886525 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.6),
                0 10px 20px rgba(0,0,0,0.75);
    flex-shrink: 0;
}

.brand-logo img {
    width: 72%;
    height: 72%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title {
    font-size: 0.98rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
}

.brand-subtitle {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .18em;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all .18s ease-out;
    background: none;
    color: var(--text-main);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255,255,255,0.02);
}

.btn-outline:hover {
    border-color: rgba(255,255,255,0.38);
    background: rgba(255,255,255,0.06);
}

.btn-primary {
    background: linear-gradient(135deg, #F1D18B, #C79C42 55%, #9D7427 100%);
    color: #090807;
    box-shadow: 0 14px 30px rgba(0,0,0,0.65);
}

.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.8);
}

/* Botão hambúrguer */
.menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid #ffffff29;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255,255,255,0.02);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #F5F5F5;
    transition: transform .18s ease-out, opacity .18s ease-out;
}

.menu-toggle::before {
    transform: translateY(-5px);
}
.menu-toggle::after {
    transform: translateY(5px);
}

.menu-toggle.open span {
    opacity: 0;
}

.menu-toggle.open::before {
    transform: translateY(0) rotate(45deg);
}

.menu-toggle.open::after {
    transform: translateY(0) rotate(-45deg);
}

/* ========== MOBILE MENU LATERAL ========== */

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease-out;
    z-index: 40;
}

.mobile-menu-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    inset: 0 auto 0 0;
    width: 82%;
    max-width: 360px;
    background: #111217;
    box-shadow: 6px 0 30px rgba(0,0,0,0.85);
    transform: translateX(-100%);
    transition: transform .2s ease-out;
    z-index: 45;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 16px 18px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mobile-menu-title {
    font-size: 0.8rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.mobile-menu-user {
    font-size: 0.96rem;
    font-weight: 500;
}

.mobile-menu-body {
    flex: 1;
    padding: 6px 0 18px;
    overflow-y: auto;
}

.mobile-menu-group-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--text-muted);
    padding: 8px 18px 4px;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    gap: 10px;
    font-size: 0.86rem;
    color: #E7E9F0;
    cursor: pointer;
    transition: background .15s ease-out;
}

.mobile-menu-item:hover {
    background: rgba(255,255,255,0.03);
}

.mobile-menu-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.11);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mobile-menu-chevron {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.badge-premium {
    border-radius: 999px;
    padding: 2px 10px;
    font-size: 0.72rem;
    font-weight: 500;
    background: linear-gradient(135deg,#F1D18B,#C79C42 60%,#A57929 100%);
    color: #141109;
}

.mobile-menu-footer {
    padding: 10px 18px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* ========== HERO / CONTEÚDO ========== */
main {
    flex: 1;
}

.hero {
    padding-top: 96px;
    padding-bottom: 72px;
}

@media (min-width: 900px) {
    .hero {
        padding-top: 112px;
        padding-bottom: 96px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr);
    gap: 34px;
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        align-items: center;
    }
}

.hero-kicker {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--gold-soft);
    margin-bottom: 14px;
}

.hero-title {
    font-size: 2.1rem;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 14px;
}

@media (min-width: 900px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-highlight {
    background: linear-gradient(135deg,#FFE9AA,#C79C42 55%,#966E26 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 0.96rem;
    color: var(--text-muted);
    max-width: 460px;
    margin-bottom: 22px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.hero-note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 12px;
    max-width: 480px;
    margin-top: 22px;
}

.metric-card {
    background: radial-gradient(circle at top, #262933 0, #15161A 50%, #111214 100%);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    padding: 10px 10px;
}

.metric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.metric-value {
    font-size: 0.92rem;
    font-weight: 600;
}

.metric-tag {
    font-size: 0.74rem;
    margin-top: 4px;
}

.metric-tag.positive {
    color: var(--accent-green);
}

.metric-tag.negative {
    color: var(--accent-red);
}

/* ===== HERO MASCOTE ===== */
.hero-mascot {
    max-width: 420px;
    margin: 0 auto;
    background: radial-gradient(circle at 0 0,#343849 0,#17181E 40%,#101116 100%);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 20px 18px 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.85);
    text-align: center;
}

.hero-mascot-img {
    max-width: 220px;
    margin: 0 auto 12px;
}

.hero-mascot-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.hero-mascot-sub {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--gold-soft);
    margin-bottom: 10px;
}

.hero-mascot-text {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.hero-mascot-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ========== SEÇÕES SECUNDÁRIAS ========== */
.section {
    padding: 40px 0;
}

@media (min-width: 900px) {
    .section {
        padding: 54px 0;
    }
}

.section-header {
    margin-bottom: 26px;
    max-width: 640px;
}

.section-kicker {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--gold-soft);
    margin-bottom: 8px;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: 16px;
}

@media (min-width: 800px) {
    .features-grid {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
}

.feature-card {
    background: var(--bg-secondary);
    border-radius: 14px;
    border: 1px solid var(--border-soft);
    padding: 14px 14px 16px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--gold-soft);
}

.feature-title {
    font-size: 0.96rem;
    margin-bottom: 6px;
}

.feature-text {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.cta-section {
    padding: 40px 0 60px;
}

.cta-box {
    background: radial-gradient(circle at top,#343847 0,#17181E 40%,#111214 100%);
    border-radius: 18px;
    border: 1px solid rgba(199,156,66,0.5);
    padding: 22px 20px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0,0,0,0.85);
}

.cta-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.cta-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

/* ==== PLANOS ==== */
.plans-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 28px;
}

.plans-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: 16px;
}

@media (min-width: 800px) {
    .plans-grid {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
}

.plan-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    padding: 18px 16px 20px;
    display: flex;
    flex-direction: column;
}

.plan-card.highlight {
    border-color: rgba(199,156,66,0.9);
    box-shadow: 0 14px 38px rgba(0,0,0,0.9);
    background: radial-gradient(circle at top,#343847 0,#17181E 40%,#111214 100%);
}

.plan-name {
    font-size: 0.96rem;
    font-weight: 600;
}

.plan-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--gold-soft);
}

.plan-price {
    font-size: 1.4rem;
    font-weight: 600;
}

.plan-price span {
    font-size: 0.86rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* lista de bullets dentro do card de plano */
.plan-desc-list {
    flex: 1;
    margin-top: 4px;
    padding-left: 18px;
    font-size: 0.8rem;
    line-height: 1.5;
}

/* área do botão do plano */
.plan-cta {
    margin-top: 16px;
}

.plan-cta .btn {
    width: 100%;
    justify-content: center;
}

@media (min-width: 800px) {
    .plan-cta {
        margin-top: auto; /* empurra o botão para o rodapé do card em desktop */
    }
}

/* ========== FOOTER ========== */
footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0 24px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 700px) {
    .footer-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a {
    color: var(--text-muted);
}
.footer-links a:hover {
    color: var(--gold-soft);
}

/* ===== RESPONSIVIDADE NAV ===== */
@media (max-width: 799px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }
}

@media (min-width: 800px) {
    .mobile-menu-backdrop {
        display: none;
    }

    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        gap: 18px;
        font-size: 0.82rem;
        color: var(--text-muted);
        align-items: center;
    }

    .nav-links a:hover {
        color: #FFFFFF;
    }
}
