/* --- Variables & Reset --- */
:root {
    --color-bg: #F3F3F3;
    --color-text: #01322E;
    --color-primary: #BC7768;
    --color-secondary: #01503A;
    --color-accent: #FAB9BD;
    --color-gold: #DEC19F;
    --color-forest: #214029;
    --color-white: #FFFFFF;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --spacing-container: 1.5rem;
    --max-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Rousseau Deco';
    src: url('RousseauDeco.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
}

.italic { font-style: italic; }
.text-gold { color: var(--color-gold); }
.text-primary { color: var(--color-primary); }

.text-center { text-align: center; }
.mt-60 { margin-top: 60px; }

/* --- Utility Components --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-gold {
    background-color: var(--color-white);
    color: var(--color-text);
    border-color: var(--color-white);
}

.btn-gold:hover {
    background-color: #f0f0f0;
}

.btn-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.full-width {
    width: 100%;
    text-align: center;
}

/* --- Header --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: var(--color-bg);
    transition: all 0.4s ease;
}

#main-header.scrolled {
    padding: 10px 0;
    background-color: rgba(243, 243, 243, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center; /* ISSO GARANTE O ALINHAMENTO VERTICAL */
    height: 100%; /* Garante que o container use a altura total do header */
}

.logo a {
    font-family: 'Rousseau Deco', sans-serif;
    font-size: 1.5rem; /* Tamanho da fonte */
    color: #01322E;
    text-decoration: none;
    text-transform: none;
    
    /* TRUQUES DE ALINHAMENTO */
    display: flex;       /* Torna o link um bloco flexível */
    align-items: center; /* Centraliza o texto dentro da área do link */
    line-height: 1;      /* Remove espaços extras verticais da fonte */
    
    /* AJUSTE FINO (Opcional): */
    /* Se a fonte parecer que está muito "pra cima", aumente esse padding */
    padding-top: 8px;    
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Muda a cor do link da página atual para Laranja/Terra Cotta */
.desktop-nav a.active {
    color: var(--color-primary);
    font-weight: 600; /* Deixa um pouquinho mais negrito */
}

/* Mantém o sublinhado fixo na página atual */
.desktop-nav a.active::after {
    width: 100%; 
}

/* Para o Menu Mobile também ficar colorido na página atual */
.mobile-menu-overlay a.active {
    color: var(--color-primary);
}


.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
    
    /* Garante alinhamento */
    display: flex;
    align-items: center; 
    padding: 0; /* Remove padding padrão de botão */
}

.mobile-only { display: block; width: 24px; } 

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
}
@media (min-width: 769px) {
    .mobile-menu-btn { display: none; }
    .mobile-only { display: none; }
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-text);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-overlay nav ul {
    text-align: center;
}

.mobile-menu-overlay a {
    display: block;
    color: var(--color-bg);
    font-family: var(--font-serif);
    font-size: 2rem;
    margin: 20px 0;
}

.mobile-menu-overlay a:hover {
    color: var(--color-gold);
}

.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--color-gold);
}

