/* ---- CSS Reset & Variables ---- */
:root {
    --primary-color: #9b1c1c;
    /* Burgundy da logomarca */
    --primary-light: #c0392b;
    /* Vermelho um pouco mais claro */
    --dark-bg: #111827;
    /* Um cinza muito escuro/preto fosco premium */
    --dark-text: #1f2937;
    --light-bg: #FDFBF7;
    /* Fundo bege bem suave */
    --white: #ffffff;
    --gold: #d4af37;
    /* Dourado para toques luxuosos */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Helpers */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
}

.text-logo {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.text-logo-white {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
}

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

/* ---- 1. Hero Section (Unindo Navbar & Carrossel) ---- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* Fundo escuro texturizado; a imagem é o hero_bg, tem fallback pra gradiente solido se falhar */
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.65)), url('../assets/hero_bg.jpg') center/cover no-repeat;
    background-color: var(--dark-bg);
    display: flex;
    flex-direction: column;
}

/* Curva/Onda decorativa no fundo da hero para dar charme */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--light-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
    z-index: 2;
}


/* ---- 2. Navbar ---- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.05);
    /* Efeito Glassmorphism */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(253, 251, 247, 0.98);
    /* Fundo Claro (light-bg) */
    padding: 0.8rem 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* Sombra mais suave */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    /* Tamanho bom pro logo redondo */
    transition: var(--transition-fast);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
    /* Sombra da logo tambem suavizada */
}

.logo img:hover {
    transform: scale(1.05);
}

.navbar.scrolled .logo img {
    height: 55px;
    /* Reduz ao scrollar */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

/* Força os links a ficarem escuros quando a navbar estiver no fundo branco */
.navbar.scrolled .nav-links a {
    color: var(--dark-text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--primary-color);
    /* Fica vermelho escuro no fundo branco */
    text-shadow: none;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.navbar.scrolled .mobile-toggle {
    color: var(--dark-text);
    /* Icone de menu celular tem que ficar escuro também */
}


/* ---- 3. Hero / Carrossel (Destaques) ---- */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10rem 5% 6rem;
    /* Mais espaco topo pra navbar fixa */
    gap: 4rem;
    position: relative;
    z-index: 5;
}

.hero-text {
    text-align: center;
    max-width: 800px;
}

.hero-text h1,
.hero-text h2 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
    animation: fadeUp 1s ease forwards;
}

.hero-text p {
    font-size: 1.2rem;
    color: #f3f4f6;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeUp 1.2s ease forwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(155, 28, 28, 0.4);
    transition: var(--transition-fast);
    animation: fadeUp 1.4s ease forwards;
}

.cta-button:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(155, 28, 28, 0.6);
}

/* O Carrossel propriamente dito */
.carousel-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    display: flex;
    align-items: center;
    animation: fadeIn 1.6s ease forwards;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 1.5rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    /* margin para evitar corte da sombra do primeiro item */
    padding: 0 0.5rem;
}

.carousel-item {
    min-width: calc(25% - 1.5rem);
    height: 320px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: grab;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    transition: var(--transition-slow);
    user-select: none;
    background-color: #2a2a2a;
    /* placeholder caso nao tenha magem */
}

/* Grabbing state via JS */
.carousel-item.grabbing {
    cursor: grabbing;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    pointer-events: none;
    /* pro grab funfar direito */
}

.carousel-item:hover img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 3rem 1.5rem 1.5rem;
    color: var(--white);
    display: flex;
    align-items: flex-end;
}

