/* ============================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563eb;
    --dark-blue: #1e40af;
    --light-blue: #60a5fa;
    --cyan: #06b6d4;
    --orange: #f97316;
    --pink: #ec4899;
    --green: #10b981;
    --red: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.6;
    padding-bottom: 80px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 12px 0 20px; /* 🔧 Compacto */
    box-shadow: var(--shadow-lg);
}

/* Header em 1 linha */
.header-top-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px; /* 🔧 Compacto */
}

.header-left h1 {
    font-size: 20px; /* 🔧 Menor */
    font-weight: 700;
    margin: 0 0 2px 0; /* 🔧 Pequeno espaço */
}

.header-subtitle-inline {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

.header-right-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.install-app-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.install-app-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.install-app-btn.can-install {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.install-app-btn i {
    font-size: 14px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px; /* 🔧 Mais compacto */
}

.user-info h1 {
    font-size: 24px; /* 🔧 Mais compacto */
    font-weight: 700;
    margin-bottom: 4px;
}

.user-info p {
    font-size: 13px; /* 🔧 Mais compacto */
    opacity: 0.9;
}

.notification-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px; /* 🔧 Menor */
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 16px; /* 🔧 Menor */
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.notification-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Performance Cards */
.performance-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px; /* 🔧 Mais compacto */
    margin-top: 12px; /* 🔧 Mais compacto */
}

.perf-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 12px; /* 🔧 Ainda mais compacto */
    text-align: center;
    transition: all 0.3s ease;
}

.perf-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.perf-value {
    font-size: 22px; /* 🔧 Ainda mais compacto */
    font-weight: 700;
    margin-bottom: 2px; /* 🔧 Menos espaço */
}

.perf-icon {
    font-size: 26px; /* 🔧 Ainda mais compacto */
    margin-bottom: 2px; /* 🔧 Menos espaço */
}

.perf-label {
    font-size: 11px; /* 🔧 Menor */
    opacity: 0.9;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    padding: 24px 0 70px; /* 🔧 Reduzido para menos espaço embaixo */
}

.section {
    margin-bottom: 24px; /* 🔧 Mais compacto */
}

.section-header {
    margin-bottom: 16px; /* 🔧 Mais compacto */
}

.section-header h2 {
    font-size: 20px; /* 🔧 Menor */
    font-weight: 700;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   BANNER DE INSTALAÇÃO DO APP
   ============================================ */
.install-banner {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.install-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.install-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.install-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0 0 4px 0;
}

.install-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.install-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.install-btn {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.install-btn:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dismiss-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dismiss-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* ============================================
   GUIAS DE EXECUÇÃO - LAYOUT COMPACTO OTIMIZADO
   ============================================ */

/* 🎯 CARD PRINCIPAL - Largura e estrutura */
.guide-big-card {
    min-width: 460px;
    max-width: 460px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    scroll-snap-align: start;
}

.guide-big-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* 🎯 IMAGEM - Altura maior e visual */
.guide-image {
    position: relative;
    height: 300px; /* 🔧 Altura da imagem - AJUSTE AQUI */
    overflow: hidden;
    background: var(--gray-100);
}

.guide-image-tall {
    position: relative;
    height: 300px; /* 🔧 Altura maior da imagem - AJUSTE AQUI */
    overflow: hidden;
    background: var(--gray-100);
}

.guide-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 🎯 CONTENT - Padding reduzido */
.guide-big-content,
.guide-compact-content {
    padding: 16px; /* 🔧 Espaçamento - AJUSTE AQUI */
}

/* 🎯 BOTÕES HORIZONTAIS - 4 lado a lado */
.guide-sections,
.guide-sections-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas lado a lado */
    gap: 8px; /* 🔧 Espaço entre botões - AJUSTE AQUI */
    margin: 0;
    padding: 0;
    border: none;
}

/* 🎯 BOTÃO - Tamanho e estilo compacto */
.guide-section-btn,
.guide-section-btn-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 6px; /* 🔧 Tamanho do botão - AJUSTE AQUI */
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    text-decoration: none;
    color: var(--gray-700);
    font-size: 11px; /* 🔧 Tamanho do texto - AJUSTE AQUI */
    font-weight: 600;
    transition: all 0.3s ease;
}

