/* ========== VARIÁVEIS E RESET ========== */
:root {
    --bg-deep: #06061a;
    --bg-card: #0d0d2b;
    --gold: #f0c040;
    --gold-light: #ffe08a;
    --blue-accent: #3b6df0;
    --blue-light: #5b8af7;
    --text: #e8e8f0;
    --text-secondary: #b0b0c8;
    --success: #2ecc71;
    --success-glow: #3dfc8e;
    --error: #e74c3c;
    --error-glow: #ff5c4a;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(ellipse at 30% 15%, rgba(240, 192, 64, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 50%, rgba(59, 109, 240, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 40% 85%, rgba(240, 192, 64, 0.04) 0%, transparent 55%),
        var(--bg-deep);
    color: var(--text);
    min-height: 100vh;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    flex-direction: column;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== GRADIENT TEXT (adaptado) ========== */
.gradient-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== BOTÕES GERAIS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-accent), #5b5cf0);
    color: #fff;
    box-shadow: 0 6px 20px rgba(59, 109, 240, 0.3);
    border: none;
}
.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(59, 109, 240, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* ========== HEADER (ESTILO QUIZ) ========== */
.header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Logo com imagem */
.logo-img {
    padding: 0;
    margin: 0;
    max-height: 60px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #0d6efd;  /* ajustei para espessura visível */
    margin-right: 10px;
    display: block; /* para evitar espaços indesejados abaixo da imagem */
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-text strong {
    font-weight: 800;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-list a {
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}
.nav-list a:hover,
.nav-list a.active {
    color: #fff;
    background: rgba(255,255,255,0.06);
}
.btn-nav {
    background: var(--blue-accent);
    color: #fff !important;
    padding: 10px 22px !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 109, 240, 0.4);
    white-space: normal;        /* ✅ permite quebra de linha */
    word-break: break-word;     /* ✅ quebra palavras longas se necessário */
    max-width: 100%;            /* ✅ não ultrapassa o container */
    display: inline-block;      /* evita que o botão se comporte como flex e force largura */
}
.btn-nav-outline {
    border: 2px solid var(--gold);
    color: var(--gold) !important;
    font-weight: 600;
}
.btn-nav-destaque {
    background: var(--gold);
    color: #1a1a1a !important;
    font-weight: 700;
    padding: 10px 22px !important;
}
.btn-sair {
    color: var(--error) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: 0.3s;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 60px 0 0;
    margin-top: auto;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a {
    color: #aaa;
    transition: color 0.3s;
}
.footer-col ul li a:hover {
    color: var(--gold);
}
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: #ccc;
}
.social-icons a:hover {
    background: var(--blue-accent);
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* ========== SEÇÕES GERAIS ========== */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
}
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

/* ========== HERO ========== */
.hero {
    background: transparent;
    color: #fff;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}
.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}
.hero-content {
    flex: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-subtle);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: var(--gold-light);
}
.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 550px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-stats {
    display: flex;
    gap: 30px;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-image {
    flex: 1;
    position: relative;
    height: 400px;
}
.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    box-shadow: var(--shadow-card);
    animation: float 3s ease-in-out infinite;
    color: var(--text);
}
.floating-card.card-1 { top: 20px; left: 0; }
.floating-card.card-2 { top: 150px; right: 0; animation-delay: 1s; }
.floating-card.card-3 { bottom: 40px; left: 40px; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ========== MÉTODO ========== */
.metodo {
    padding: 80px 0;
}
.metodo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.metodo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s;
}
.metodo-card:hover {
    transform: translateY(-8px);
}
.metodo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue-accent), #5b5cf0);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}
.metodo-card h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    color: #fff;
}
.metodo-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========== DEPOIMENTOS ========== */
.depoimentos {
    padding: 80px 0;
}
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.depoimento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}
.estrelas {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.depoimento-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-secondary);
}
.depoente {
    display: flex;
    align-items: center;
    gap: 12px;
}
.depoente img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.depoente span {
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
}

/* ========== CTA FINAL ========== */
.cta-final {
    padding: 80px 0;
}
.cta-container {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
    max-width: 800px;        /* ⬅ define a largura máxima */
    margin: 0 auto;          /* ⬅ centraliza horizontalmente */
}
.cta-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}
.cta-container p {
    margin-bottom: 25px;
    color: var(--text-secondary);
}
.cta-container .btn {
    background: var(--gold);
    color: #1a1a1a;
    border: none;
    font-weight: 700;
    white-space: normal;        /* ✅ permite quebra de linha */
    word-break: break-word;     /* ✅ quebra palavras longas se necessário */
    max-width: 100%;            /* ✅ não ultrapassa o container */
    display: inline-block;      /* evita que o botão se comporte como flex e force largura */
}
.cta-container .btn:hover {
    background: #ffd866;
    box-shadow: 0 10px 30px rgba(240,192,64,0.3);
}

/* ========== LOJA (PLANOS) ========== */
.loja-hero {
    text-align: center;
    padding: 60px 20px;
}
.loja-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #fff;
}
.planos {
    padding: 60px 0;
}
.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}
.plano-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
}
.plano-card:hover {
    transform: translateY(-8px);
}
.plano-card.destaque {
    border: 2px solid var(--gold);
    transform: scale(1.04);
}
.plano-card.destaque:hover {
    transform: scale(1.04) translateY(-8px);
}
.plano-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
}
.plano-preco {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
}
.plano-preco span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
}
.plano-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 8px;
    background: rgba(255,255,255,0.08);
    color: var(--text-secondary);
}
.plano-badge.popular {
    background: var(--gold);
    color: #1a1a1a;
}
.plano-features {
    text-align: left;
    margin: 25px 0;
}
.plano-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}
.plano-features li i {
    margin-right: 8px;
}
.plano-features .fa-check {
    color: var(--success);
}
.plano-features .fa-times {
    color: #555;
}

