/* ============================================
   MELHOR.DELIVERY - CSS MODERNO
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
    --bg: #ffffff;
    --bg2: #fafafa;
    --bg3: #f5f5f5;
    --card: #ffffff;
    --borda: #eaeaea;
    --texto: #1a1a1a;
    --texto2: #4a4a4a;
    --texto3: #8a8a8a;
    --primaria: #ea1d2c;
    --primaria2: #c4161f;
    --primaria-light: rgba(234, 29, 44, 0.08);
    --verde: #00a868;
    --amarelo: #ffb800;
    --raio: 16px;
    --raio-sm: 10px;
    --sombra: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
    --sombra2: 0 8px 30px rgba(0,0,0,0.08);
    --sombra3: 0 20px 60px rgba(0,0,0,0.12);
    --gradiente: linear-gradient(135deg, #ea1d2c 0%, #ff6b6b 100%);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--texto);
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

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

/* ============================================
   BOTÕES
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn:hover::before { left: 100%; }
.btn-primario { 
    background: var(--gradiente); 
    color: #fff; 
    box-shadow: 0 4px 15px rgba(234, 29, 44, 0.3);
}
.btn-primario:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(234, 29, 44, 0.4);
}
.btn-secundario { 
    background: #fff; 
    color: var(--texto); 
    border: 2px solid var(--borda);
}
.btn-secundario:hover { 
    border-color: var(--primaria); 
    color: var(--primaria);
    transform: translateY(-2px);
}
.btn-verde { background: var(--verde); color: #fff; }
.btn-perigo { 
    background: var(--primaria); 
    color: #fff; 
    box-shadow: 0 4px 15px rgba(234, 29, 44, 0.3);
}
.btn-perigo:hover { 
    background: var(--primaria2);
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(234, 29, 44, 0.4);
}
.btn-pequeno { padding: 10px 20px; font-size: 14px; }
.btn-grande { padding: 18px 40px; font-size: 17px; }
.btn-desabilitado { 
    opacity: 0.5; 
    cursor: not-allowed; 
    pointer-events: none;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--card);
    border-radius: var(--raio);
    padding: 28px;
    box-shadow: var(--sombra);
    border: 1px solid var(--borda);
    transition: all 0.3s ease;
}
.card:hover {
    box-shadow: var(--sombra2);
}

/* ============================================
   INPUTS
   ============================================ */
.campo { margin-bottom: 24px; }
.campo label { 
    display: block; 
    font-weight: 600; 
    margin-bottom: 10px; 
    color: var(--texto); 
    font-size: 14px;
}
.campo input, .campo select, .campo textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--borda);
    border-radius: var(--raio-sm);
    font-size: 15px;
    background: var(--bg);
    color: var(--texto);
    transition: all 0.3s ease;
    font-family: inherit;
}
.campo input:focus, .campo select:focus, .campo textarea:focus {
    outline: none;
    border-color: var(--primaria);
    box-shadow: 0 0 0 4px var(--primaria-light);
}
.campo textarea { resize: vertical; min-height: 120px; }

/* ============================================
   TABELAS
   ============================================ */
.tabela { width: 100%; border-collapse: collapse; }
.tabela th, .tabela td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--borda); }
.tabela th { color: var(--texto3); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.tabela tr:hover { background: var(--bg2); }

/* ============================================
   GRID
   ============================================ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ============================================
   HEADER MODERNO
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo { 
    font-size: 22px; 
    font-weight: 800; 
    color: var(--primaria); 
    display: flex; 
    align-items: center; 
    gap: 10px;
    letter-spacing: -0.5px;
}
.logo img { height: 38px; }
.nav { display: flex; gap: 36px; }
.nav a { 
    color: var(--texto2); 
    font-weight: 500; 
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primaria);
    transition: width 0.3s ease;
}
.nav a:hover { color: var(--primaria); }
.nav a:hover::after { width: 100%; }
.header-acoes { display: flex; gap: 12px; }

@media (max-width: 768px) {
    .nav { display: none; }
    .header-acoes .btn:first-child { display: none; }
}

/* ============================================
   HERO MODERNO
   ============================================ */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #fff 0%, var(--bg2) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primaria-light) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-video-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--sombra3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}
.hero-video-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}
.hero-video {
    width: 100%;
    height: auto;
    display: block;
}
.hero-conteudo { max-width: 560px; }
.hero h1 { 
    font-size: 52px; 
    font-weight: 800; 
    line-height: 1.1; 
    margin-bottom: 24px; 
    color: var(--texto);
    letter-spacing: -2px;
}
.hero h1 span { 
    background: var(--gradiente);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p { 
    font-size: 18px; 
    color: var(--texto2); 
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-acoes { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--borda);
}
.hero-stat h4 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primaria);
    margin-bottom: 4px;
}
.hero-stat p {
    font-size: 14px;
    color: var(--texto3);
    margin: 0;
}