/* 🎯 ÍCONE - Tamanho compacto */
.section-icon,
.section-icon-compact {
    width: 48px; /* 🔧 Tamanho do ícone - AJUSTE AQUI */
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--gray-50);
    transition: all 0.3s ease;
}

.section-icon-img {
    width: 48px; /* 🔧 Tamanho da imagem - AJUSTE AQUI (mesmo valor acima) */
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
}

/* Hover nos botões */
.guide-section-btn:hover,
.guide-section-btn-compact:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.guide-section-btn:hover .section-icon,
.guide-section-btn-compact:hover .section-icon-compact {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* ============================================
   GUIAS DE EXECUÇÃO - Estilos antigos (compatibilidade)
   ============================================ */
/* ============================================
   GUIAS DE EXECUÇÃO - Rolagem e animações
   ============================================ */

.guides-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.guides-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.guides-carousel:active {
    cursor: grabbing;
}

.guides-carousel::-webkit-scrollbar {
    height: 8px;
}

.guides-carousel::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}

.guides-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}

.guides-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue);
}

/* Botão de Download */
.download-btn-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.download-btn-overlay:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

/* Dots dos guias */
.guides-dots {
    margin-top: 20px;
}

/* Animação de entrada dos guias */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guide-big-card {
    animation: slideInUp 0.5s ease forwards;
}

.guide-big-card:nth-child(1) { animation-delay: 0s; }
.guide-big-card:nth-child(2) { animation-delay: 0.1s; }
.guide-big-card:nth-child(3) { animation-delay: 0.2s; }
.guide-big-card:nth-child(4) { animation-delay: 0.3s; }

/* Dots dos guias */
.guides-dots {
    margin-top: 20px;
}

/* ============================================
   GUIAS DE EXECUÇÃO - Estilos antigos (manter para compatibilidade)
   ============================================ */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.guide-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--primary-blue));
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.guide-alimentar {
    border-left: 4px solid var(--cyan);
}

.guide-farma {
    border-left: 4px solid var(--dark-blue);
}

.guide-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.guide-icon {
    font-size: 48px;
}

.download-btn {
    background: var(--gray-100);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.guide-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.guide-card p {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.guide-period {
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.guide-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.btn-action {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 10px;
    border-radius: 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
}

.btn-action:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ============================================
   NOTÍCIAS - CARDS GRANDES COM ROLAGEM
   ============================================ */
.news-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.news-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.news-carousel::-webkit-scrollbar {
    height: 8px;
}

.news-carousel::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}

.news-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}

.news-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue);
}

.news-big-card {
    min-width: 320px;
    max-width: 320px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    scroll-snap-align: start;
}

.news-big-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    font-size: 72px;
}

