/* style.css - Design Fresco e Moderno */

/* ===== VARIÁVEIS DE CORES ===== */
:root {
    --roxo-acai: #3d0b40;
    --roxo-acai-claro: #5a1a5e;
    --verde-guarana: #00C853;
    --verde-guarana-escuro: #00a844;
    --laranja-acao: #FF6B35;
    --laranja-acao-hover: #e55a2b;
    --branco: #ffffff;
    --cinza-fundo: #f8f9fa;
    --cinza-claro: #f1f3f5;
    --cinza-texto: #6c757d;
    --cinza-escuro: #495057;
    --sombra-leve: 0 2px 8px rgba(0, 0, 0, 0.08);
    --sombra-media: 0 4px 16px rgba(0, 0, 0, 0.1);
    --sombra-forte: 0 8px 32px rgba(0, 0, 0, 0.15);
    --transicao: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== RESET GERAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--cinza-fundo);
    color: var(--cinza-escuro);
    line-height: 1.6;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* ===== CABEÇALHO ROXO PROFUNDO ===== */
.cabecalho {
    background: var(--roxo-acai);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--sombra-media);
}

.container-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circulo {
    width: 44px;
    height: 44px;
    border: 2px solid var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    background: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 1rem;
}

.logo-texto {
    font-family: 'Allura', cursive !important;
    font-size: 2.4rem;
    /* No limite máximo solicitado */
    font-weight: 400 !important;
    color: var(--branco) !important;
    letter-spacing: 0.04em !important;
    /* Pequeno espaço para dar mais leitura */
    display: inline-block !important;
    line-height: 1.1 !important;
    text-transform: none !important;
    /* Mantém as maiúsculas e minúsculas naturais */
    vertical-align: middle !important;
}

/* Menu Desktop - Links Brancos */
.menu-desktop {
    display: none;
    gap: 32px;
}

@media (min-width: 1150px) {
    .menu-desktop {
        display: flex;
        flex: 1;
        justify-content: center;
    }
}

.menu-desktop a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transicao);
    position: relative;
    padding: 4px 0;
}

.menu-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--verde-guarana);
    transition: var(--transicao);
}

.menu-desktop a:hover::after,
.menu-desktop a.link-ativo::after {
    width: 100%;
}

.menu-desktop a:hover,
.menu-desktop a.link-ativo {
    color: var(--branco);
}

/* Botão Vendedor */
.btn-vendedor {
    background: var(--laranja-acao);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: var(--transicao);
}