@media (max-width: 1024px) {
    .hero { padding: 120px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-conteudo { max-width: 100%; }
    .hero-acoes { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero h1 { font-size: 40px; }
    .hero-video-container { transform: none; max-width: 600px; margin: 0 auto; }
}

/* ============================================
   SEÇÕES
   ============================================ */
.secao { padding: 100px 0; }
.secao-titulo { 
    text-align: center; 
    margin-bottom: 60px;
}
.secao-titulo .tag {
    display: inline-block;
    background: var(--primaria-light);
    color: var(--primaria);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.secao-titulo h2 { 
    font-size: 42px; 
    font-weight: 800; 
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.secao-titulo p { color: var(--texto2); font-size: 18px; max-width: 600px; margin: 0 auto; }
.secao-cinza { background: var(--bg2); }

/* ============================================
   FEATURES MODERNAS
   ============================================ */
.feature-card {
    background: var(--card);
    padding: 36px;
    border-radius: var(--raio);
    text-align: left;
    box-shadow: var(--sombra);
    border: 1px solid var(--borda);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradiente);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--sombra2);
}
.feature-icone {
    width: 64px;
    height: 64px;
    background: var(--primaria-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}
.feature-card h3 { 
    font-size: 20px; 
    font-weight: 700;
    margin-bottom: 12px;
}
.feature-card p { color: var(--texto2); font-size: 15px; line-height: 1.7; }

/* ============================================
   PASSOS MODERNOS
   ============================================ */
.passos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.passos-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 15%;
    width: 70%;
    height: 3px;
    background: var(--borda);
    z-index: 0;
}
.passo {
    text-align: center;
    position: relative;
    z-index: 1;
}
.passo-numero {
    width: 96px;
    height: 96px;
    background: var(--gradiente);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 28px;
    box-shadow: 0 10px 40px rgba(234, 29, 44, 0.3);
}
.passo h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--texto);
}
.passo p {
    color: var(--texto2);
    font-size: 15px;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .passos-grid { grid-template-columns: 1fr; gap: 40px; }
    .passos-grid::before { display: none; }
}

/* ============================================
   TIMELINE MODERNA (Como funciona)
   ============================================ */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primaria), var(--primaria2));
    border-radius: 4px;
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 50px);
}
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 50px);
}
.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradiente);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(234, 29, 44, 0.35);
    z-index: 2;
    border: 4px solid #fff;
}
.timeline-content {
    background: var(--card);
    padding: 32px;
    border-radius: var(--raio);
    box-shadow: var(--sombra2);
    border: 1px solid var(--borda);
    transition: all 0.4s ease;
    position: relative;
}
.timeline-content::before {
    content: '';
    position: absolute;
    top: 24px;
    width: 20px;
    height: 20px;
    background: var(--card);
    border: 1px solid var(--borda);
    transform: rotate(45deg);
}
.timeline-item:nth-child(odd) .timeline-content::before {
    right: -11px;
    border-left: none;
    border-bottom: none;
}
.timeline-item:nth-child(even) .timeline-content::before {
    left: -11px;
    border-right: none;
    border-top: none;
}
.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra3);
    border-color: var(--primaria);
}
.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--texto);
}
.timeline-content p {
    color: var(--texto2);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 80px;
        padding-right: 0;
    }
    .timeline-marker {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .timeline-content::before {
        left: -11px !important;
        right: auto !important;
        border-right: none !important;
        border-top: none !important;
        border-left: 1px solid var(--borda) !important;
        border-bottom: 1px solid var(--borda) !important;
    }
}

/* ============================================
   PLANOS MODERNOS
   ============================================ */
