/* ================================================================
   PARTE 1 – VARIÁVEIS, RESET, ELEMENTOS GLOBAIS E SEÇÕES INICIAIS
   ================================================================ */

/* ==================== VARIÁVEIS GLOBAIS ==================== */
:root {
    --primary: #141c2f;
    --primary-dark: #15a2ac;
    --primary-light: #14B8A6;
    --secondary: #2563EB;
    --secondary-dark: #1D4ED8;
    --accent: #F97316;
    --accent-dark: #EA580C;
    --accent-light: #FB923C;
    --bg: #F8FAFC;
    --text: #1E293B;
    --text-light: #64748B;
    --border: #E2E8F0;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius: 20px;
    --radius-card: 20px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==================== RESET E BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.5;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== BARRA DE PESQUISA (removida) ==================== */

/* ==================== UPDATE BANNER ==================== */
.update-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: white;
    padding: 14px 20px;
    text-align: center;
    z-index: 10000;
    display: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    animation: slideDown 0.3s ease;
    font-weight: 600;
}
.update-banner.active { display: block; }
.update-banner button {
    background: white;
    color: var(--primary);
    border: none;
    padding: 8px 28px;
    border-radius: 40px;
    margin-left: 15px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.update-banner button:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ==================== NAVEGAÇÃO SUPERIOR (vidro) ==================== */
.nav-superior {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.nav-logo:hover { opacity: 0.85; }
.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 48px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    transition: all 0.3s ease;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    cursor: pointer;
    padding: 8px 0;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}
.nav-link:hover::after { width: 60%; }
.nav-link.active {
    color: var(--primary);
    font-weight: 500;
}
.nav-link.active::after { width: 60%; }

.nav-info { display: none; }
.info-item { display: none; }

/* Mobile toggle */
.nav-mobile-toggle {
    display: none;
    background: var(--bg);
    border: 1px solid var(--border);
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.nav-mobile-toggle:hover { background: #f1f5f9; }
.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-mobile-menu {
    display: none;
    background: var(--white);
    padding: 20px;
    border-top: 1px solid var(--border);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}
.nav-mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-mobile-link {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: var(--font);
    text-align: left;
}
.nav-mobile-link i { width: 24px; color: var(--primary); }
.nav-mobile-link:hover {
    color: var(--primary);
    padding-left: 8px;
}
.nav-mobile-link:last-child { border-bottom: none; }

@media (max-width: 1200px) {
    .nav-menu, .nav-info { display: none; }
    .nav-mobile-toggle { display: flex; }
    .nav-container { height: 64px; }
}

/* ==================== PARALLAX HEADER ==================== */
.parallax-header {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 400px;
    overflow: hidden;
    background-color: var(--primary);
    border-radius: 0 !important;
    margin: 0 !important;
}

.parallax-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.parallax-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.parallax-slide.active { opacity: 1; }

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.75) 0%, rgba(37, 99, 235, 0.65) 100%);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.parallax-logo h1 {
    font-size: 3.2rem;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    font-weight: 700;
    letter-spacing: -0.02em;
}
.parallax-logo p {
    font-size: 1.2rem;
    opacity: 0.92;
    font-weight: 500;
}

.slide-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 3;
}
.slide-indicator {
    width: 50px;
    height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slide-indicator.active {
    background: var(--accent);
    width: 70px;
}

@media (max-width: 768px) {
    .parallax-header { height: 45vh; min-height: 300px; }
    .parallax-logo h1 { font-size: 2rem; }
}
@media (max-width: 480px) {
    .parallax-header { height: 40vh; min-height: 250px; }
}

/* ==================== CATEGORIAS EM CÍRCULOS ==================== */
.categorias-circulos {
    margin-bottom: 48px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.categorias-circulos h2 {
    color: var(--text);
    margin-bottom: 28px;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.circulos-grid { display: none; }

.categorias-carrossel-container {
    position: relative;
    display: block;
    padding: 0 50px;
}

.categorias-carrossel {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 50px;
}
.categorias-track {
    display: flex;
    gap: 28px;
    min-width: min-content;
}

.categoria-circulo {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    width: 105px;
    flex-shrink: 0;
    scroll-snap-align: start;
}
.categoria-circulo:hover { transform: translateY(-6px); }

.circulo-imagem {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.12);
    transition: all 0.3s ease;
    background-color: var(--bg);
}
.categoria-circulo:hover .circulo-imagem {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(15, 118, 110, 0.18);
}
.circulo-imagem .emoji { font-size: 3rem; }
.categoria-nome {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Navegação carrossel categorias */
.categorias-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary);
}
.categorias-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.05);
}
.categorias-nav-btn.prev { left: 0; }
.categorias-nav-btn.next { right: 0; }
.categorias-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.categorias-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.categorias-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}
.categorias-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}
.categorias-dot:hover { background: var(--primary-light); }

.categorias-autoplay-control {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary);
    z-index: 10;
}
.categorias-autoplay-control:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ==================== BOTÕES CTA UNIFICADOS (LARANJA) ==================== */
.ver-categorias-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0 48px 0;
    padding: 0 20px;
}
.ver-categorias-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    font-family: var(--font);
    text-decoration: none;
    display: inline-block;
}
.ver-categorias-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    background: var(--accent);
    border-radius: 60px;
    border: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}