.garantia{
    text-align: center;
    margin-bottom: 5%;
}

/* ========== AUTENTICAÇÃO (LOGIN/CADASTRO) ========== */
.auth-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    min-height: 80vh;
}
.auth-container {
    max-width: 480px;
    width: 100%;
}
.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}
.auth-header {
    text-align: center;
    margin-bottom: 30px;
}
.auth-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.auth-header h2 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}
.auth-header p {
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.input-icon {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon i {
    position: absolute;
    left: 16px;
    color: #555;
    z-index: 1;
}
.input-icon input,
.input-icon select {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}
.input-icon input:focus,
.input-icon select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(240,192,64,0.1);
}
.form-select {
    background: rgba(255,255,255,0.03);
    cursor: pointer;
}

.alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}
.alert-erro {
    background: rgba(231, 76, 60, 0.15);
    color: var(--error);
    border-left: 4px solid var(--error);
}
.alert-sucesso {
    background: rgba(46, 204, 113, 0.15);
    color: var(--success);
    border-left: 4px solid var(--success);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
}
.auth-footer a {
    color: var(--gold);
    font-weight: 600;
}

/* ========== QUIZ (PAINEL) ========== */
/* O painel de estudos herda os estilos do quiz original. 
   Vamos apenas envolvê-lo em um container. */
.quiz-wrapper {
    max-width: 780px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* Os estilos internos do quiz (header, placar, alternativas, etc.) já estão incluídos no CSS que você forneceu.
   Vamos copiá-los integralmente para este arquivo CSS. */
/* ⚠️ Devido ao limite de espaço, estou resumindo, mas você deve incluir TODOS os estilos do quiz original aqui. */
/* (Os estilos .quiz-header, .questao-card, .btn-alternativa, etc. devem ser copiados do seu código) */

/* ========== DASHBOARD ========== */
.dashboard-section {
    padding: 40px 0;
}
.dashboard-container {
    display: flex;
    gap: 30px;
}
.dash-sidebar {
    width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-card);
    text-align: center;
    height: fit-content;
}
.dash-perfil {
    margin-bottom: 20px;
}
.dash-perfil i {
    font-size: 4rem;
    color: var(--blue-accent);
}
.dash-perfil h3 {
    color: #fff;
    margin: 10px 0;
}
.plano-badge-small {
    font-size: 0.75rem;
    background: var(--gold);
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
}
.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dash-content {
    flex: 1;
}
.dash-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-card);
    margin-bottom: 25px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.stat-box {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
}
.stat-box.acerto {
    background: rgba(46, 204, 113, 0.1);
}
.stat-box.erro {
    background: rgba(231, 76, 60, 0.1);
}
.stat-valor {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}
.stat-rotulo {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
/* Card de estatísticas bloqueado (plano grátis) */
.dash-card--bloqueado {
    opacity: 0.7;
    position: relative;
}

.dash-card--bloqueado .stats-grid {
    filter: blur(1px);
    pointer-events: none;
    user-select: none;
}

.upgrade-message {
    text-align: center;
    margin-top: 15px;
    padding: 12px;
    background: rgba(240, 192, 64, 0.1);
    border: 1px solid var(--gold);
    border-radius: var(--radius-sm);
    color: var(--gold-light);
    font-weight: 500;
}

.upgrade-message i {
    margin-right: 6px;
}

.upgrade-message a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 700;
}
/* ========== QUEM SOMOS E CONTATO ========== */
.page-hero {
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}
.page-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
}
.quem-somos-content {
    padding: 60px 0;
}
.qs-grid {
    display: flex;
    gap: 40px;
}
.qs-texto {
    flex: 2;
}
.qs-texto h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    margin-bottom: 15px;
}
.qs-texto p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}
.valores-lista li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}
.valores-lista i {
    color: var(--success);
}
.qs-imagem {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}
.qs-card-flutuante {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}
.qs-card-flutuante i {
    font-size: 2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.contato-section {
    padding: 60px 0;
}
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}
.contato-info {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}
.contato-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}
.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 15px;
}
.form-input:focus {
    outline: none;
    border-color: var(--gold);
}
textarea.form-input {
    resize: vertical;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}
.info-item i {
    font-size: 1.4rem;
    color: var(--gold);
    margin-top: 3px;
    width: 30px;
    text-align: center;
}

/* ========== PAGAMENTO ========== */
.pagamento-section { padding: 60px 0; }
.pagamento-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
}
.plano-info { margin: 20px 0; }
.valor { font-size: 2.2rem; font-weight: 800; color: var(--gold); }
.qrcode img { width: 200px; height: 200px; border-radius: 10px; margin: 20px 0; }
.copia-cola { margin: 20px 0; }
.input-group { display: flex; gap: 10px; }
.input-group input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); padding: 12px; color: var(--text); font-family: monospace; }
.status-pagamento { margin-top: 30px; }

/* ========== RESPONSIVO ========== */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
    }
    .hero-image {
        width: 100%;
        height: 300px;
    }
    .qs-grid {
        flex-direction: column;
    }
    .contato-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-container {
        flex-direction: column;
    }
    .dash-sidebar {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-card);
        gap: 20px;
    }
    .nav-list.active {
        display: flex;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero h1 {
        font-size: 2rem;
    }
}
@media (max-width: 576px) {
    .cta-container {
        padding: 30px 20px;      /* reduz padding lateral */
        margin: 5% 2%;           /* margens menores */
    }
    .cta-container h2 {
        font-size: 1.5rem;
    }
    .cta-container .btn {
        padding: 14px 20px;      /* padding menor */
        font-size: 0.9rem;       /* fonte ligeiramente menor */
    }
}