.item-overlay h3 {
    font-size: 1.35rem;
    font-weight: 500;
    transform: translateY(15px);
    transition: var(--transition-fast);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.carousel-item:hover .item-overlay h3 {
    transform: translateY(0);
    color: var(--gold);
}

/* setas carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(155, 28, 28, 0.6);
}


/* ---- 4. Categorias de Produtos ---- */
.categories-section {
    padding: 8rem 5%;
    text-align: center;
    background-color: var(--light-bg);
}

.section-title {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 4.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: var(--transition-slow);
    background-color: #e2e2e2;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.1) 80%);
    z-index: 1;
    transition: var(--transition-fast);
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 45px rgba(155, 28, 28, 0.15);
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card:hover::before {
    background: linear-gradient(to top, rgba(155, 28, 28, 0.95) 0%, rgba(17, 24, 39, 0.3) 100%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2.5rem;
    z-index: 2;
    text-align: left;
}

.card-content h3 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.card-link {
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.category-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}


/* ---- 5. Sobre Section (Exemplo visual premium) ---- */
.about-section {
    padding: 6rem 5% 8rem;
    background: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
    text-align: left;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 8px solid var(--light-bg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Sutil frame decorativo  */
.about-image::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}


/* ---- 6. Footer ---- */
.footer {
    background: var(--dark-bg);
    color: #e5e7eb;
    padding: 6rem 5% 2rem;
    position: relative;
}

/* Onda svg estilosa unindo sutilmente com o bloco anterior branco */
.footer::before {
    content: '';
    position: absolute;
    top: -49px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,40 C300,120 900,-40 1200,40 L1200,120 L0,120 Z" fill="%23111827"/></svg>') center/bottom no-repeat;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-brand img {
    max-width: 180px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    /* Tenta forcar branco se for logo escura, o fallback trata sem img */
}

.footer-brand p {
    opacity: 0.7;
    font-size: 1.1rem;
}

.footer h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    transition: var(--transition-fast);
    opacity: 0.7;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    opacity: 1;
    margin-left: 8px;
    /* Animacao simples */
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.social-btn.whatsapp:hover {
    background: #25D366;
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
    font-size: 0.95rem;
}

/* ---- Componentes Utilitários e Animações ---- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* ---- Responsividade ---- */
@media (max-width: 1024px) {
    .hero-text h2 {
        font-size: 3.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .carousel-item {
        min-width: calc(33.333% - 1.33rem);
    }
}

@media (max-width: 768px) {

    /* Mobile nav setup */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* hide default */
        width: 100%;
        height: 100vh;
        background: rgba(17, 24, 39, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease-in-out;
        z-index: 99;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .mobile-toggle {
        display: block;
        z-index: 100;
    }

    .hero-content {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .hero-text h2 {
        font-size: 2.6rem;
    }

    .carousel-item {
        min-width: calc(50% - 1rem);
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-card {
        height: 350px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .about-image {
        width: 100%;
        border-width: 4px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-brand img {
        margin: 0 auto 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 2.2rem;
    }

    .carousel-item {
        min-width: 100%;
    }

    .section-title {
        font-size: 2.6rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}

/* =========================================================
   PAGE: CARDÁPIO (MENUS)
========================================================= */

.menu-page-body {
    background-color: var(--light-bg);
}

.menu-hero {
    margin-top: 100px;
    /* Spacer for fixed navbar */
    padding: 6rem 5% 4rem;
    text-align: center;
    background: linear-gradient(to right, rgba(155, 28, 28, 0.05), rgba(155, 28, 28, 0.02));
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
    animation: fadeUp 0.8s ease forwards;
}

.menu-hero p {
    font-size: 1.25rem;
    color: #4b5563;
    animation: fadeUp 1s ease forwards;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5% 8rem;
}

.menu-category {
    margin-bottom: 5rem;
    padding-top: 4rem;
    /* Offset for scroll to links */
    margin-top: -4rem;
}

.menu-category .category-title {
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.menu-category .category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.category-subtitle {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

.menu-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 4rem 0;
}

/* --- Empadões Grid --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
}

.menu-item-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.menu-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.menu-item-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-item-card:hover .menu-item-img img {
    transform: scale(1.08);
}

.menu-item-details {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-details h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.menu-item-desc {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex: 1;
}

.size-options {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 1rem;
}

.size-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.size-option:last-child {
    border-bottom: none;
}

.size-option .price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- Cookies Grid (Lista maior, cards menores) --- */
.cookies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.cookie-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.cookie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(155, 28, 28, 0.1);
    border-bottom: 3px solid var(--primary-light);
}

.cookie-img {
    height: 180px;
    background: #f3f4f6;
}

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

.cookie-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cookie-info h4 {
    color: var(--dark-text);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.cookie-info p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    flex: 1;
}

.cookie-info .price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* --- Combos Grid --- */
.combos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.combo-card {
    background: var(--dark-bg);
    color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.combo-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.combo-img {
    height: 220px;
    width: 100%;
}

.combo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.combo-details {
    padding: 2.5rem 2rem;
}

.combo-details h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.combo-details p {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.combo-items {
    list-style: none;
    margin-bottom: 2.5rem;
}

.combo-items li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.combo-items i {
    color: var(--primary-light);
    margin-top: 4px;
}

.combo-price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

/* ---- 7. Revendedores Exclusivo ---- */
.reseller-hero {
    /* Usando o mesmo fundo premium escuro da home para ficar elegante e legível */
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.7)), url('../assets/hero_bg.jpg') center/cover no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.reseller-hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.reseller-hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.reseller-hero-content p {
    color: #f3f4f6; /* Cor clara e legível */
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.hero-benefits {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.benefit-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: var(--gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.benefit-badge:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--primary-light);
}

/* ---- 8. Floating Actions (WhatsApp & Back to Top) ---- */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-fast);
    text-decoration: none;
}

.floating-whatsapp:hover {
    background-color: #1ebe5d;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: var(--dark-bg);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Resposividad Menu */
@media (max-width: 1024px) {
    .combos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-hero {
        padding: 4rem 5% 3rem;
    }

    .menu-hero h1 {
        font-size: 2.5rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .cookie-card {
        flex-direction: row;
        align-items: center;
    }

    .cookie-img {
        width: 120px;
        height: 100%;
    }

    .cookie-info {
        padding: 1rem;
    }

    .combos-grid {
        grid-template-columns: 1fr;
    }
}

/* --- WhatsApp Buttons --- */
.btn-order {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.2rem;
    background-color: #25D366;
    /* WhatsApp Green */
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
    text-decoration: none;
}

.btn-order i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-order:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: var(--white);
}

.combo-btn-order {
    display: block;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #25D366;
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    text-decoration: none;
}

.combo-btn-order i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.combo-btn-order:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    color: var(--white);
}

/* =========================================================
   PAGE: B2B SECTION (REVENDEDORES) E ANIMAÇÕES
========================================================= */

.b2b-section {
    padding: 6rem 5%;
    background-color: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.b2b-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.b2b-text {
    flex: 1;
}

.b2b-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.b2b-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.b2b-benefits {
    list-style: none;
    margin: 2rem 0;
}

.b2b-benefits li {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.b2b-benefits i {
    color: var(--gold);
    font-size: 1.3rem;
}

.b2b-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--dark-bg);
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.b2b-btn i {
    margin-right: 8px;
}

.b2b-btn:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.3);
}

.b2b-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}

.b2b-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .b2b-container {
        flex-direction: column;
        text-align: center;
    }
    .b2b-benefits li {
        justify-content: center;
    }
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition-fast);
    animation: bounceIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}