.planos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}
.plano-card {
    background: var(--card);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--sombra);
    border: 2px solid var(--borda);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.plano-card:hover { 
    border-color: var(--primaria); 
    transform: translateY(-8px);
    box-shadow: var(--sombra2);
}
.plano-card.destaque { 
    border-color: var(--primaria); 
    background: linear-gradient(180deg, #fff5f5 0%, #fff 100%);
    transform: scale(1.05);
    z-index: 2;
}
.plano-card.destaque .plano-nome,
.plano-card.destaque .plano-preco,
.plano-card.destaque .plano-desc,
.plano-card.destaque .plano-lista li {
    color: var(--texto);
}
.plano-card.destaque .btn-primario,
.plano-card.destaque a.btn-primario,
.destaque .btn.btn-primario {
    background: #ffffff !important;
    color: #ea1d2c !important;
    border: 2px solid #ffffff !important;
}
.plano-card.destaque .btn-primario:hover,
.plano-card.destaque a.btn-primario:hover {
    background: transparent !important;
    color: #ffffff !important;
}
.plano-card.destaque:hover {
    transform: scale(1.05) translateY(-8px);
}
.plano-badge,
span.plano-badge,
.plano-card .plano-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #ea1d2c !important;
    color: #ffffff !important;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(234, 29, 44, 0.4);
}
.plano-conteudo { flex: 1; display: flex; flex-direction: column; }
.plano-card .btn { margin-top: auto; }
.plano-nome { 
    font-size: 18px; 
    font-weight: 700; 
    margin-bottom: 8px;
    color: var(--texto2);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.plano-preco { 
    font-size: 48px; 
    font-weight: 800; 
    color: var(--texto);
    margin-bottom: 8px;
    letter-spacing: -2px;
}
.plano-preco span { font-size: 16px; color: var(--texto3); font-weight: 500; }
.plano-lista { 
    list-style: none; 
    text-align: left; 
    margin: 28px 0;
    padding: 0;
}
.plano-lista li { 
    padding: 6px 0; 
    color: var(--texto2); 
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (max-width: 1024px) {
    .planos-grid { grid-template-columns: repeat(2, 1fr); }
    .plano-card.destaque { transform: none; }
    .plano-card.destaque:hover { transform: translateY(-8px); }
}
@media (max-width: 640px) {
    .planos-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ============================================
   FAQ MODERNO
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--card);
    border: 1px solid var(--borda);
    border-radius: var(--raio);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    box-shadow: var(--sombra);
    border-color: var(--primaria);
}
.faq-item summary {
    padding: 24px 28px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 28px;
    color: var(--primaria);
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item[open] summary {
    background: var(--bg2);
}
.faq-item p {
    padding: 0 28px 24px;
    color: var(--texto2);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.blog-card {
    background: var(--card);
    border-radius: var(--raio);
    overflow: hidden;
    box-shadow: var(--sombra);
    border: 1px solid var(--borda);
    transition: all 0.4s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra2);
}
.blog-card-imagem {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-imagem {
    transform: scale(1.05);
}
.blog-card-imagem-container {
    overflow: hidden;
}
.blog-card-conteudo {
    padding: 24px;
}
.blog-card-categoria {
    display: inline-block;
    background: var(--primaria-light);
    color: var(--primaria);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-card h3:hover {
    color: var(--primaria);
}
.blog-card p {
    color: var(--texto2);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--texto3);
    font-size: 13px;
}
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SEÇÃO FACILIDADE DE USO
   ============================================ */
.secao-facilidade {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}
.facilidade-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.facilidade-card {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}
.facilidade-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.facilidade-icone {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}
.facilidade-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 12px;
}
.facilidade-card > p {
    color: var(--texto2);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.facilidade-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.facilidade-lista li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--texto2);
    border-bottom: 1px solid #f1f5f9;
}
.facilidade-lista li:last-child {
    border-bottom: none;
}
.facilidade-cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px dashed #cbd5e1;
}
.facilidade-cta p {
    font-size: 18px;
    color: var(--texto2);
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .facilidade-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .facilidade-grid { grid-template-columns: 1fr; }
    .facilidade-card { padding: 24px 20px; }
}

/* ============================================
   CTA FINAL - CONVERSÃO
   ============================================ */