.ver-categorias-content:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
}
.ver-categorias-icon,
.ver-categorias-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.ver-categorias-btn:hover .ver-categorias-arrow { transform: translateX(6px); }
.ver-categorias-text {
    font-weight: 600;
    color: inherit;
}
.ver-categorias-glow { display: none; }

/* ==================== SEÇÃO DESTAQUES ==================== */
.destaques-section {
    margin-bottom: 48px;
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.destaques-header {
    margin-bottom: 24px;
    text-align: center;
}
.destaques-header h2 {
    color: var(--text);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.destaques-carrossel-container {
    position: relative;
    border-radius: var(--radius);
    padding: 0 45px;
}
.destaques-carrossel {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--border);
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 10px;
}
.destaques-carrossel::-webkit-scrollbar { height: 6px; }
.destaques-carrossel::-webkit-scrollbar-track { background: var(--border); border-radius: 10px; }
.destaques-carrossel::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

.destaques-track {
    display: flex;
    gap: 20px;
    min-width: min-content;
}

.destaque-card {
    flex: 0 0 auto;
    width: calc(25% - 15px);
    min-width: 260px;
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: start;
    border: 1px solid rgba(226, 232, 240, 0.3);
}
.destaque-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.destaque-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
    z-index: 2;
}
.destaque-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.destaque-content {
    padding: 16px;
    text-align: center;
}
.destaque-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.destaque-categoria {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Navegação carrossel destaques */
.carrossel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary);
}
.carrossel-nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(15,118,110,0.3);
}
.carrossel-nav-btn.prev { left: 0; }
.carrossel-nav-btn.next { right: 0; }
.carrossel-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.carrossel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}
.carrossel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}
.carrossel-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}
.carrossel-dot:hover { background: var(--primary-light); transform: scale(1.2); }

.carrossel-autoplay-control {
    position: absolute;
    bottom: 10px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary);
    z-index: 10;
}
.carrossel-autoplay-control:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.btn-explorar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    color: var(--primary);
    font-weight: 500;
    font-size: 1rem;
    margin-top: 24px;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
    border: none;
    width: 100%;
}
.btn-explorar:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ==================== RESPONSIVO PARTE 1 ==================== */
@media (max-width: 1024px) {
    .destaques-carrossel-container { padding: 0 40px; }
    .destaque-card { width: calc(33.33% - 14px); min-width: 240px; }
}

@media (max-width: 768px) {
    .categorias-circulos { padding: 20px 15px; }
    .categorias-circulos h2 { font-size: 1.3rem; margin-bottom: 20px; }
    .categorias-carrossel-container { padding: 0 40px; }
    .categorias-carrossel { scroll-padding: 0 40px; }
    .categorias-track { gap: 20px; }
    .categoria-circulo {
        width: calc((100vw - 80px - 20px) / 2);
        min-width: calc((100vw - 80px - 20px) / 2);
        padding: 20px 12px;
        background: var(--white);
        border-radius: 24px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .circulo-imagem { width: 140px; height: 140px; }
    .circulo-imagem .emoji { font-size: 4rem; }
    .categoria-nome { font-size: 1rem; margin-top: 8px; }

    .destaques-carrossel-container { padding: 0 35px; }
    .destaques-carrossel { scroll-padding: 0 5px; }
    .destaques-track { gap: 16px; }
    .destaque-card {
        width: calc(100% - 10px);
        min-width: calc(100% - 10px);
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    .carrossel-nav-btn { width: 36px; height: 36px; }
    .carrossel-nav-btn.prev { left: -5px; }
    .carrossel-nav-btn.next { right: -5px; }
    .carrossel-autoplay-control { width: 32px; height: 32px; bottom: 5px; right: 16px; }
}

@media (max-width: 600px) {
    .categorias-carrossel-container { padding: 0 35px; }
    .categorias-track { gap: 16px; }
    .categoria-circulo { width: calc((100vw - 70px - 16px) / 2); min-width: calc((100vw - 70px - 16px) / 2); padding: 18px 10px; }
    .circulo-imagem { width: 130px; height: 130px; }
    .circulo-imagem .emoji { font-size: 3.5rem; }
    .categoria-nome { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .categorias-carrossel-container { padding: 0 30px; }
    .categorias-carrossel { scroll-padding: 0 30px; }
    .categorias-track { gap: 14px; }
    .categoria-circulo { width: calc((100vw - 60px - 14px) / 2); min-width: calc((100vw - 60px - 14px) / 2); padding: 16px 8px; border-radius: 20px; }
    .circulo-imagem { width: 115px; height: 115px; }
    .circulo-imagem .emoji { font-size: 3rem; }
    .categoria-nome { font-size: 0.85rem; }
    .categorias-nav-btn { width: 36px; height: 36px; }
    .destaques-carrossel-container { padding: 0 30px; }
    .destaque-card { width: calc(100% - 5px); min-width: calc(100% - 5px); }
    .destaques-track { gap: 12px; }
}


/* ================================================================
   PARTE 2 – MODAIS, BANNERS, PROMOÇÕES, MAIS ACESSADOS, RODAPÉ
   ================================================================ */

/* ==================== SEÇÃO BANNERS ==================== */
.banners-carrossel-section {
    margin: 0 !important;
    padding: 0 !important;
    background: var(--bg);
    width: 100%;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.banners-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px 20px 24px;
    text-align: center;
}
.banners-header h2 {
    color: var(--text);
    font-size: 1.6rem;
    font-weight: 700;
}
.banners-header p {
    color: var(--text-light);
    margin-top: 8px;
}
.banners-carrossel-container {
    position: relative;
    width: 100%;
    border-radius: 0 !important;
    overflow: hidden;
}
.banners-swiper {
    width: 100%;
    height: 400px;
    border-radius: 0 !important;
}
.banner-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.banner-item:hover { transform: scale(1.02); }

.banners-swiper .swiper-button-next,
.banners-swiper .swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.banners-swiper .swiper-button-next:hover,
.banners-swiper .swiper-button-prev:hover {
    background: var(--primary);
    transform: scale(1.05);
}
.banners-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}
.banners-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
}

@media (max-width: 1024px) { .banners-swiper { height: 350px; } }
@media (max-width: 768px) {
    .banners-header { padding: 30px 16px 15px 16px; }
    .banners-header h2 { font-size: 1.3rem; }
    .banners-swiper { height: 250px; }
}
@media (max-width: 480px) { .banners-swiper { height: 200px; } }

/* ==================== BOTÃO VER PROMOÇÕES (CTA laranja) ==================== */
.promo-cta-wrapper {
    display: flex;
    justify-content: center;
    margin: 32px 0 20px 0;
    padding: 0 20px;
}
.promo-cta-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    font-family: var(--font);
    text-decoration: none;
    display: inline-block;
}
.promo-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    background: var(--accent);
    border-radius: 60px;
    border: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}