.btn-vendedor:hover {
    background: var(--laranja-acao-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

@media(max-width: 694px) {
    .btn-vendedor {
        display: none;
    }
}

/* Botão Mobile */
.btn-mobile {
    background: none;
    border: none;
    color: var(--branco);
    font-size: 24px;
    cursor: pointer;
    display: block;
    margin-left: 15px;
    padding: 8px;
}

@media (min-width: 1150px) {
    .btn-mobile {
        display: none;
    }
}

.header-acoes {
    display: flex;
}

/* Menu Mobile */
.menu-mobile-lista {
    background: var(--roxo-acai-claro);
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-mobile-lista a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: var(--transicao);
}

.menu-mobile-lista a:hover,
.menu-mobile-lista a.link-ativo {
    color: var(--verde-guarana);
    padding-left: 8px;
}

.hidden {
    display: none;
}

/* ===== SEÇÃO HERO VERDE VIBRANTE ===== */
.hero-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--verde-guarana) 0%, var(--verde-guarana-escuro) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Padrão decorativo no Hero */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

/* ===== HERO DA HOME PAGE - IMAGEM DE FUNDO ===== */
.home-page .hero-section {
    padding: 0;
    background-image: url('./capas/novacapa.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 450px;
}

/* Banner redimensionado */

@media(max-width: 1052px) {
    .home-page .hero-section {
        min-height: 304px;
    }
}

@media(max-width: 736px) {
    .home-page .hero-section {
        min-height: 220px;
    }
}

@media(max-width: 500px) {
    .home-page .hero-section {
        min-height: 150px;
    }
}

.home-page .hero-section::before,
.home-page .hero-section::after {
    display: none;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.titulo-principal {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--branco);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .titulo-principal {
        font-size: 3.5rem;
    }
}

.subtitulo {
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.7;
}

.btn-catalogo {
    display: inline-block;
    background: var(--branco);
    color: var(--verde-guarana-escuro);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 36px;
    transition: var(--transicao);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-catalogo:hover {
    background: var(--roxo-acai);
    color: var(--branco);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===== DIVISOR EM ONDA ===== */
.wave-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave-divider.verde-para-branco {
    background: var(--verde-guarana);
}

/* Wave na Home Page: fundo transparente para mostrar a imagem do hero */
.home-page .wave-divider.verde-para-branco {
    background: transparent;
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.wave-divider.verde-para-branco svg path {
    fill: var(--cinza-fundo);
}

.wave-divider.branco-para-roxo {
    background: var(--cinza-fundo);
}

.wave-divider.branco-para-roxo svg path {
    fill: var(--roxo-acai);
}

.wave-divider.roxo-para-branco {
    background: var(--roxo-acai);
}

.wave-divider.roxo-para-branco svg path {
    fill: var(--cinza-fundo);
}

/* ===== SEÇÃO BANNER (legado) ===== */
.banner-section {
    background: var(--roxo-acai);
    position: relative;
}

.banner-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0.85;
    display: block;
}

@media (min-width: 768px) {
    .banner-img {
        height: 280px;
    }
}

/* ===== CATÁLOGO - SEÇÕES FULL-PAGE (100vh) ===== */
.catalogo-secao {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

/* Fallback para mobile (background-attachment: fixed não funciona bem) */
@supports (-webkit-touch-callout: none) {
    .catalogo-secao {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .catalogo-secao {
        background-attachment: scroll;
        min-height: 80vh;
    }
}

/* Conteúdo centralizado - botão permanece no centro */
.catalogo-conteudo {
    position: static;
    text-align: center;
    padding: 40px 24px;
    max-width: 800px;
}


.catalogo-descricao {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Botão VER PRODUTOS (reutilizado) */
.btn-ver-produtos {
    display: inline-block;
    background: var(--branco);
    color: var(--roxo-acai);
    padding: 16px 44px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transicao);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--branco);
    position: relative;
    z-index: 4;
}

.btn-ver-produtos:hover {
    background: transparent;
    color: var(--branco);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: var(--branco);
}

/* Seção verde: botão com cor verde */
.catalogo-verde .btn-ver-produtos {
    color: var(--verde-guarana-escuro);
}

.catalogo-verde .btn-ver-produtos:hover {
    color: var(--branco);
}

/* Ondas entre seções */


/* Onda no Topo da Seção */
.catalogo-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    /* Mesma altura da inferior */
    z-index: 3;
    overflow: hidden;
}

.catalogo-wave-top svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .catalogo-wave-top {
        height: 50px;
    }
}

/* Onda inferior da Seção */
.catalogo-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 3;
    overflow: hidden;
}

.catalogo-wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.catalogo-wave-roxo svg path {
    fill: var(--roxo-acai);
}

.catalogo-wave-verde svg path {
    fill: var(--verde-guarana);
}


/* ===== TÍTULOS DO CATÁLOGO - POSICIONADOS NO CANTO INFERIOR DIREITO ===== */

.catalogo-titulo {
    /* Posicionamento absoluto no canto inferior direito */
    position: absolute;
    bottom: 20px;
    right: 30px;
    margin: 0;
    z-index: 10;

    /* Tipografia cursiva local */
    font-family: 'Allura', cursive !important;
    font-weight: 400 !important;
    font-style: normal !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;

    /* Leitura sobre qualquer fundo */
    color: var(--branco) !important;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8) !important;
    line-height: 1.1 !important;

    /* Limpeza de propriedades antigas de centralização */
    text-align: right;
    transform: none;
}

/* Responsividade Adaptada */
@media (max-width: 768px) {
    .catalogo-titulo {
        font-size: 2.8rem !important;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .catalogo-titulo {
        font-size: 2.2rem !important;
        bottom: 10px;
        right: 10px;
    }
}

@media (min-width: 1200px) {
    .catalogo-titulo {
        font-size: 5rem !important;
    }
}

/* ===== SEÇÕES DE CONTEÚDO ===== */
.secao-conteudo {
    padding: 64px 24px;
    background: var(--cinza-fundo);
}

.secao-conteudo.fundo-branco {
    background: var(--branco);
}

.secao-titulo {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--roxo-acai);
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
}

@media(min-width: 1280px) {
    .sobre-nos-main-container img {
        margin-right: 30px;
    }
}


@media(max-width: 1280px) {
    .sobre-nos-main-container {
        flex-direction: column;
    }

    .secao-conteudo .container {
        max-width: 550px;
    }
    .sobre-nos-main-container img {
        margin: 15px 0px;
    }

    div {
        text-align: center;
    }


    .sobre-nos-second-content {
        margin-left: auto;
    }

}

@media(max-width: 490px) {
    .sobre-nos-main-container img {
        max-height: 250px;
    }
}

/* ===== CARDS PAGINA HOME ===== */
.grid-produtos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

@media (min-width: 768px) {
    .grid-produtos {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-produto {
    background: var(--branco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sombra-leve);
    border: none;
    transition: var(--transicao);
    text-align: center;
}

.card-produto:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-forte);
}

.card-icone-box {
    height: 200px;
    background: linear-gradient(135deg, var(--cinza-claro) 0%, var(--cinza-fundo) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icone-box i {
    font-size: 64px;
    color: var(--roxo-acai);
    opacity: 0.7;
}

.card-corpo {
    padding: 28px;
}

.card-corpo h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--roxo-acai);
    margin-bottom: 12px;
    font-weight: 600;
}

.card-corpo p {
    color: var(--cinza-texto);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.link-consulta {
    color: var(--verde-guarana);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transicao);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-consulta:hover {
    color: var(--verde-guarana-escuro);
}

.link-consulta::after {
    content: '→';
    transition: var(--transicao);
}

.link-consulta:hover::after {
    transform: translateX(4px);
}

/* ===== RODAPÉ ROXO PROFUNDO ===== */
.rodape {
    background: var(--roxo-acai);
    color: white;
    padding: 48px 24px 32px;
    position: relative;
}

/* Onda no topo do rodapé */
.rodape::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%233d0b40' d='M0,50 C360,100 1080,0 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.container-rodape {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .container-rodape {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.rodape-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--branco);
    display: block;
    margin-bottom: 4px;
}

.rodape-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.rodape-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-flutuante {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transicao);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-flutuante:hover {
    transform: scale(1.1) translateY(-4px);
    background: #1ebe57;
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

/* ===== PÁGINA CONTATO ===== */
.grid-contatos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    justify-items: center;
    max-width: 900px;
    margin: 40px auto;
}

@media (min-width: 768px) {
    .grid-contatos {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-contato {
    width: 100%;
    height: 50px;
    background: var(--branco);
    border-radius: 16px;
    box-shadow: var(--sombra-leve);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--cinza-texto);
    transition: var(--transicao);
    overflow: hidden;
    border-bottom: 4px solid transparent;
    padding: 50px 0px;
}

@media (min-width: 768px) {
    .card-contato {
        width: 100px;
        height: 100px;
        padding: 0px;
    }
}

.card-contato:hover {
    box-shadow: var(--sombra-forte);
    transform: translateY(-6px);
}

.card-contato img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bordas coloridas */
.borda-verde {
    border-color: var(--verde-guarana) !important;
}

.borda-vermelha {
    border-color: #ef4444 !important;
}

.borda-laranja {
    border-color: var(--laranja-acao) !important;
}

.borda-roxa {
    border-color: var(--roxo-acai) !important;
}

/* ===== UTILITÁRIOS ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.gap-10 {
    gap: 2.5rem;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.margin-top-8 {
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row !important;
    }

    .md\:w-1\/2 {
        width: 50% !important;
    }
}

/* ===== PÁGINA EMPRESA ===== */
.caixa-imagem-loja {
    width: 100%;
    height: 320px;
    background-color: var(--cinza-claro);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: var(--sombra-media);
    overflow: hidden;
}

.lista-vantagens {
    background-color: var(--branco);
    padding: 24px;
    border-radius: 12px;
    border: none;
    box-shadow: var(--sombra-leve);
    list-style: none;
    color: var(--cinza-escuro);
}

.lista-vantagens li {
    padding: 12px 0;
    border-bottom: 1px solid var(--cinza-claro);
    display: flex;
    align-items: center;
    gap: 12px;
}

.lista-vantagens li:last-child {
    border-bottom: none;
}

.lista-vantagens li i {
    color: var(--verde-guarana);
    font-size: 1.2rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

/* ===== PÁGINA NOVIDADES ===== */

/* ===== BLOCOS ZIG-ZAG - ORIGEM DO AÇAÍ ===== */
.origem-acai-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.origem-bloco {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.origem-bloco--invertido {
    flex-direction: row-reverse;
}

.origem-bloco__texto {
    flex: 1;
    min-width: 0;
}

.origem-bloco__imagem {
    flex: 1;
    min-width: 0;
}

.origem-bloco__titulo {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--roxo-acai);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.origem-bloco__descricao {
    margin-bottom: 1.25rem;
    color: var(--cinza-texto);
    font-size: 1.1rem;
    line-height: 1.7;
}

.origem-bloco__img {
    width: 100%;
    height: 340px;
    border-radius: 18px;
    box-shadow: var(--sombra-leve);
    object-fit: cover;
    display: block;
}

/* ===== RESPONSIVIDADE - COLUNA ÚNICA EM MOBILE ===== */
@media (max-width: 768px) {

    .origem-bloco,
    .origem-bloco--invertido {
        flex-direction: column;
    }

    .origem-acai-wrapper {
        gap: 40px;
    }

    .origem-bloco__img {
        height: 250px;
    }

    .origem-bloco__titulo {
        font-size: 1.5rem;
        text-align: center;
    }

    .origem-bloco__descricao {
        font-size: 1rem;
        text-align: center;
    }
}

.grid-novidades {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1024px;
    margin: 40px auto;
}

@media (min-width: 768px) {
    .grid-novidades {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== GRID RESPONSIVO PARA PRODUTOS ===== */
.grid-responsive-produtos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

@media (min-width: 480px) {
    .grid-responsive-produtos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .grid-responsive-produtos {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== BLOCO DE DESTAQUE COM FUNDO COLORIDO ===== */
.bloco-destaque {
    background-color: #d4bd27;
    color: #49156c;
    padding: 40px 24px;
    margin: 40px 0;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .bloco-destaque {
        padding: 60px 24px;
    }
}

.bloco-destaque p {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bloco-destaque p {
        font-size: 1.4rem;
        font-weight: bold;
    }
}

.card-noticia {
    background: var(--branco);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--sombra-leve);
    border-left: 6px solid transparent;
    transition: var(--transicao);
}

@media (max-width: 768px) {
    .card-noticia {
        padding: 15px 10px;
    }
}

.card-noticia:hover {
    box-shadow: var(--sombra-forte);
    transform: translateY(-4px);
}

.tag-noticia {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.borda-laranja-news {
    border-color: var(--laranja-acao);
}

.tag-laranja {
    background-color: #fff4ed;
    color: var(--laranja-acao);
}

.borda-verde-news {
    border-color: var(--verde-guarana);
}

.tag-verde {
    background-color: #e8faf0;
    color: var(--verde-guarana-escuro);
}

/* ===== PÁGINA MARCAS ===== */
.grid-marcas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .grid-marcas {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-logo {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--branco);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sombra-leve);
    border-bottom: 4px solid var(--verde-guarana);
    transition: var(--transicao);
    padding: 24px;
}

.card-logo:hover {
    transform: translateY(-6px);
    box-shadow: var(--sombra-forte);
}

.card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.7;
}

.card-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== PÁGINA CATÁLOGO ===== */
.grid-categorias {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .grid-categorias {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-categoria {
    background: var(--branco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sombra-leve);
    border: none;
    cursor: pointer;
    transition: var(--transicao);
    text-align: center;
}

.card-categoria:hover {
    transform: translateY(-6px);
    box-shadow: var(--sombra-forte);
}

.card-categoria-img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    padding: 20px;
    background: var(--cinza-claro);
}

@media (min-width: 768px) {
    .card-categoria-img {
        height: 180px;
    }
}

.card-categoria-corpo {
    padding: 20px;
    border-top: 3px solid var(--verde-guarana);
}

.card-categoria-titulo {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--roxo-acai);
    margin-bottom: 6px;
}

.card-categoria-qtd {
    font-size: 0.85rem;
    color: var(--cinza-texto);
}

/* Seção de Categoria (quando aberta) */
.secao-categoria {
    padding: 48px 24px;
    background: var(--cinza-fundo);
}

.categoria-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .categoria-header {
        flex-direction: row;
        justify-content: space-between;
    }
}

.btn-voltar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--branco);
    color: var(--roxo-acai);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid var(--roxo-acai);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transicao);
}

.btn-voltar:hover {
    background: var(--roxo-acai);
    color: var(--branco);
}

/* Imagem do Produto */
.card-produto-img {
    width: 100%;
    max-width: 280px;
    height: 200px;
    object-fit: contain;
    padding: 20px;
    background: var(--cinza-claro);
    margin: 0 auto;
    display: block;
}

@media (min-width: 768px) {
    .card-produto-img {
        height: 220px;
    }
}

/* Corpo do Card de Produto */
.card-produto-corpo {
    padding: 20px;
    border-top: 3px solid var(--verde-guarana);
}

.card-produto-titulo {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cinza-escuro);
    margin-bottom: 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

/* Botão Consultar Preço */
.btn-consultar {
    display: inline-block;
    background: var(--verde-guarana);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transicao);
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

.btn-consultar:hover {
    background: var(--verde-guarana-escuro);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}

/* Botão alternativo laranja */
.btn-laranja {
    background: var(--laranja-acao);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-laranja:hover {
    background: var(--laranja-acao-hover);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ===== ANIMAÇÕES ===== */
.fade-in {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação de entrada suave */
.slide-in {
    animation: slideIn 0.6s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVIDADE EXTRA ===== */
@media (max-width: 480px) {
    .titulo-principal {
        font-size: 1.8rem;
    }

    .subtitulo {
        font-size: 1rem;
    }

    .hero-section {
        padding: 60px 20px;
    }

    .btn-catalogo {
        padding: 14px 32px;
        font-size: 13px;
    }

    .container-nav {
        padding: 12px 16px;
    }

    .logo-texto {
        font-size: 1.8rem;
    }
}

/* ===== UTILITÁRIOS DE ESPAÇAMENTO ===== */
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}