.cta-final {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.cta-final-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.cta-dor {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}
.cta-emoji {
    font-size: 28px;
}
.cta-dor p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin: 0;
}
.cta-solucao {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-solucao h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.2;
}
.cta-solucao .destaque {
    color: var(--primaria);
}
.cta-solucao .destaque-vermelho {
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.7;
}
.cta-subtitulo {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin: 16px 0 32px 0;
}
.cta-beneficios {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.cta-beneficios span {
    color: #22c55e;
    font-size: 15px;
    font-weight: 600;
}
.btn-cta-final {
    display: inline-block;
    background: linear-gradient(135deg, var(--primaria) 0%, #f59e0b 100%);
    color: #fff;
    padding: 20px 48px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}
.btn-cta-final:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5);
}
.btn-cta-final.pulse {
    animation: pulse-cta 2s infinite;
}
@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 8px 32px rgba(249, 115, 22, 0.4); }
    50% { box-shadow: 0 8px 48px rgba(249, 115, 22, 0.6), 0 0 0 8px rgba(249, 115, 22, 0.1); }
}
.cta-garantia-final {
    margin-top: 24px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.garantia-icon {
    font-size: 16px;
}
@media (max-width: 768px) {
    .cta-final-content { flex-direction: column; gap: 16px; align-items: center; }
    .cta-dor { width: 100%; max-width: 320px; justify-content: center; }
    .cta-solucao h2 { font-size: 32px; }
    .btn-cta-final { padding: 18px 32px; font-size: 18px; }
    .cta-beneficios { gap: 16px; }
}

/* ============================================
   CTA MODERNO
   ============================================ */
.cta {
    background: var(--gradiente);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -1px;
}
.cta p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 32px;
    position: relative;
}
.cta .btn {
    position: relative;
    background: #fff;
    color: var(--primaria);
}
.cta .btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ============================================
   FOOTER MODERNO
   ============================================ */