.promo-cta-content:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
}
.promo-cta-icon,
.promo-cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.promo-cta-btn:hover .promo-cta-arrow { transform: translateX(6px); }
.promo-cta-text {
    font-weight: 600;
    color: inherit;
}
.promo-cta-glow { display: none; }

/* ==================== SEÇÃO PROMOÇÕES EM DESTAQUE ==================== */
.promocoes-destaque-section {
    margin: 48px 0 64px;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.promocoes-destaque-header {
    text-align: center;
    margin-bottom: 40px;
}
.promocoes-destaque-header h2 {
    font-size: 1.6rem;
    color: var(--text);
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.promocoes-destaque-header p { color: var(--text-light); }

.promocoes-destaque-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
    margin-bottom: 32px;
}

.promo-destaque-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(226, 232, 240, 0.3);
}
.promo-destaque-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.promo-destaque-media {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    flex-shrink: 0;
}
.promo-destaque-media img,
.promo-destaque-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.promo-destaque-card:hover .promo-destaque-media img { transform: scale(1.05); }

.promo-destaque-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}
.promo-destaque-price-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0,0,0,0.8);
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.promo-destaque-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.promo-destaque-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.promo-estabelecimento {
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 12px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.descricao-texto {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 400;
}
.descricao-curta { display: block; }
.descricao-completa { display: none; }

.btn-ver-mais {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}
.btn-ver-mais:hover {
    color: var(--accent);
    gap: 8px;
}

.promo-destaque-info {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.75rem;
    color: var(--text-light);
    flex-wrap: wrap;
}
.promo-destaque-info .info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    padding: 4px 10px;
    border-radius: 20px;
}

.btn-pedido-promo {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #25D366, var(--primary));
    color: white;
    text-align: center;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
    border: none;
    cursor: pointer;
}
.btn-pedido-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.btn-pedido-promo-disabled {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--border);
    color: var(--text-light);
    text-align: center;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: auto;
    cursor: not-allowed;
}

.promo-destaque-galeria-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}
.promo-destaque-galeria-badge:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.btn-ver-todas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-ver-todas:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* ==================== SEÇÃO MAIS ACESSADOS ==================== */
.mais-acessados-section {
    margin: 48px 0 40px 0;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.mais-acessados-header {
    text-align: center;
    margin-bottom: 36px;
}
.mais-acessados-header .header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}
.mais-acessados-header .decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
    border-radius: 2px;
}
.mais-acessados-header .header-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}
.mais-acessados-header .header-icon {
    width: 28px;
    height: 28px;
    color: white;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.mais-acessados-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.mais-acessados-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.mais-acessados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.mais-acessado-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.3);
}
.mais-acessado-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.mais-acessado-card .card-imagem {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--bg);
}
.mais-acessado-card .card-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.mais-acessado-card:hover .card-imagem img { transform: scale(1.05); }
.mais-acessado-card .card-status {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(4px);
    z-index: 2;
}
.mais-acessado-card .card-status.aberto { background: rgba(34, 197, 94, 0.9); }
.mais-acessado-card .card-status.fechado { background: rgba(239, 68, 68, 0.9); }