.news-politica .news-image-content {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.news-excellence .news-image-content {
    background: linear-gradient(135deg, #475569, #1e293b);
}

.news-praticas .news-image-content {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.news-treinamento .news-image-content {
    background: linear-gradient(135deg, #10b981, #059669);
}

.news-campanha .news-image-content {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.news-reconhecimento .news-image-content {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}

/* Preview de PDV */
.news-image-pdv {
    background: linear-gradient(135deg, #1e293b, #0f172a) !important;
    padding: 30px;
}

.pdv-preview {
    width: 100%;
    height: 100%;
    position: relative;
}

.shelf-line {
    position: absolute;
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    left: 10%;
}

.shelf-line:nth-child(1) { top: 20%; }
.shelf-line:nth-child(2) { top: 50%; }
.shelf-line:nth-child(3) { top: 80%; }

.product-box {
    position: absolute;
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, #ec4899, #db2777);
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.product-box:nth-child(4) {
    left: 20%;
    top: 8%;
}

.product-box:nth-child(5) {
    left: 45%;
    top: 38%;
}

.product-box:nth-child(6) {
    right: 20%;
    top: 68%;
}

.news-badge-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.news-big-content {
    padding: 20px;
}

.news-big-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-big-content p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: var(--primary-blue);
    width: 24px;
    border-radius: 4px;
}

/* Animação de entrada */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.news-big-card {
    animation: slideInLeft 0.5s ease forwards;
}

.news-big-card:nth-child(1) { animation-delay: 0s; }
.news-big-card:nth-child(2) { animation-delay: 0.1s; }
.news-big-card:nth-child(3) { animation-delay: 0.2s; }
.news-big-card:nth-child(4) { animation-delay: 0.3s; }
.news-big-card:nth-child(5) { animation-delay: 0.4s; }
.news-big-card:nth-child(6) { animation-delay: 0.5s; }

/* ============================================
   NOTÍCIAS - Estilos antigos removidos
   ============================================ */
.news-grid {
    display: grid;
    gap: 16px;
}

.news-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gray-300);
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
}

.news-politica {
    border-left-color: var(--primary-blue);
}

.news-excellence {
    border-left-color: var(--gray-700);
}

.news-praticas {
    border-left-color: #8b5cf6;
}

.news-treinamento {
    border-left-color: var(--green);
}

.news-icon {
    font-size: 32px;
    min-width: 50px;
    text-align: center;
}

.news-content {
    flex: 1;
}

.news-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 6px;
    line-height: 1.4;
}

.news-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-noticia {
    background: var(--primary-blue);
    color: white;
}

.badge-pdv {
    background: var(--gray-200);
    color: var(--gray-700);
}

.news-card .fa-chevron-right {
    color: var(--gray-400);
    font-size: 16px;
}

/* ============================================
   PÁGINAS DE GUIAS
   ============================================ */
.subpage-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: var(--shadow-lg);
}

.subpage-header .header-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.subpage-header .back-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.subpage-header .back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.header-title {
    flex: 1;
}

.header-title h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.header-title p {
    font-size: 13px;
    opacity: 0.9;
}

.download-btn-header {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.download-btn-header:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.guide-page-content {
    padding: 24px 0 70px;
}

/* Navegação das Seções */
.section-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    background: white;
    padding: 12px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.section-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--gray-50);
}

.section-nav-item i {
    font-size: 24px;
    transition: all 0.3s ease;
}

.section-nav-item:hover {
    background: var(--gray-100);
    color: var(--primary-blue);
}

.section-nav-item.active {
    background: var(--primary-blue);
    color: white;
}

/* Conteúdo das Páginas */
.guide-content-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: var(--shadow-md);
}

.content-card-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 20px 24px;
}

.content-card-header h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.content-card-body {
    padding: 24px;
}

.content-card-body p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-card-body ul {
    list-style: none;
    padding: 0;
}

.content-card-body ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-700);
    line-height: 1.6;
}

.content-card-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 18px;
}

/* Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.goal-item {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.goal-item:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.goal-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.goal-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.goal-item p {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

/* Checklist */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: var(--gray-100);
}

.checklist-item i {
    color: var(--green);
    font-size: 20px;
}

.checklist-item span {
    color: var(--gray-700);
    font-weight: 500;
}

/* Documents List */
.documents-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.document-item:hover {
    background: var(--gray-100);
    transform: translateX(4px);
}

.document-item > i:first-child {
    font-size: 32px;
    color: var(--primary-blue);
}

.document-info {
    flex: 1;
}

.document-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.document-info p {
    font-size: 12px;
    color: var(--gray-600);
    margin: 0;
}

.document-item > i:last-child {
    font-size: 18px;
    color: var(--gray-400);
}

/* Tips Grid */
.tips-grid {
    display: grid;
    gap: 16px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    border-left: 4px solid;
}

.tip-item i {
    font-size: 20px;
    margin-top: 2px;
}

.tip-item p {
    margin: 0;
    line-height: 1.6;
}

.tip-success {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: var(--green);
}

.tip-success i {
    color: var(--green);
}

.tip-warning {
    background: rgba(245, 158, 11, 0.1);
    border-left-color: #f59e0b;
}

.tip-warning i {
    color: #f59e0b;
}

.tip-info {
    background: rgba(37, 99, 235, 0.1);
    border-left-color: var(--primary-blue);
}