.footer {
    background: var(--texto);
    color: #fff;
    padding: 80px 0 40px;
}
.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr repeat(3, 1fr); 
    gap: 60px; 
    margin-bottom: 60px; 
}
.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    display: block;
}
.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.footer h4 { 
    margin-bottom: 24px; 
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer a { 
    color: rgba(255,255,255,0.8); 
    transition: all 0.2s;
    font-size: 15px;
}
.footer a:hover { color: #fff; }
.footer-copy { 
    text-align: center; 
    padding-top: 40px; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}
.badge-verde { background: rgba(0, 168, 104, 0.1); color: var(--verde); }
.badge-vermelho { background: var(--primaria-light); color: var(--primaria); }
.badge-amarelo { background: rgba(255, 184, 0, 0.15); color: #c99200; }

/* ============================================
   PAINEL LATERAL
   ============================================ */
.painel-layout { display: flex; min-height: 100vh; }
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-right: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s ease, width 0.3s ease;
    pointer-events: auto;
}
.sidebar.colapsado {
    width: 70px;
}
.sidebar.colapsado .sidebar-logo img {
    height: 40px !important;
}
.sidebar.colapsado .sidebar-menu a span,
.sidebar.colapsado .sidebar-menu a .texto-menu,
.sidebar.colapsado .user-info-nome,
.sidebar.colapsado .user-info-nivel {
    display: none;
}
.sidebar.colapsado .sidebar-menu a {
    justify-content: center;
    padding: 12px;
}
.sidebar.colapsado .sidebar-menu a .icone-menu {
    margin: 0;
    font-size: 18px;
}
.sidebar.colapsado .btn-secundario span {
    display: none;
}
.sidebar.colapsado .user-info {
    padding: 8px;
}

/* Botão de toggle do menu */
.menu-toggle {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1100;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border: none;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.menu-toggle:hover {
    transform: scale(1.05);
}
.menu-toggle .hamburger {
    width: 22px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.menu-toggle .hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.menu-toggle.ativo .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.ativo .hamburger span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.ativo .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Botão de colapsar sidebar (desktop) */
.sidebar-colapsar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid var(--borda);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all 0.2s ease;
}
.sidebar-colapsar:hover {
    background: var(--primaria);
    color: #fff;
    border-color: var(--primaria);
}
.sidebar-colapsar svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}
.sidebar.colapsado .sidebar-colapsar svg {
    transform: rotate(180deg);
}

/* Overlay do menu mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.sidebar-overlay.ativo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sidebar-logo { 
    font-size: 20px; 
    font-weight: 800; 
    color: #fff; 
    margin-bottom: 0; 
    display: flex;
    justify-content: center;
    padding: 28px 20px;
    background: rgba(255,255,255,0.05);
}
.sidebar-logo img {
    height: 100px !important;
    width: auto;
    filter: brightness(1.1);
    transition: height 0.3s ease;
}
.sidebar-menu { 
    list-style: none; 
    padding: 12px 12px;
    flex: 1;
}
.sidebar-menu li { margin-bottom: 0; }
.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 12px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}
.sidebar-menu a .icone-menu {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.sidebar-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primaria);
    transform: scaleY(0);
    transition: transform 0.2s ease;
    border-radius: 0 4px 4px 0;
}
.sidebar-menu a:hover { 
    background: rgba(255,255,255,0.1); 
    color: #fff; 
}
.sidebar-menu a.ativo { 
    background: linear-gradient(90deg, rgba(234,29,44,0.2) 0%, rgba(234,29,44,0.05) 100%);
    color: #fff; 
    font-weight: 600;
}
.sidebar-menu a.ativo::before {
    transform: scaleY(1);
}

/* User info na sidebar */
.user-info {
    padding: 12px 16px;
    text-align: center;
    transition: padding 0.3s ease;
}
.user-info-nome {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    margin-bottom: 6px;
}
.user-info-nivel {
    text-transform: uppercase;
    font-size: 10px;
    background: rgba(255,255,255,0.15);
    padding: 3px 10px;
    border-radius: 10px;
    color: rgba(255,255,255,0.7);
    display: inline-block;
}

.sidebar .btn-secundario {
    margin: auto 16px 20px;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.sidebar .btn-secundario:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.painel-conteudo {
    flex: 1;
    margin-left: 280px;
    padding: 32px;
    background: var(--bg2);
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}
.painel-conteudo.expandido {
    margin-left: 70px;
}
.painel-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.painel-header h1 { font-size: 28px; font-weight: 700; }

/* ============================================
   STAT CARDS
   ============================================ */
.stat-card {
    background: var(--card);
    border-radius: var(--raio);
    padding: 24px;
    box-shadow: var(--sombra);
    border: 1px solid var(--borda);
}
.stat-card h4 { 
    color: var(--texto3); 
    font-size: 13px; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.stat-card .valor { font-size: 32px; font-weight: 800; letter-spacing: -1px; }

/* ============================================
   LOJA
   ============================================ */
.loja-header {
    background: var(--bg);
    padding: 20px 24px;
    border-bottom: 1px solid var(--borda);
    position: sticky;
    top: 0;
    z-index: 50;
}
.loja-info { display: flex; align-items: center; gap: 16px; }
.loja-logo { width: 56px; height: 56px; border-radius: 12px; background: var(--primaria); }
.loja-nome { font-size: 20px; font-weight: 700; }
.loja-status { color: var(--verde); font-size: 14px; }

.categorias-nav {
    display: flex;
    gap: 10px;
    padding: 16px 24px;
    overflow-x: auto;
    background: var(--bg);
}
.categorias-nav a {
    padding: 10px 20px;
    background: var(--bg2);
    border-radius: 20px;
    font-weight: 500;
    color: var(--texto2);
    font-size: 14px;
}
.categorias-nav a:hover, .categorias-nav a.ativo { background: var(--primaria); color: #fff; }

.produto-card {
    display: flex;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--borda);
    border-radius: var(--raio);
    padding: 16px;
    transition: all 0.2s;
}
.produto-card:hover { border-color: var(--primaria); }
.produto-info { flex: 1; }
.produto-info h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.produto-info p { font-size: 13px; color: var(--texto2); margin-bottom: 8px; line-height: 1.4; }
.produto-preco { font-size: 16px; font-weight: 700; color: var(--primaria); }
.produto-imagem { width: 90px; height: 90px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   RESPONSIVO
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .painel-conteudo {
        padding: 24px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .grid-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile e Tablet menor */
@media (max-width: 768px) {
    /* Sidebar Mobile */
    .sidebar {
        display: none;
        transform: translateX(-100%);
        width: 280px !important;
        pointer-events: none;
        visibility: hidden;
    }
    .sidebar.mobile-ativo {
        display: flex;
        transform: translateX(0);
        pointer-events: auto;
        visibility: visible;
    }
    .sidebar.colapsado {
        width: 280px !important;
    }
    .sidebar-colapsar {
        display: none;
    }
    .sidebar-overlay {
        display: none;
        pointer-events: none;
        visibility: hidden;
    }
    .sidebar-overlay.ativo {
        display: block;
        pointer-events: auto;
        visibility: visible;
    }
    .menu-toggle {
        display: flex;
    }
    
    /* Conteúdo */
    .painel-conteudo {
        margin-left: 0 !important;
        padding: 70px 16px 24px;
    }
    .painel-conteudo.expandido {
        margin-left: 0 !important;
    }
    .painel-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .painel-header h1 {
        font-size: 22px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    .grid-stats {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .stat-card {
        padding: 16px;
    }
    .stat-card .valor {
        font-size: 24px;
    }
    
    /* Cards */
    .card {
        padding: 16px;
        border-radius: 12px;
    }
    
    /* Avisos */
    .aviso-vencidos {
        flex-direction: column;
        text-align: center;
        padding: 14px;
    }
    
    /* Tabelas responsivas */
    .tabela-responsiva {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
    }
    .tabela-responsiva table {
        min-width: 600px;
    }
    
    /* Filtros */
    .filtros-deliveries {
        gap: 8px;
    }
    .filtros-deliveries .filtro {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* Secoes */
    .secao { padding: 60px 0; }
    .secao-titulo h2 { font-size: 32px; }
    .cta h2 { font-size: 32px; }
    
    /* Produto card responsivo */
    .produto-card { padding: 12px; gap: 12px; }
    .produto-imagem { width: 80px; height: 80px; border-radius: 8px; flex-shrink: 0; }
    .produto-info h3 { font-size: 14px; }
    .produto-info p { font-size: 12px; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .produto-preco { font-size: 15px; }
    
    /* Gráfico responsivo */
    .grafico-container {
        overflow-x: auto;
    }
    
    /* Modal responsivo */
    .modal-box {
        width: 95% !important;
        max-width: 95% !important;
        padding: 20px !important;
        margin: 10px;
    }
    .modal-box .acoes {
        flex-direction: column;
    }
    .modal-box .acoes .btn {
        width: 100%;
    }
    
    /* Botões responsivos */
    .acoes-btn {
        flex-direction: column;
        gap: 4px;
    }
    .acoes-btn .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Toast responsivo */
    #toastContainer {
        left: 16px;
        right: 16px;
        top: auto;
        bottom: 16px;
    }
    .toast {
        min-width: auto;
        width: 100%;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .painel-conteudo {
        padding: 70px 12px 20px;
    }
    .painel-header h1 {
        font-size: 20px;
    }
    .stat-card .valor {
        font-size: 20px;
    }
    .stat-card h4 {
        font-size: 11px;
    }
    
    /* Cards de crescimento */
    .crescimento-cards {
        grid-template-columns: 1fr !important;
    }
    .card-destaque {
        padding: 16px !important;
    }
    .card-destaque-valor {
        font-size: 36px !important;
    }
    
    /* Periodos timeline */
    .periodos-timeline {
        flex-wrap: wrap;
    }
    .periodos-timeline > div {
        flex: 1 1 calc(33% - 4px) !important;
        min-width: calc(33% - 4px);
        padding: 12px 4px !important;
    }
    .periodos-timeline > div > div:first-child {
        font-size: 18px !important;
    }
    
    /* Projecoes */
    .projecoes-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .projecao-icone {
        width: 40px !important;
        height: 40px !important;
        font-size: 14px !important;
    }
    .projecao-valor {
        font-size: 22px !important;
    }
}

/* ============================================
   ELEMENTOS DO DASHBOARD RESPONSIVO
   ============================================ */

/* Card destaque (usado em crescimento) */
.card-destaque {
    transition: transform 0.2s ease;
}
.card-destaque:hover {
    transform: translateY(-2px);
}

/* Tabela responsiva */
.tabela-responsiva {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.tabela-responsiva table {
    width: 100%;
    min-width: 600px;
}

/* Versão mobile de tabelas */
@media (max-width: 768px) {
    .tabela-cards .linha-tabela {
        display: flex;
        flex-direction: column;
        background: var(--card);
        border: 1px solid var(--borda);
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 12px;
    }
    .tabela-cards .linha-tabela .celula {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid var(--borda);
    }
    .tabela-cards .linha-tabela .celula:last-child {
        border-bottom: none;
    }
    .tabela-cards .linha-tabela .celula::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--texto2);
    }
}

/* ============================================
   NOVOS ELEMENTOS MODERNOS
   ============================================ */

/* Botão Outline */
.btn-outline {
    background: transparent;
    border: 2px solid var(--borda);
    color: var(--texto);
}
.btn-outline:hover {
    border-color: var(--primaria);
    color: var(--primaria);
    background: var(--primaria-light);
}
.btn-block { width: 100%; }

/* Seção Badge */
.secao-badge {
    display: inline-block;
    background: var(--primaria-light);
    color: var(--primaria);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Texto destaque */
.destaque {
    background: var(--gradiente);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Seção Alternada */
.secao-alt {
    background: var(--bg2);
}

/* Hero Modernizado */
.hero-badge {
    display: inline-block;
    background: var(--verde);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--borda);
}
.hero-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primaria);
}
.hero-stat span {
    font-size: 13px;
    color: var(--texto3);
}

.hero-video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(234,29,44,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.hero-bg-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg2), transparent);
    pointer-events: none;
}

/* Features Grid Moderno */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }
}

.feature-lista {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}
.feature-lista li {
    font-size: 13px;
    color: var(--texto2);
    padding: 6px 0;
}

/* Passos Card Style */
.passo-card {
    background: var(--card);
    padding: 40px 32px;
    border-radius: var(--raio);
    text-align: center;
    box-shadow: var(--sombra);
    border: 1px solid var(--borda);
    position: relative;
    transition: all 0.4s ease;
}
.passo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra2);
    border-color: var(--primaria);
}
.passo-card .passo-numero {
    position: absolute;
    top: -15px;
    left: 32px;
    background: var(--gradiente);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(234, 29, 44, 0.3);
}
.passo-icone {
    font-size: 48px;
    margin-bottom: 20px;
}
.passo-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.passo-card p {
    font-size: 14px;
    color: var(--texto2);
    line-height: 1.7;
    margin-bottom: 16px;
}
.passo-tempo {
    font-size: 13px;
    color: var(--primaria);
    font-weight: 600;
}
.passos-cta {
    text-align: center;
    margin-top: 48px;
}

/* FAQ Grid Moderno */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
}

.faq-item summary {
    display: flex;
    align-items: center;
    gap: 16px;
}
.faq-icone {
    font-size: 24px;
    flex-shrink: 0;
}
.faq-toggle {
    margin-left: auto;
    font-size: 24px;
    color: var(--primaria);
    font-weight: 300;
    transition: transform 0.3s;
}
.faq-item[open] .faq-toggle {
    transform: rotate(45deg);
}
.faq-resposta {
    padding: 0 28px 24px;
}
.faq-resposta p {
    padding: 0;
    margin: 0;
}

/* Planos Header */
.plano-header {
    margin-bottom: 24px;
}
.plano-header .plano-nome {
    margin-bottom: 12px;
}
.plano-preco .moeda {
    font-size: 20px;
    font-weight: 600;
    vertical-align: top;
    color: var(--texto);
}
.plano-preco .valor {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
}
.plano-preco .periodo {
    font-size: 15px;
    font-weight: 500;
    color: var(--texto3);
}
.plano-desc {
    font-size: 14px;
    color: var(--texto3);
    margin-top: 8px;
}

/* Plano lista com checks e x */
.plano-lista .check {
    color: var(--verde);
    font-weight: 700;
}
.plano-lista .x {
    color: var(--texto3);
}
.plano-lista .desativado {
    color: var(--texto3);
    opacity: 0.6;
}
/* Sem separadores nos planos */

/* ============================================
   SEÇÃO DE DORES
   ============================================ */
.secao-dores {
    background: linear-gradient(180deg, #fef2f2 0%, #fff 100%);
    padding: 80px 0;
}
.dores-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.dores-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 48px;
    color: var(--texto);
}
.dores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}
.dore-item {
    background: var(--card);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: var(--sombra);
    border: 1px solid var(--borda);
    transition: all 0.3s ease;
}
.dore-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra2);
}
.dore-icone {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}
.dore-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--texto2);
    margin: 0;
}
.dore-item strong {
    color: var(--primaria);
}
.solucao-hero {
    background: var(--card);
    border: 2px solid var(--primaria);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
}
.solucao-hero h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 32px;
}
.solucao-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.solucao-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}
.solucao-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra2);
}
.solucao-numero {
    width: 40px;
    height: 40px;
    background: var(--gradiente);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 16px;
}
.solucao-card strong {
    display: block;
    font-size: 15px;
    color: var(--texto);
    margin-bottom: 6px;
}
.solucao-card p {
    font-size: 13px;
    color: var(--texto2);
    margin: 0;
    line-height: 1.4;
}
.solucao-hero .btn {
    display: inline-block;
}
@media (max-width: 1024px) {
    .solucao-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .dores-grid { grid-template-columns: 1fr; }
    .dores-content h2 { font-size: 28px; }
    .solucao-grid { grid-template-columns: 1fr; }
    .solucao-hero { padding: 32px 20px; }
    .solucao-hero h3 { font-size: 22px; }
}