.mais-acessado-card .card-conteudo {
    padding: 16px;
    text-align: center;
}
.mais-acessado-card .card-titulo {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mais-acessado-card .card-categoria-tag {
    display: inline-block;
    background: var(--bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--primary);
}

/* ==================== MODAIS ==================== */
/* Galeria */
.modal-galeria {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal-galeria.active { display: flex; }
.modal-galeria-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    max-height: 90vh;
    background: transparent;
}
.modal-galeria-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
    color: white;
}
.modal-galeria-close:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.1);
}
.galeria-swiper {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}
.galeria-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}
.galeria-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.galeria-swiper .swiper-button-next,
.galeria-swiper .swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
.galeria-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}
.galeria-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
}
.galeria-titulo {
    text-align: center;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px;
    background: rgba(0,0,0,0.5);
    border-radius: 40px;
    display: inline-block;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* Empresa */
.modal-empresa {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal-empresa.active {
    display: flex;
    animation: modalFadeIn 0.3s ease-out;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}
.modal-empresa-content {
    background: var(--white);
    border-radius: var(--radius);
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
}
.modal-media {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}
.modal-empresa-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-status-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 500;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    z-index: 10;
}
.modal-categoria-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 500;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    color: white;
    z-index: 10;
}
.modal-empresa-body { padding: 32px; }
.modal-header { text-align: center; margin-bottom: 28px; }
.modal-titulo {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}
.modal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
    background: var(--bg);
    padding: 24px;
    border-radius: 24px;
}
.modal-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.modal-info-item.full-width { grid-column: 1 / -1; }
.info-icon-wrapper {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.info-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}
.info-valor {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 400;
    line-height: 1.5;
}
.modal-metodos {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.modal-metodo-badge {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
}
.modal-metodo-delivery { background: #dbeafe; color: #1e40af; }
.modal-metodo-retirada { background: #dcfce7; color: #166534; }

.modal-acoes-modernas {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.acao-pedido-container { flex: 2; min-width: 200px; }
.modal-btn-modern {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
    background: var(--white);
}
.modal-btn-pedido-modern {
    background: linear-gradient(135deg, #25D366, var(--primary));
    color: white;
    border: none;
}
.modal-btn-contato-modern {
    border-color: var(--primary);
    color: var(--primary);
}
.modal-btn-share-modern {
    border-color: var(--secondary);
    color: var(--secondary);
}
.modal-btn-galeria-modern {
    border-color: var(--accent);
    color: var(--accent);
}
.modal-listagem {
    margin-top: 16px;
    padding-top: 24px;
    border-top: 2px solid var(--border);
}
.listagem-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}
.listagem-header h3 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
}
.modal-listagem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    max-height: 400px;
    overflow-y: auto;
}
.modal-listagem-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 14px;
    transition: all 0.3s ease;
}
.modal-listagem-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}
.modal-listagem-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}
.modal-listagem-info h4 {
    font-size: 0.95rem;
    margin: 0 0 6px 0;
    font-weight: 600;
}
.modal-listagem-info .categoria {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-bottom: 6px;
}
.modal-listagem-info .status {
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
}
.modal-listagem-info .status.aberto { background: #e8f7ef; color: #0a724a; }
.modal-listagem-info .status.fechado { background: #fee9e9; color: #b53b3b; }

/* Contato */
.modal-contato {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2100;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
.modal-contato.active { display: flex; }
.modal-contato-content {
    background: var(--white);
    border-radius: var(--radius);
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 28px;
}
.modal-contato-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 28px 24px;
    border-radius: var(--radius) var(--radius) 0 0;
    color: white;
    position: relative;
}
.modal-contato-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.modal-contato-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}
.modal-contato-close:hover {
    background: rgba(255,255,255,0.4);
    transform: rotate(90deg);
}
.modal-contato-body { padding: 24px; }
.contato-grupo {
    margin-bottom: 24px;
    background: var(--bg);
    border-radius: 20px;
    padding: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}
.contato-grupo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}
.contato-grupo-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.contato-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.contato-titulo {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}
.contato-descricao {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
}
.contato-valor {
    margin-left: 62px;
    font-size: 1rem;
}
.contato-valor a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.contato-valor a:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}
.contato-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, var(--primary));
    color: white !important;
    padding: 12px 20px;
    border-radius: 14px;
    justify-content: center;
    font-weight: 500 !important;
}
.contato-btn-whatsapp:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ==================== RODAPÉ MODERNO ==================== */
.footer-moderno {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #E2E8F0;
    padding: 60px 24px 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
}

.footer-moderno .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

.footer-moderno .footer-col h3 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}

.footer-moderno .footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #15a2ac, #F97316);
    border-radius: 3px;
}

.footer-moderno .footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #CBD5E1;
    margin-bottom: 12px;
}

.footer-moderno .footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-moderno .footer-col ul li {
    margin-bottom: 10px;
}

.footer-moderno .footer-col ul a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-moderno .footer-col ul a:hover {
    color: #15a2ac;
}

.footer-moderno .footer-col .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #CBD5E1;
}

.footer-moderno .footer-col .contact-item i {
    width: 24px;
    color: #15a2ac;
}