/* --- Hero Section --- */
#hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('background-home.webp'); 
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(1, 50, 46, 0.4), rgba(1, 50, 46, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* ATUALIZADO PARA SEO: Estilo do H1 (Texto Pequeno) */
.eyebrow {
    display: block;
    font-family: var(--font-sans); /* Força a fonte simples (Montserrat) */
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 400; /* Tira o peso padrão do H1 */
}

/* ATUALIZADO PARA SEO: Estilo do H2 (Texto Grande) */
/* Antes isso era "#hero h1", agora usamos a classe .hero-title */
.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

#hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 768px) {
    /* ATUALIZADO: Mudou de #hero h1 para .hero-title */
    .hero-title { font-size: 5rem; }
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    color: var(--color-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: 15px;
}

.separator {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 0 auto;
}

/* --- Product Grid --- */
#favoritos {
    padding: 100px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 6px 16px;
    letter-spacing: 1px;
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .wishlist-icon {
    opacity: 1;
    transform: translateY(0);
}

.product-info {
    padding: 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Novo estilo para preços com 'a partir de' */
.price-container {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.price-prefix {
    font-size: 0.8rem;
    color: #888;
    text-transform: lowercase;
    font-style: italic;
}

.price {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-secondary);
    font-style: italic;
}

/* --- Testimonials (Carousel) --- */
#depoimentos {
    padding: 100px 0;
    background-color: var(--color-white);
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-track-container {
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.carousel-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.current-slide {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.testimonial-card {
    background-color: var(--color-bg);
    padding: 60px 40px;
    text-align: center;
    border-radius: 4px;
    position: relative;
    width: 100%;
}

.quote-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-text);
    color: var(--color-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stars {
    color: var(--color-gold);
    margin-bottom: 20px;
    margin-top: 20px;
}

.testimonial-card blockquote {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 30px;
    line-height: 1.4;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text);
}

.location {
    font-size: 0.85rem;
    color: #888;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.prev-btn { left: -25px; }
.next-btn { right: -25px; }

@media (min-width: 900px) {
    .prev-btn { left: -60px; }
    .next-btn { right: -60px; }
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-indicator {
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.current-indicator {
    background: var(--color-primary);
    width: 30px;
    border-radius: 5px;
}

/* --- About Section --- */
#sobre {
    background-color: var(--color-forest);
    color: var(--color-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.leaf-decoration {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 200px;
    color: var(--color-leaf);
    opacity: 0.1;
    pointer-events: none;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
}

.about-image {
    position: relative;
    z-index: 2;
    border-radius: 4px;
    overflow: hidden;
    border: 4px solid rgba(222, 193, 159, 0.3);
}

.about-image img {
    width: 100%;
    height: auto; /* Isso impede que a foto estique */
    object-fit: cover;
}

.about-frame {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    z-index: 1;
    display: none;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 300;
}

.chef-signature {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chef-signature .line {
    width: 50px;
    height: 1px;
    background: var(--color-gold);
}

.signature-block {
    display: flex;
    flex-direction: column;
}

.signature-name {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-gold);
    font-size: 1.1rem;
}

.signature-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

@media (min-width: 900px) {
    .about-container {
        flex-direction: row;
    }
    .about-image-wrapper {
        width: 50%;
    }
    .about-text {
        width: 50%;
    }
    .about-frame { display: block; }
}

/* --- Footer --- */
#contato {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(222, 193, 159, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* --- Logo do Footer (Fundo Escuro -> Texto Dourado) --- */
.footer-brand h3 {
    font-family: 'Rousseau Deco', sans-serif; /* Nova Fonte */
    font-size: 2.2rem;
    letter-spacing: 1px;
    color: var(--color-gold) !important; /* Dourado para contraste */
    margin-bottom: 20px;
    text-transform: none;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 20px;
}

.social-links a {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-right: 15px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--color-gold);
    font-family: var(--font-serif);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.opening-hours {
    margin-top: 30px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.opening-hours .label {
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    margin-bottom: 5px;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.5fr;
    }
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    font-size: 0.8rem;
    opacity: 0.5;
}


/* =========================================
   CSS DA PÁGINA: BENTÔ CAKES
   ========================================= */

/* --- Page Header (Específico para páginas internas) --- */
.page-header {
    height: 40vh;
    min-height: 300px;
    background-color: var(--color-secondary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: var(--header-height); /* Compensa o menu fixo */
}

/* Padrão sutil de fundo para dar textura */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    font-weight: 300;
}

/* --- Section: Como Funciona (Steps) --- */
#como-funciona {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.step-item {
    flex: 1;
    text-align: center;
    max-width: 300px;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-white);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--color-secondary);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-white);
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.step-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Conector visual entre os passos */
.step-connector {
    display: none; /* Oculto no mobile */
}

@media (min-width: 768px) {
    .steps-container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .step-connector {
        display: block;
        flex: 1;
        height: 2px;
        background-color: var(--color-gold);
        opacity: 0.3;
        margin-top: 40px; /* Alinha com o meio do ícone */
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* --- Section: Inspiração & Sabores (COM SLIDESHOW AUTOMÁTICO) --- */
#inspiracao-sabores {
    padding: 80px 0;
    background-color: var(--color-white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* O Card do Bento */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    /* Força o formato QUADRADO (importante para Bentô) */
    aspect-ratio: 1 / 1; 
    background-color: #f0f0f0; /* Fundo enquanto carrega */
}

/* Container das 3 fotos */
.mini-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Estilo das imagens do slideshow */
.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a foto preencha o quadrado */
    opacity: 0; /* Começa invisível */
    /* Animação infinita de 12s (4s para cada uma das 3 fotos) */
    animation: fadeLoop 12s infinite; 
}

/* --- SINCRONIA DO SLIDESHOW --- */
/* Foto 1: Começa visível imediatamente */
.slide-img:nth-child(1) {
    animation-delay: 0s;
}
/* Foto 2: Começa a aparecer aos 4 segundos */
.slide-img:nth-child(2) {
    animation-delay: 4s;
}
/* Foto 3: Começa a aparecer aos 8 segundos */
.slide-img:nth-child(3) {
    animation-delay: 8s;
}

/* A Animação de Troca (Fade) */
@keyframes fadeLoop {
    0% { opacity: 0; }
    5% { opacity: 1; }   /* Entrada rápida */
    33% { opacity: 1; }  /* Fica visível por 1/3 do tempo */
    38% { opacity: 0; }  /* Sai */
    100% { opacity: 0; }
}

/* Legenda (Divertidos, Românticos, etc) */
.gallery-item figcaption {
    font-family: var(--font-serif);
    font-style: italic;
    text-align: center;
    color: var(--color-text);
    font-size: 0.9rem;
    
    /* Faz a legenda flutuar sobre a foto num fundo semitransparente */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    z-index: 10;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Menu Card (Estilo Menu de Restaurante) --- */
.menu-showcase {
    display: flex;
    justify-content: center;
}

.menu-card {
    background-color: #FAFAFA;
    padding: 20px; /* Borda externa */
    width: 100%;
    max-width: 900px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.menu-border-inner {
    border: 1px solid var(--color-gold);
    padding: 40px;
    text-align: center;
    position: relative;
}

.menu-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.menu-card h2 {
    font-size: 2.2rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.menu-intro {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu-columns {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.menu-group {
    background: var(--color-white);
    padding: 20px;
    border-radius: 4px;
}

.menu-group h4 {
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(188, 119, 104, 0.2);
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-group ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    color: var(--color-text);
}

.menu-group ul li::before {
    content: '•';
    color: var(--color-gold);
    position: absolute;
    left: 0;
}

.badge {
    background-color: var(--color-gold);
    color: var(--color-text);
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 2px;
    vertical-align: middle;
}

.menu-footer {
    margin-top: 40px;
}

@media (min-width: 768px) {
    .menu-columns {
        flex-direction: row;
        gap: 20px;
    }
    .menu-group {
        flex: 1;
    }
}

/* --- CTA Section --- */
.cta-section {
    padding: 80px 0;
    background-color: var(--color-text); /* Fundo escuro para contraste */
    color: var(--color-white);
    text-align: center;
}

.cta-container {
    display: flex;
    justify-content: center;
}

.cta-content {
    max-width: 700px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-gold);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Ajuste para o ícone do WhatsApp no botão */
.btn-large i {
    font-size: 1.2rem;
}

/* =========================================
   CSS DA PÁGINA: BOLOS FESTIVOS
   ========================================= */

/* Hero Específico com outra Imagem */
.bg-bolos {
    /* Certifique-se de ter a imagem 'background-bolos.jpg' na pasta */
    background-image: url('background-bolos.jpg'); 
    background-size: cover;
    background-position: center;
}

/* --- Guia de Tamanhos --- */
#guia-tamanhos {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 40px;
}

.size-card {
    background: var(--color-white);
    padding: 30px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.size-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.size-visual {
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

/* Círculos visuais de tamanho */
.circle {
    background-color: var(--color-accent);
    border-radius: 50%;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.size-pp { width: 60px; height: 60px; }
.size-p { width: 80px; height: 80px; }
.size-m { width: 100px; height: 100px; }
.size-g { width: 120px; height: 120px; }

.size-label {
    position: relative;
    z-index: 2;
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.size-card h3 {
    color: var(--color-primary);
    margin-bottom: 5px;
}

.size-desc {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.note-text {
    font-size: 0.9rem;
    color: #666;
}

/* --- Anatomia do Bolo (Diagrama CSS) --- */
#anatomia {
    padding: 80px 0;
    background-color: var(--color-white);
}

.anatomy-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.anatomy-text {
    flex: 1;
}

.anatomy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.anatomy-list {
    margin: 30px 0;
}

.anatomy-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.anatomy-list i {
    margin-right: 10px;
}

.customization-note {
    background-color: var(--color-bg);
    padding: 20px;
    border-left: 4px solid var(--color-gold);
    border-radius: 4px;
}

.customization-note h4 {
    color: var(--color-primary);
    margin-bottom: 5px;
}

/* O Bolo Visual (Desenhado com CSS puro) */
.anatomy-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

.cake-diagram {
    width: 280px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
}

.cake-topper {
    padding: 10px;
    color: var(--color-primary);
    font-family: var(--font-serif);
    font-style: italic;
    border-bottom: 1px dashed var(--color-gold);
    margin-bottom: 5px;
}

.cake-stack {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.layer {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponge {
    background-color: #FCEBCF; /* Cor de massa de bolo */
    height: 35px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.filling {
    background-color: #5D4037; /* Cor de recheio de chocolate */
    color: #fff;
    height: 25px;
    font-size: 0.7rem;
}

.cake-base {
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 5px;
    margin-top: 2px;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

@media (min-width: 900px) {
    .anatomy-container {
        flex-direction: row;
        align-items: center;
    }
}

/* --- Menu de Preços (Cards) --- */
#menu-bolos {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border-top: 4px solid transparent;
}

.highlight-card {
    border-top: 4px solid var(--color-primary);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
}

.price-header h3 {
    font-size: 1.8rem;
    color: var(--color-secondary);
}

.price-header p {
    color: #888;
    font-style: italic;
}

.price-table {
    margin-bottom: 30px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
    font-size: 1rem;
}

.dots {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px 5px 10px;
}

.price-note {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: #999;
    margin-top: 10px;
    font-style: italic;
}

.flavors-list {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.flavors-list h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 15px;
}

.flavors-list ul li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* --- Docinhos (Grid) --- */
#docinhos {
    padding: 80px 0;
    background-color: var(--color-white);
}

.sweets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sweet-card {
    background: var(--color-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.sweet-card:hover {
    transform: translateY(-5px);
}

.sweet-image {
    height: 200px;
    position: relative;
}

.sweet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sweet-weight {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text);
}

.sweet-info {
    padding: 20px;
}

.sweet-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--color-secondary);
}

.sweet-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    min-height: 40px;
}

.sweet-price {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 10px;
}

.sweet-price div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

/* --- Galeria de Bolos (Slider Corrigido) --- */
#galeria-bolos {
    padding: 60px 0 100px;
    background-color: var(--color-bg);
}

.cake-carousel-container {
    /* O relative segura as bolinhas aqui dentro */
    position: relative; 
    max-width: 900px;
    /* Formato Retangular no PC */
    aspect-ratio: 16 / 9; 
    margin: 0 auto;
    overflow: hidden; 
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.cake-track-container {
    height: 100%;
    width: 100%;
}

.cake-track {
    display: flex; /* Isso coloca as fotos lado a lado */
    transition: transform 0.5s ease-in-out;
    height: 100%;
    width: 100%;
    list-style: none;
}

.cake-slide {
    min-width: 100%; /* Ocupa 100% da largura */
    position: relative;
    height: 100%; 
    opacity: 1; /* Garante que a foto apareça */
}

.cake-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Botões (Setas) */
.cake-prev-btn, .cake-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    color: var(--color-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cake-prev-btn:hover, .cake-next-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.cake-prev-btn { left: 20px; }
.cake-next-btn { right: 20px; }

/* Bolinhas de navegação - Agora fixas no rodapé da foto */
.cake-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute; /* Flutua sobre a imagem */
    bottom: 20px; /* Fica 20px acima da borda inferior */
    left: 0;
    right: 0;
    z-index: 20;
    margin: 0;
}

.cake-indicator {
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cake-indicator.current-indicator {
    background: var(--color-primary);
    transform: scale(1.3);
    background-color: #fff;
}

/* ======================================================
   CORREÇÃO MOBILE FINAL (Versão: Foto Quadrada)
   ====================================================== */
@media (max-width: 768px) {

    /* 1. TIPOGRAFIA */
    /* .hero-title é a classe nova do texto grande. Definimos 2.5rem para caber no celular */
    .hero-title { font-size: 2.5rem !important; line-height: 1.1 !important; }
    
    /* Garante que o H1 (Eyebrow/Texto pequeno) continue pequeno */
    .eyebrow { font-size: 0.8rem !important; margin-bottom: 5px !important; }

    /* Ajustes gerais de títulos */
    .section-header h2, .anatomy-text h2, .menu-card h2 { font-size: 1.8rem !important; }
    h3, .price-header h3 { font-size: 1.4rem !important; }
    p, .menu-intro, .cta-content p { font-size: 1rem !important; padding: 0 10px; }

    /* 2. LAYOUT */
    .container { padding: 0 20px; }
    .gallery-grid, .pricing-grid, .sweets-grid, .menu-columns, .anatomy-container {
        display: flex; flex-direction: column; gap: 30px;
    }
    .menu-card { padding: 10px; }
    .menu-border-inner { padding: 20px 10px; }

    /* 3. CARROSSEL MOBILE (AJUSTE QUADRADO) */
    .cake-carousel-container {
        /* Aqui definimos que no celular será QUADRADO PERFEITO */
        aspect-ratio: 1 / 1 !important; 
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
        /* Garante que o container respeite o quadrado */
        height: auto !important; 
    }
    
    .cake-slide {
        height: 100%;
        min-width: 100%;
    }
    
    .cake-slide img {
        height: 100%;
        object-fit: cover; /* Garante que a foto preencha o quadrado sem esticar */
    }

    /* ESCONDE AS SETAS NO MOBILE (Evita botões voando) */
    .cake-prev-btn, .cake-next-btn {
        display: none !important; 
    }
    
    /* Ajusta as bolinhas para ficarem dentro da foto quadrada */
    .cake-nav {
        bottom: 15px; 
    }
}

/* =========================================
   CSS DA PÁGINA: CESTAS & PRESENTES
   ========================================= */

/* Correção de Espaçamento das Seções (Igual Bolos/Bento) */
#cestas-especiais, 
#outros-presentes {
    padding: 80px 0; /* Isso dá o respiro de 80px em cima e embaixo */
    background-color: var(--color-bg); /* Garante a cor de fundo padrão */
}

/* Opcional: Se quiser que a seção de "Outros Presentes" tenha fundo branco para destacar */
#outros-presentes {
    background-color: var(--color-white);
}


/* Background Específico */
.bg-cestas {
    background-image: url('background-cestas.jpg');
    background-size: cover;
    background-position: center;
}

/* Grid de Cestas */
.cestas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Card de Cesta (Layout Híbrido: Imagem no topo + Lista detalhada) */
.cesta-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border-bottom: 4px solid var(--color-primary);
}

.cesta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cesta-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.cesta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cesta-card:hover .cesta-image img {
    transform: scale(1.05);
}

.cesta-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cesta-content h3 {
    font-size: 1.6rem;
    color: var(--color-secondary);
    margin-bottom: 5px;
    font-family: var(--font-serif);
}

.cesta-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
    min-height: 40px; /* Alinha os preços visualmente */
}

.cesta-price-tag {
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.cesta-price-tag span {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
    margin-right: 5px;
}

/* Lista de Itens Estilizada */
.cesta-items {
    background-color: var(--color-bg);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.cesta-items h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text);
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 5px;
}

.cesta-items ul {
    list-style: none;
    padding: 0;
}

.cesta-items li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
    color: #555;
}

.cesta-items li::before {
    content: '\f00c'; /* FontAwesome Check Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-gold);
    font-size: 0.75rem;
}

.note-highlight {
    font-size: 0.8rem;
    color: var(--color-secondary);
    margin-top: 15px;
    font-weight: 500;
    font-style: italic;
    border-top: 1px dashed rgba(0,0,0,0.1);
    padding-top: 10px;
}

@media (max-width: 768px) {
    .cesta-image { height: 200px; }
    .cestas-grid { grid-template-columns: 1fr; }
}


/* 3. Correção da Etiqueta "Mais Pedida" (Ponto 3) */
.cesta-card {
    position: relative; /* Necessário para a etiqueta se posicionar */
}

.cesta-card .card-tag {
    z-index: 10; /* Garante que fique acima da foto */
    top: 0;      /* Cola no topo do card */
}

/* 7. Ajuste Mobile da Seção CTA (Surpreenda quem você ama) */
@media (max-width: 768px) {
    .cta-container {
        padding: 0 20px; /* Adiciona margem lateral no mobile */
    }
    
    .cta-content {
        width: 100%; /* Garante que não estoure */
    }
    
    /* Ajuste extra para a Tubolata no mobile */
    .sweet-price {
        font-size: 0.85rem; /* Reduz um pouco a fonte para caber na linha */
    }
}