/* CTA Seção */
.cta-secao {
    background: var(--gradiente);
    position: relative;
    overflow: hidden;
}
.cta-secao::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}
.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.cta-content h2 .destaque {
    -webkit-text-fill-color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
}
.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 32px;
}
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}
.cta-stat .numero {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}
.cta-stat .label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.cta-garantia {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.cta-secao .btn-primario {
    background: #fff;
    color: var(--primaria);
}
.cta-secao .btn-primario:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Blog Moderno */
.blog-imagem {
    height: 200px;
    overflow: hidden;
}
.blog-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-imagem img {
    transform: scale(1.08);
}
.blog-card .blog-conteudo {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card {
    display: flex;
    flex-direction: column;
}
.blog-card .blog-conteudo p {
    flex: 1;
}
.blog-categoria {
    display: inline-block;
    background: var(--primaria-light);
    color: var(--primaria);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-conteudo h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.2s;
}
.blog-card:hover h3 {
    color: var(--primaria);
}
.blog-conteudo p {
    font-size: 14px;
    color: var(--texto2);
    line-height: 1.6;
    margin-bottom: 16px;
}
.blog-link {
    color: var(--primaria);
    font-weight: 600;
    font-size: 14px;
}
.blog-cta {
    text-align: center;
    margin-top: 48px;
}

/* Blog Full Grid */
.blog-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 1024px) {
    .blog-grid-full { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .blog-grid-full { grid-template-columns: 1fr; }
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.blog-data {
    font-size: 12px;
    color: var(--texto3);
}
.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--borda);
}
.blog-tempo {
    font-size: 12px;
    color: var(--texto3);
}

/* Blog Hero */
.blog-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
    text-align: center;
}
.blog-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.blog-hero-content p {
    font-size: 18px;
    color: var(--texto2);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Filtros */
.blog-filtros {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.filtro-btn {
    padding: 10px 24px;
    border: 2px solid var(--borda);
    border-radius: 50px;
    background: var(--card);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.filtro-btn:hover {
    border-color: var(--primaria);
    color: var(--primaria);
}
.filtro-btn.ativo {
    background: var(--primaria);
    border-color: var(--primaria);
    color: #fff;
}

/* Post Artigo */
.post-artigo {
    padding: 140px 0 60px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--texto3);
    margin-bottom: 40px;
}
.breadcrumb a:hover {
    color: var(--primaria);
}
.post-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}
.post-header h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 16px 0;
    letter-spacing: -1px;
}
.post-resumo {
    font-size: 20px;
    color: var(--texto2);
    line-height: 1.6;
}
.post-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    color: var(--texto3);
    font-size: 14px;
}
.post-imagem {
    border-radius: var(--raio);
    overflow: hidden;
    margin-bottom: 48px;
    max-height: 500px;
}
.post-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-conteudo {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.9;
}
.post-conteudo h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 48px 0 20px;
    color: var(--texto);
}
.post-conteudo h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 36px 0 16px;
}
.post-conteudo p {
    margin-bottom: 20px;
    color: var(--texto2);
}
.post-conteudo ul, .post-conteudo ol {
    margin: 20px 0;
    padding-left: 24px;
}
.post-conteudo li {
    margin-bottom: 10px;
    color: var(--texto2);
}
.post-conteudo a {
    color: var(--primaria);
    text-decoration: underline;
}
.post-conteudo blockquote {
    background: var(--bg2);
    border-left: 4px solid var(--primaria);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 var(--raio-sm) var(--raio-sm) 0;
    font-style: italic;
    color: var(--texto2);
}
.post-cta {
    background: var(--primaria-light);
    border-radius: var(--raio);
    padding: 40px;
    text-align: center;
    margin: 48px auto;
    max-width: 760px;
}
.post-cta h3 {
    font-size: 24px;
    margin-bottom: 12px;
}
.post-cta p {
    color: var(--texto2);
    margin-bottom: 24px;
}
.post-compartilhar {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--borda);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.compartilhar-btns {
    display: flex;
    gap: 12px;
}
.compartilhar-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}
.compartilhar-btn.whatsapp {
    background: #25D366;
    color: #fff;
}
.compartilhar-btn.facebook {
    background: #1877F2;
    color: #fff;
}
.compartilhar-btn.twitter {
    background: #1DA1F2;
    color: #fff;
}
.compartilhar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Footer Moderno */
.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
}
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}
.footer-social a {
    font-size: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.footer-social a:hover {
    opacity: 1;
}
.footer-links h4 {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-bottom: 8px;
}

/* Header Scrolled */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Nav ativo */
.nav a.ativo {
    color: var(--primaria);
}
.nav a.ativo::after {
    width: 100%;
}

/* Visible class para animações */
.fade-in.visible {
    opacity: 1;
}

@media (max-width: 640px) {
    .hero-stats { flex-direction: column; gap: 24px; align-items: center; }
    .cta-stats { flex-direction: column; gap: 24px; }
    .post-header h1 { font-size: 32px; }
    .blog-hero-content h1 { font-size: 36px; }
}