.footer-moderno .footer-cta {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-moderno .footer-cta p {
    font-size: 0.9rem;
    color: #E2E8F0;
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-moderno .btn-cadastrar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F97316;
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.footer-moderno .btn-cadastrar:hover {
    background: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
}

.footer-moderno .footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-moderno .footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E2E8F0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-moderno .footer-social a:hover {
    background: #15a2ac;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-moderno .footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-moderno .footer-bottom .copyright {
    font-size: 0.85rem;
    color: #94A3B8;
}

.footer-moderno .footer-bottom .footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-moderno .footer-bottom .footer-legal a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-moderno .footer-bottom .footer-legal a:hover {
    color: #15a2ac;
}

/* Responsivo */
@media (max-width: 1024px) {
    .footer-moderno .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-moderno .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-moderno .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-moderno .footer-bottom .footer-legal {
        justify-content: center;
    }
    .footer-moderno .footer-cta {
        padding: 20px;
    }
}

/* ==================== PWA INSTALL ==================== */
.install-pwa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    gap: 10px;
    transition: all 0.3s ease;
}
.install-pwa:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* ==================== CONTAINER E LAYOUT ==================== */
.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}
.parallax-header,
.banners-carrossel-section,
.promocoes-destaque-section,
.destaques-section,
.footer-simples,
.categorias-circulos {
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}
.parallax-content,
.banners-header,
.promocoes-destaque-header,
.destaques-header,
.footer-simples-content,
.categorias-circulos h2 {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}
.categorias-carrossel-container {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}
.promocoes-destaque-grid,
.promocoes-grid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}
.destaques-carrossel-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ==================== MODO ESCURO (opcional) ==================== */
@media (prefers-color-scheme: dark) {
    body {
        background: #0F172A;
        color: #E2E8F0;
    }
    .nav-superior {
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(12px);
        border-bottom-color: #1E293B;
    }
    .nav-link { color: #E2E8F0; }
    .nav-link:hover { color: var(--primary-light); }
    .nav-link.active { color: var(--primary-light); }
    .nav-mobile-toggle { background: #1E293B; border-color: #334155; }
    .nav-mobile-toggle span { background: var(--primary-light); }
    .nav-mobile-menu { background: #1E293B; }
    .nav-mobile-link { color: #E2E8F0; border-bottom-color: #334155; }
    .nav-mobile-link:hover { color: var(--primary-light); }

    .categorias-circulos { background: #1E293B; }
    .categoria-circulo { background: #1E293B; }
    .circulo-imagem { background: #0F172A; }
    .categoria-nome { color: #E2E8F0; }
    .categorias-nav-btn { background: #1E293B; border-color: #334155; color: var(--primary-light); }
    .categorias-nav-btn:hover { background: var(--primary); border-color: var(--primary); color: white; }

    .destaques-section { background: #1E293B; }
    .destaque-card, .promo-destaque-card, .mais-acessado-card, .promocoes-destaque-section {
        background: #1E293B;
        border-color: #334155;
    }
    .destaque-card h3, .promo-destaque-card h3, .mais-acessado-card .card-titulo {
        color: #E2E8F0;
    }
    .destaque-categoria, .promo-estabelecimento, .descricao-texto {
        color: #94A3B8;
    }
    .btn-explorar { color: var(--primary-light); }
    .btn-explorar:hover { color: var(--primary-light); }

    .banners-header h2, .promocoes-destaque-header h2, .destaques-header h2,
    .mais-acessados-header h2, .categorias-circulos h2 {
        color: #E2E8F0;
    }
    .banners-header p, .promocoes-destaque-header p, .mais-acessados-header p {
        color: #94A3B8;
    }

    .modal-empresa-content { background: #1E293B; }
    .modal-titulo { color: #E2E8F0; }
    .modal-info-grid { background: #0F172A; }
    .info-valor { color: #E2E8F0; }
    .modal-listagem-item { background: #0F172A; border-color: #334155; }
    .modal-listagem-item:hover { border-color: var(--primary); }
    .modal-listagem-info h4 { color: #E2E8F0; }
    .modal-listagem-info .categoria { color: #94A3B8; }
    .modal-close-btn { background: rgba(255,255,255,0.1); }

    .modal-contato-content { background: #1E293B; }
    .contato-grupo { background: #0F172A; border-color: #334155; }
    .contato-titulo { color: #E2E8F0; }
    .contato-descricao { color: #94A3B8; }
    .contato-valor a { color: var(--primary-light); }

    .footer-simples { background: #1E293B; border-top-color: #334155; }
    .footer-copyright { color: #94A3B8; }
    .footer-links a { color: #94A3B8; }
    .footer-links a:hover { color: var(--primary-light); }

    .install-pwa { background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark)); }
}

/* ==================== UTILITÁRIOS ==================== */
.loading-cards {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}
.no-results, .no-promos-destaque {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 24px;
}
.no-promos-icon { font-size: 3rem; margin-bottom: 16px; }
.error-message {
    color: #ef4444;
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .banners-header,
    .promocoes-destaque-header,
    .destaques-header,
    .footer-simples-content,
    .categorias-circulos h2,
    .promocoes-destaque-grid,
    .promocoes-grid,
    .destaques-carrossel-container,
    .parallax-content {
        padding-left: 16px;
        padding-right: 16px;
    }
    .categorias-carrossel-container { padding-left: 30px; padding-right: 30px; }
    .footer-links { gap: 16px; }
    .footer-links a { font-size: 0.75rem; }
    .promocoes-destaque-grid {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 16px !important;
        padding: 8px 16px 16px 16px !important;
        margin: 0 -16px !important;
        flex-wrap: nowrap !important;
    }
    .promocoes-destaque-grid::-webkit-scrollbar { display: none; }
    .promo-destaque-card {
        flex: 0 0 auto !important;
        width: 85% !important;
        min-width: 280px !important;
        max-width: 320px !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
        display: flex !important;
    }
    .promo-destaque-media { height: 180px; }
    .promo-destaque-content { padding: 16px; }
    .promo-destaque-content h3 { font-size: 1.1rem; }
    .descricao-texto { font-size: 0.8rem; }
    .promo-destaque-info .info-item { font-size: 0.7rem; padding: 3px 8px; }
    .btn-pedido-promo, .btn-pedido-promo-disabled { padding: 12px; font-size: 0.85rem; }
    .promo-destaque-price-badge { font-size: 0.85rem; padding: 6px 12px; }
    .modal-info-grid { grid-template-columns: 1fr; }
    .modal-acoes-modernas { flex-direction: column; }
    .modal-listagem-grid { grid-template-columns: 1fr; }
    .mais-acessados-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
}

@media (max-width: 480px) {
    .mais-acessados-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .mais-acessado-card .card-imagem { height: 150px; }
    .mais-acessado-card .card-conteudo { padding: 12px; }
    .mais-acessado-card .card-titulo { font-size: 0.85rem; }
    .install-pwa { bottom: 15px; right: 15px; padding: 12px 20px; font-size: 0.8rem; }
}

/* ========== MODAIS ========== */
.modal-empresa, .modal-contato, .modal-share, .modal-galeria {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal-empresa.active, .modal-contato.active, .modal-share.active, .modal-galeria.active {
    display: flex;
}
.modal-empresa-content, .modal-contato-content, .modal-share-content {
    background: white;
    border-radius: 32px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.modal-close-btn:hover {
    transform: rotate(90deg);
}
.modal-media {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 32px 32px 0 0;
}
.modal-empresa-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-status-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    z-index: 10;
}
.modal-status-aberto { background: #e8f7ef !important; color: #0a724a !important; }
.modal-status-fechado { background: #fee9e9 !important; color: #b53b3b !important; }
.modal-categoria-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    color: white;
    z-index: 10;
    font-weight: 500;
}
.modal-empresa-body { padding: 32px; }
.modal-titulo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
}
.modal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
    background: #F8FAFC;
    padding: 24px;
    border-radius: 24px;
}
.modal-info-item { display: flex; gap: 14px; align-items: flex-start; }
.modal-info-item.full-width { grid-column: 1 / -1; }
.info-icon-wrapper {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #141c2f;
    flex-shrink: 0;
}
.info-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}
.info-valor {
    font-size: 0.9rem;
    color: #1E293B;
    font-weight: 400;
    line-height: 1.5;
}
.modal-metodos {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.modal-metodo-badge {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}
.modal-metodo-delivery { background: #dbeafe; color: #1e40af; }
.modal-metodo-retirada { background: #dcfce7; color: #166534; }
.modal-acoes-modernas {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.modal-btn-modern {
    flex: 1;
    min-width: 140px;
    padding: 14px 24px;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #E2E8F0;
    background: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #1E293B;
}
.modal-btn-modern:hover { transform: translateY(-2px); }
.modal-btn-pedido-modern {
    background: linear-gradient(135deg, #25D366, #141c2f);
    color: white;
    border: none;
}
.modal-btn-pedido-modern:hover { box-shadow: 0 8px 25px rgba(37,211,102,0.3); }
.modal-btn-contato-modern { border-color: #141c2f; color: #141c2f; }
.modal-btn-share-modern { border-color: #2563EB; color: #2563EB; }
.modal-btn-galeria-modern { border-color: #F97316; color: #F97316; }
.modal-btn-pedido-disabled-modern { background: #e2e8f0; color: #94a3b8; cursor: not-allowed; border: none; }

.modal-listagem {
    margin-top: 16px;
    padding-top: 24px;
    border-top: 2px solid #E2E8F0;
}
.listagem-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}
.listagem-header h3 { color: #141c2f; font-size: 1.2rem; font-weight: 700; }
.modal-listagem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    max-height: 400px;
    overflow-y: auto;
    padding: 5px;
}
.modal-listagem-item {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    padding: 12px;
    gap: 14px;
    transition: all 0.3s ease;
}
.modal-listagem-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #141c2f;
}
.modal-listagem-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}
.modal-listagem-info h4 { font-size: 0.95rem; margin-bottom: 6px; font-weight: 600; color: #1E293B; }
.modal-listagem-info .categoria { font-size: 0.7rem; color: #64748b; margin-bottom: 6px; }
.modal-listagem-info .status { font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; display: inline-block; }
.modal-listagem-info .status.aberto { background: #e8f7ef; color: #0a724a; }
.modal-listagem-info .status.fechado { background: #fee9e9; color: #b53b3b; }

.modal-contato-content { max-width: 550px; }
.modal-contato-header {
    background: linear-gradient(135deg, #141c2f, #2563EB);
    padding: 28px 24px;
    border-radius: 32px 32px 0 0;
    color: white;
    position: relative;
}
.modal-contato-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}
.modal-contato-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}
.modal-contato-close:hover { background: rgba(255,255,255,0.4); transform: rotate(90deg); }
.modal-contato-body { padding: 24px; }
.contato-grupo {
    margin-bottom: 24px;
    background: #F8FAFC;
    border-radius: 20px;
    padding: 16px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}
.contato-grupo:hover {
    border-color: #141c2f;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.contato-grupo-header { display: flex; gap: 14px; margin-bottom: 12px; }
.contato-icon-wrapper { width: 48px; height: 48px; background: white; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.contato-titulo { font-weight: 700; font-size: 1rem; color: #1E293B; }
.contato-descricao { font-size: 0.75rem; color: #64748b; }
.contato-valor { margin-left: 62px; }
.contato-valor a { color: #141c2f; text-decoration: none; font-weight: 500; }
.contato-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #141c2f);
    color: white !important;
    padding: 12px 20px;
    border-radius: 14px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}
.contato-btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,211,102,0.3); }
.contato-acoes { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.btn-maps {
    background: #f1f5f9;
    color: #2563EB;
    border: none;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-maps:hover { background: #e2e8f0; transform: translateY(-2px); }

/* Modal Galeria */
.modal-galeria-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    background: transparent;
}
.modal-galeria-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    color: white;
    z-index: 20;
    transition: all 0.3s ease;
}
.modal-galeria-close:hover { background: rgba(255,255,255,0.4); transform: scale(1.1); }
.galeria-swiper { width: 100%; height: 100%; border-radius: 16px; }
.galeria-swiper .swiper-slide { display: flex; align-items: center; justify-content: center; background: #000; }
.galeria-swiper .swiper-slide img { max-width: 100%; max-height: 100%; object-fit: contain; }
.galeria-swiper .swiper-button-next,
.galeria-swiper .swiper-button-prev { color: white; background: rgba(0,0,0,0.5); width: 44px; height: 44px; border-radius: 50%; }
.galeria-titulo {
    text-align: center;
    margin-top: 20px;
    color: white;
    font-size: 1rem;
    padding: 12px;
    background: rgba(0,0,0,0.5);
    border-radius: 40px;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-weight: 500;
}
@media (max-width: 768px) {
    .modal-empresa-content, .modal-contato-content, .modal-share-content { max-width: 95%; }
    .modal-media { height: 250px; }
    .modal-titulo { font-size: 1.5rem; }
    .modal-info-grid { grid-template-columns: 1fr; padding: 16px; }
    .modal-acoes-modernas { flex-direction: column; }
    .modal-listagem-grid { grid-template-columns: 1fr; }
    .galeria-titulo { font-size: 0.8rem; white-space: nowrap; overflow-x: auto; max-width: 90%; }
}

/* ============================================================
   ESTILOS COMPLEMENTARES PARA MODAL (index.php)
   ============================================================ */

/* Fundo branco quando não houver imagem */
.modal-media {
    background: #ffffff;
}

/* Botão de vídeo */
.modal-btn-video-modern {
    border-color: #8B5CF6;
    color: #8B5CF6;
}
.modal-btn-video-modern:hover {
    background: #8B5CF6;
    color: #ffffff;
}

/* Garantir que os botões do modal fiquem em linha com rolagem no mobile */
@media (max-width: 768px) {
    .modal-acoes-modernas {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 6px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: center;
    }
    .modal-acoes-modernas::-webkit-scrollbar {
        display: none;
    }

    .modal-acoes-modernas .modal-btn-modern,
    .modal-acoes-modernas .modal-btn-modern a,
    .modal-acoes-modernas .modal-btn-modern div {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 6px 12px !important;
        font-size: 0.65rem !important;
        border-radius: 40px !important;
        white-space: nowrap !important;
        gap: 4px !important;
        border-width: 1.5px !important;
        background: transparent !important;
        border-color: #CBD5E1 !important;
        color: #1E293B !important;
        box-shadow: none !important;
        transition: all 0.2s ease;
        font-family: 'Inter', sans-serif;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0;
    }

    /* Exceção: botão "Faça seu pedido" mantém o gradiente */
    .modal-acoes-modernas .modal-btn-pedido-modern {
        background: linear-gradient(135deg, #25D366, #141c2f) !important;
        color: white !important;
        border: none !important;
    }

    /* Hover para os demais botões */
    .modal-acoes-modernas .modal-btn-modern:hover:not(.modal-btn-pedido-modern) {
        background: rgba(0,0,0,0.05) !important;
        border-color: #94A3B8 !important;
        transform: translateY(-1px);
    }

    /* Botões desabilitados */
    .modal-acoes-modernas .modal-btn-pedido-disabled-modern,
    .modal-acoes-modernas .modal-btn-galeria-disabled-modern {
        background: transparent !important;
        border-color: #CBD5E1 !important;
        color: #94A3B8 !important;
        opacity: 0.6;
        cursor: not-allowed;
        pointer-events: none;
    }

    .modal-acoes-modernas .modal-btn-modern i {
        font-size: 0.9rem;
        margin-right: 2px;
    }
}

.estabelecimento-descricao-wrapper {
    margin-bottom: 16px;
    width: 100%;
}
.estabelecimento-descricao-curta {
    line-height: 1.6;
    color: #475569;
    font-size: 0.9rem;
}
.estabelecimento-descricao-completa {
    display: none;
    line-height: 1.6;
    color: #475569;
    font-size: 0.9rem;
}
.btn-ver-mais-descricao {
    color: #141c2f;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 4px 8px;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.btn-ver-mais-descricao:hover {
    background: rgba(15,118,110,0.1);
}

/* ========== BANNERS EM CARDS ========== */
.banners-cards-section {
    padding: 40px 0 30px;
    background: #F8FAFC;
    border-radius: 0;
    margin: 0;
}

.banners-cards-section .banners-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.banners-cards-section .banners-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 8px;
}

.banners-cards-section .banners-header p {
    color: #64748B;
    font-size: 0.95rem;
}

.banners-cards-carrossel-container {
    position: relative;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.banners-cards-swiper {
    padding: 10px 5px 40px;
    overflow: visible;
}

.banners-cards-swiper .swiper-slide {
    height: auto;
    display: flex;
    padding: 5px;
}

.banner-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
    min-height: 380px; /* AUMENTADO de 280px para 380px */
}

.banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.banner-card-imagem {
    width: 100%;
    height: 100%;
    min-height: 380px; /* AUMENTADO de 280px para 380px */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.banner-card-overlay {
    padding: 30px 24px 24px; /* AUMENTADO padding */
    background: linear-gradient(transparent, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.85));
    width: 100%;
    color: white;
    position: relative;
}

.banner-card-overlay h3 {
    font-size: 1.3rem; /* AUMENTADO de 1.2rem */
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.banner-card-overlay p {
    font-size: 0.9rem; /* AUMENTADO de 0.85rem */
    opacity: 0.9;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.9);
}

.banner-card-btn {
    display: inline-block;
    padding: 8px 20px; /* AUMENTADO padding */
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.8rem; /* AUMENTADO de 0.75rem */
    font-weight: 600;
    color: white;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.banner-card:hover .banner-card-btn {
    background: white;
    color: #1E293B;
}

/* Swiper navigation para banners cards */
.banners-cards-swiper .swiper-button-next,
.banners-cards-swiper .swiper-button-prev {
    background: white;
    width: 44px; /* AUMENTADO */
    height: 44px; /* AUMENTADO */
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: none;
    color: #1E293B;
}

.banners-cards-swiper .swiper-button-next:after,
.banners-cards-swiper .swiper-button-prev:after {
    font-size: 18px; /* AUMENTADO */
    font-weight: 700;
}

.banners-cards-swiper .swiper-button-next:hover,
.banners-cards-swiper .swiper-button-prev:hover {
    background: #141c2f;
    color: white;
}

.banners-cards-swiper .swiper-pagination-bullet {
    background: #CBD5E1;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.banners-cards-swiper .swiper-pagination-bullet-active {
    background: #141c2f;
}

/* Desktop: 3 cards visíveis */
@media (min-width: 769px) {
    .banners-cards-swiper .swiper-slide {
        width: calc(33.333% - 20px) !important;
        margin-right: 20px;
    }
    
    .banner-card {
        min-height: 380px; /* AUMENTADO de 320px para 380px */
    }
    
    .banner-card-imagem {
        min-height: 380px; /* AUMENTADO de 320px para 380px */
    }
}

/* Mobile: 1 card visível */
@media (max-width: 768px) {
    .banners-cards-section {
        padding: 30px 0 20px;
    }
    
    .banners-cards-section .banners-header h2 {
        font-size: 1.3rem;
    }
    
    .banners-cards-carrossel-container {
        padding: 0 10px;
    }
    
    .banners-cards-swiper .swiper-slide {
        width: 100% !important;
        margin-right: 0;
        padding: 0 5px;
    }
    
    .banner-card {
        min-height: 270px; /* AUMENTADO de 220px para 270px */
        border-radius: 12px;
    }
    
    .banner-card-imagem {
        min-height: 270px; /* AUMENTADO de 220px para 270px */
    }
    
    .banner-card-overlay {
        padding: 22px 18px 18px;
    }
    
    .banner-card-overlay h3 {
        font-size: 1.1rem;
    }
    
    .banner-card-overlay p {
        font-size: 0.82rem;
    }
    
    .banner-card-btn {
        font-size: 0.72rem;
        padding: 6px 16px;
    }
    
    .banners-cards-swiper .swiper-button-next,
    .banners-cards-swiper .swiper-button-prev {
        display: none;
    }
    
    .banners-cards-swiper .swiper-pagination {
        bottom: 0;
    }
}

/* ==================== FIM ==================== */