.tip-info i {
    color: var(--primary-blue);
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: var(--shadow-lg);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.header-top h1 {
    font-size: 24px;
    font-weight: 700;
}

.filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
}

.filter-group select {
    background: white;
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--gray-900);
    cursor: pointer;
    font-weight: 500;
}

/* Dashboard Content */
.dashboard-content {
    padding: 24px 0 40px;
}

.dashboard-section {
    background: white;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pilar-badge {
    background: var(--primary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: auto;
}

/* Chart Container */
.chart-container {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 20px;
}

.chart-header {
    margin-bottom: 20px;
}

.chart-tabs {
    display: flex;
    gap: 8px;
    background: white;
    padding: 4px;
    border-radius: 12px;
    width: fit-content;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary-blue);
    color: white;
}

.chart-content {
    display: flex;
    align-items: flex-end;
    gap: 32px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex: 1;
    height: 200px;
}

.bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.bar {
    width: 100%;
    background: linear-gradient(180deg, #93c5fd 0%, var(--primary-blue) 100%);
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.bar:hover {
    opacity: 0.8;
}

.bar-value {
    font-size: 13px;
    font-weight: 700;
    color: white;
}

.bar-label {
    font-size: 11px;
    color: var(--gray-700);
    text-align: center;
    line-height: 1.3;
}

.chart-result {
    text-align: center;
    min-width: 120px;
}

.result-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.result-value span {
    font-size: 24px;
    color: var(--gray-500);
}

.result-percent {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-700);
}

/* Indicator Cards */
.indicator-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    border-left: 4px solid var(--gray-300);
}

.indicator-kbd {
    border-left-color: var(--orange);
}

.indicator-espaco {
    border-left-color: var(--pink);
}

.indicator-gatilho {
    border-left-color: var(--cyan);
}

.indicator-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.indicator-content {
    display: flex;
    gap: 24px;
    align-items: center;
}

.indicator-chart {
    flex: 1;
}

.mini-bars {
    display: flex;
    gap: 8px;
    height: 60px;
    align-items: flex-end;
    margin-bottom: 8px;
}

.mini-bar {
    flex: 1;
    background: var(--cyan);
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.indicator-kbd .mini-bar {
    background: var(--orange);
}

.indicator-espaco .mini-bar {
    background: var(--pink);
}

.mini-bar:hover {
    opacity: 1;
}

.indicator-labels {
    display: flex;
    gap: 8px;
    font-size: 10px;
    color: var(--gray-600);
}

.indicator-labels span {
    flex: 1;
    text-align: center;
}

.indicator-result {
    text-align: center;
    min-width: 100px;
}

.result-main {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.result-main span {
    font-size: 16px;
    color: var(--gray-500);
}

.result-sub {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

/* Stores Table */
.stores-table {
    margin-top: 20px;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead th {
    background: var(--gray-100);
    padding: 12px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    color: var(--gray-700);
    text-transform: uppercase;
}

tbody tr {
    border-bottom: 1px solid var(--gray-200);
}

tbody td {
    padding: 12px;
    text-align: center;
    font-size: 14px;
}

.store-row td {
    background: var(--gray-50);
    font-weight: 600;
    text-align: left;
    padding: 16px 12px 8px;
}

.store-name strong {
    color: var(--gray-900);
    font-size: 13px;
}

.store-name small {
    color: var(--gray-600);
    font-size: 12px;
}

.value-good {
    font-weight: 700;
    color: var(--green);
}

.value-warning {
    font-weight: 700;
    color: var(--orange);
}

.value-bad {
    font-weight: 700;
    color: var(--red);
}

.percent-good {
    color: var(--green);
}

.percent-warning {
    color: var(--orange);
}

.percent-bad {
    color: var(--red);
}

.visits-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Critérios */
.criterios-list {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 20px;
}

.criterio-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-700);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.criterio-group {
    margin-bottom: 20px;
}

.criterio-label {
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.criterio-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 12px;
    padding: 14px 12px;
    background: white;
    border-radius: 12px;
    margin-bottom: 8px;
    align-items: center;
    transition: all 0.3s ease;
}

.criterio-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.criterio-name {
    font-size: 14px;
    color: var(--gray-900);
}

.criterio-nota {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
}

.criterio-percent {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 6px 12px;
    border-radius: 8px;
}

/* Dashboard Footer */
.dashboard-footer {
    text-align: center;
    padding: 40px 0;
}

.logo-footer {
    width: 120px;
    height: 120px;
    opacity: 0.8;
}

/* ============================================
   BOTTOM NAVIGATION
   ============================================ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 12px 0 16px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
}

.nav-item i {
    font-size: 20px;
}

.nav-item.active {
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.1);
}

.nav-item:hover {
    color: var(--primary-blue);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: flex-end;
}

.close-modal {
    background: var(--gray-100);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: var(--red);
    color: white;
}

.modal-body {
    padding: 24px;
}

/* ============================================
   PÁGINA DE PRODUTOS
   ============================================ */
.header-top-products {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.header-title-products h1 {
    font-size: 22px;
    margin: 0;
    flex: 1;
}

.count-badge {
    font-size: 18px;
    color: #6b7280;
    font-weight: 400;
}

.header-actions {
    display: flex;
    gap: 8px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.search-box {
    background: white;
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-box i {
    color: #9ca3af;
    font-size: 18px;
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    color: #1f2937;
}

.search-box input::placeholder {
    color: #9ca3af;
}

/* Grade de Produtos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 12px;
}

.product-ean,
.product-sku {
    font-size: 11px;
    color: #6b7280;
    margin: 0 0 4px 0;
}

.product-name {
    font-size: 13px;
    color: #1f2937;
    font-weight: 600;
    margin: 4px 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Botão Flutuante de Compartilhar */
.fab-share {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    border: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
}

.fab-share:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.5);
}

.fab-share:active {
    transform: scale(0.95);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-left h1 {
        font-size: 18px; /* 🔧 Menor no mobile */
    }
    
    .header-subtitle-inline {
        font-size: 12px;
    }
    
    .install-app-btn span {
        display: none; /* Esconder texto no mobile */
    }
    
    .install-app-btn {
        padding: 8px 10px; /* Mais compacto */
        min-width: auto;
    }
    
    .notification-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .header-content h1 {
        font-size: 24px;
    }

    .performance-cards {
        gap: 8px;
    }

    .perf-value {
        font-size: 20px; /* 🔧 Menor */
    }

    .perf-icon {
        font-size: 24px; /* 🔧 Menor */
    }
    
    /* Páginas de guias responsivas */
    .subpage-header .header-title h1 {
        font-size: 18px;
    }
    
    .subpage-header .header-title p {
        font-size: 12px;
    }
    
    .section-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .section-nav-item {
        padding: 12px 6px;
        font-size: 11px;
    }
    
    .section-nav-item i {
        font-size: 20px;
    }
    
    .content-card-header {
        padding: 16px 20px;
    }
    
    .content-card-header h2 {
        font-size: 16px;
    }
    
    .content-card-body {
        padding: 20px;
    }
    
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Guides carousel responsivo */
    .guides-carousel {
        gap: 16px;
        padding: 0 16px;
    }
    
    .guide-big-card {
        /* 🎯 MOBILE: Largura do card (padrão: 400px) */
        min-width: 400px;
        max-width: 400px;
    }
    
    .guide-image {
        /* 🎯 MOBILE: Altura da imagem (padrão: 200px) */
        height: 200px;
    }
    
    .guide-image-content {
        font-size: 64px;
    }
    
    .guide-big-content {
        /* 🎯 MOBILE: Padding interno (padrão: 16px) */
        padding: 16px;
    }
    
    .guide-big-content h3 {
        font-size: 16px;
    }
    
    .guide-subtitle {
        font-size: 13px;
    }
    
    .guide-sections {
        /* 🎯 MOBILE: Espaço entre botões (padrão: 8px) */
        gap: 8px;
    }
    
    .guide-section-btn {
        /* 🎯 MOBILE: Padding do botão (padrão: 10px 6px) */
        padding: 10px 6px;
        /* 🎯 MOBILE: Tamanho do texto (padrão: 10px) */
        font-size: 10px;
    }
    
    .guide-section-btn i {
        font-size: 20px;
    }
    
    .section-icon {
        /* 🎯 MOBILE: Tamanho do ícone (padrão: 36px) */
        width: 36px;
        height: 36px;
    }
    
    .section-icon-img {
        /* 🎯 MOBILE: Tamanho da imagem (padrão: 36px) */
        width: 36px;
        height: 36px;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .guide-actions {
        grid-template-columns: 1fr;
    }

    /* Carousel responsivo */
    .news-carousel {
        gap: 16px;
        padding: 0 16px;
    }
    
    .news-big-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-image-content {
        font-size: 56px;
    }
    
    .news-big-content {
        padding: 16px;
    }
    
    .news-big-content h3 {
        font-size: 15px;
    }
    
    .news-big-content p {
        font-size: 12px;
    }

    .filters {
        grid-template-columns: 1fr;
    }

    .chart-content {
        flex-direction: column;
        align-items: stretch;
    }

    .chart-bars {
        height: 150px;
    }

    .result-value {
        font-size: 36px;
    }

    .indicator-content {
        flex-direction: column;
    }

    .criterio-header,
    .criterio-item {
        grid-template-columns: 1.5fr 80px 90px;
        gap: 8px;
    }

    .criterio-name {
        font-size: 13px;
    }

    .section-title {
        font-size: 16px;
    }
    
    /* Banner de instalação mobile */
    .install-banner {
        flex-direction: column;
        padding: 14px;
        gap: 12px;
    }
    
    .install-content {
        width: 100%;
    }
    
    .install-buttons {
        width: 100%;
    }
    
    .install-btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .performance-cards {
        grid-template-columns: repeat(3, 1fr); /* 🔧 Manter 3 colunas no mobile */
        gap: 8px;
    }

    .perf-card {
        padding: 10px;
    }
    
    .perf-value {
        font-size: 20px;
    }
    
    .perf-icon {
        font-size: 22px;
    }
    
    .perf-label {
        font-size: 10px;
    }
    
    /* Páginas de guias ainda mais responsivas */
    .section-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .document-item {
        padding: 12px;
    }
    
    .document-item > i:first-child {
        font-size: 24px;
    }
    
    .document-info h4 {
        font-size: 14px;
    }
    
    /* Guides carousel ainda menor */
    .guide-big-card {
        /* 🎯 MOBILE PEQUENO: Largura do card (padrão: 340px) */
        min-width: 340px;
        max-width: 340px;
    }
    
    .guide-image {
        /* 🎯 MOBILE PEQUENO: Altura da imagem (padrão: 180px) */
        height: 180px;
    }
    
    .guide-image-content {
        font-size: 56px;
    }
    
    .guide-big-content {
        /* 🎯 MOBILE PEQUENO: Padding interno (padrão: 14px) */
        padding: 14px;
    }
    
    .guide-section-btn {
        /* 🎯 MOBILE PEQUENO: Padding do botão (padrão: 10px 4px) */
        padding: 10px 4px;
        /* 🎯 MOBILE PEQUENO: Tamanho do texto (padrão: 9px) */
        font-size: 9px;
    }
    
    .guide-section-btn i {
        font-size: 18px;
    }
    
    .section-icon {
        /* 🎯 MOBILE PEQUENO: Tamanho do ícone (padrão: 32px) */
        width: 32px;
        height: 32px;
    }
    
    .section-icon-img {
        /* 🎯 MOBILE PEQUENO: Tamanho da imagem (padrão: 32px) */
        width: 32px;
        height: 32px;
    }
    
    /* Carousel ainda menor */
    .news-big-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .news-image {
        height: 160px;
    }

    .bottom-nav {
        padding: 8px 0 12px;
    }

    .nav-item {
        font-size: 10px;
        padding: 6px 8px;
    }

    .nav-item i {
        font-size: 18px;
    }
}

/* Cursor especial para carousels */
.news-carousel,
.guides-carousel {
    cursor: grab;
}

.news-carousel:active,
.guides-carousel:active {
    cursor: grabbing;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }