/* ============================================
   Doce Amor Gi - Cardápio Digital
   Confeitaria fina — rosé, bege e chocolate
   ============================================ */

/* Variáveis CSS — paleta feminina premium: rosé, bege quente, chocolate suave */
:root {
    --branco: #fdf8f5;
    --bege: #f9f4ef;
    --bege-escuro: #efe6dd;
    --dourado: #b89ba0;
    --dourado-claro: #eadadd;
    --marrom: #5c4a42;
    --marrom-escuro: #423530;
    --marrom-medio: #73605a;
    --rosa-claro: #fcf6f7;
    --rosa-suave: #f5e8ec;
    --card-superficie: linear-gradient(180deg, #fdf9f7 0%, #faf4f0 100%);
    --sombra: rgba(92, 74, 66, 0.07);
    --transicao: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transicao-lenta: 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    --radius-card: 1.625rem;
    --shadow-card:
        0 2px 4px rgba(184, 155, 160, 0.07),
        0 10px 28px rgba(92, 74, 66, 0.05);
    --shadow-card-hover:
        0 6px 16px rgba(184, 155, 160, 0.12),
        0 18px 40px rgba(92, 74, 66, 0.07);
    /* Preço — chocolate rosado, elegante, sem contraste duro */
    --preco-chocolate: #634a42;
    --preco-chocolate-suave: #7a5f56;
    --preco-chocolate-hover: #5a3d35;
    /* Botões — tom taupe/rosé que harmoniza com a marca */
    --btn-primario-bg: linear-gradient(165deg, #7d6569 0%, #665055 48%, #554448 100%);
    --btn-primario-bg-hover: linear-gradient(165deg, #6f575c 0%, #58464b 48%, #463739 100%);
    --btn-primario-sombra: 0 3px 10px rgba(101, 80, 85, 0.18), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
    --btn-primario-sombra-hover: 0 5px 16px rgba(101, 80, 85, 0.22);
    --btn-secundario-borda: rgba(184, 149, 156, 0.35);
    --btn-secundario-borda-hover: rgba(184, 149, 156, 0.65);
    --radius-media-card: 1.25rem;
    --sombra-vitrine: 0 6px 20px rgba(92, 74, 66, 0.08), 0 2px 8px rgba(184, 155, 160, 0.12);
    --fonte-titulo: 'Cormorant Garamond', Georgia, serif;
    --fonte-texto: 'Outfit', -apple-system, sans-serif;
    /* Breakpoints (para referência - uso em media queries) */
    --bp-desktop: 1200px;
    --bp-laptop: 1200px;
    --bp-tablet: 992px;
    --bp-mobile: 768px;
    --bp-mobile-small: 480px;
}

/* Reset e Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--fonte-texto);
    font-weight: 400;
    color: var(--marrom);
    background: linear-gradient(165deg, var(--branco) 0%, var(--rosa-claro) 42%, var(--bege) 100%);
    background-attachment: fixed;
    line-height: 1.65;
    overflow-x: hidden;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transicao);
}

ul {
    list-style: none;
}

/* Container - responsivo */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   Botão Voltar ao Topo
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dourado) 0%, var(--marrom) 100%);
    color: var(--branco);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(92, 64, 51, 0.25);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease, transform var(--transicao), box-shadow var(--transicao);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(92, 64, 51, 0.35);
}

.scroll-to-top:focus {
    outline: 2px solid var(--dourado);
    outline-offset: 2px;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   WhatsApp Flutuante
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform var(--transicao), box-shadow var(--transicao);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float span {
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 2px;
}

/* ============================================
   Header e Navegação - Design Premium
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 242, 235, 0.96) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 160, 168, 0.22);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8) inset, 
                0 4px 40px rgba(92, 64, 51, 0.06),
                0 1px 3px rgba(92, 64, 51, 0.04);
    z-index: 100;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.header:hover {
    border-bottom-color: rgba(201, 160, 168, 0.4);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8) inset, 
                0 8px 50px rgba(92, 64, 51, 0.08),
                0 1px 3px rgba(92, 64, 51, 0.04);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    max-width: min(78vw, 340px);
    transition: opacity var(--transicao), transform var(--transicao);
}

.logo:hover {
    opacity: 0.94;
    transform: scale(1.015);
}

.logo-img {
    display: block;
    height: clamp(3.35rem, 7.5vw, 5rem);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
}

.page-hero-brand {
    margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-hero-brand-logo {
    height: clamp(4.75rem, 14vw, 7.5rem);
    width: auto;
    max-width: min(92vw, 380px);
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
}

.hero-title--brand {
    font-size: 0;
    line-height: 0;
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 400;
}

.hero-title--brand .hero-logo {
    display: block;
    height: clamp(9.25rem, 27vw, 15rem);
    width: auto;
    max-width: min(96vw, 540px);
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.38));
}

.sobre-mim-marca {
    margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.sobre-mim-logo {
    display: block;
    height: clamp(5rem, 15vw, 8rem);
    width: auto;
    max-width: min(100%, 380px);
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a,
.nav-dropdown-trigger {
    font-weight: 450;
    font-size: 0.9rem;
    color: var(--marrom);
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-menu > li > a::after,
.nav-dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu > li > a:hover::after,
.nav-dropdown:hover .nav-dropdown-trigger::after {
    width: 100%;
}

/* Dropdown Cardápio */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
}

.nav-dropdown-trigger::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--marrom);
    margin-top: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    order: 1;
}

.nav-dropdown:hover .nav-dropdown-trigger::before {
    transform: rotate(180deg);
    border-top-color: var(--dourado);
}

.nav-dropdown-trigger::after {
    left: 0;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    min-width: 260px;
    background: var(--branco);
    border-radius: 16px;
    border: 1px solid rgba(201, 160, 168, 0.2);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.9) inset,
                0 20px 50px -12px rgba(92, 64, 51, 0.15),
                0 8px 20px -8px rgba(92, 64, 51, 0.1);
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.3s,
                box-shadow 0.3s ease;
    z-index: 50;
    margin-top: 0.75rem;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(6px);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.9) inset,
                0 25px 60px -12px rgba(92, 64, 51, 0.2),
                0 10px 25px -8px rgba(92, 64, 51, 0.12);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu li + li {
    border-top: 1px solid rgba(245, 240, 232, 0.8);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 450;
    color: var(--marrom);
    letter-spacing: 0.05em;
    transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
    border-left: 3px solid transparent;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: linear-gradient(90deg, var(--rosa-claro) 0%, rgba(255, 255, 255, 0.5) 100%);
    color: var(--marrom-escuro);
    padding-left: 1.75rem;
    border-left-color: var(--dourado);
}

.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #128c7e !important;
    color: #ffffff !important;
    padding: 0.7rem 1.5rem;
    border-radius: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(18, 140, 126, 0.35), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-whatsapp::after {
    display: none !important;
}

.nav-whatsapp:hover {
    background: #0d6b60 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(18, 140, 126, 0.45), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(92, 64, 51, 0.05);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--marrom);
    transition: var(--transicao);
    border-radius: 1px;
}

/* Instagram — injetado no header (script.js), ao lado do menu */
.nav-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
    padding: 0.42rem 0.75rem 0.42rem 0.65rem;
    border-radius: 999px;
    font-family: var(--fonte-texto);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--marrom-escuro);
    background: rgba(255, 252, 251, 0.65);
    border: 1px solid rgba(210, 188, 195, 0.42);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
    z-index: 101;
}

.nav-instagram .instagram-icon {
    flex-shrink: 0;
    opacity: 0.92;
}

.nav-instagram:hover {
    color: #3d2f2c;
    background: rgba(248, 238, 242, 0.92);
    border-color: rgba(195, 168, 176, 0.55);
    transform: translateY(-1px);
}

.nav-instagram-handle {
    font-family: var(--fonte-titulo);
    font-style: italic;
    font-weight: 500;
}

@media (max-width: 520px) {
    .nav-instagram-handle {
        display: none;
    }

    .nav-instagram {
        padding: 0.4rem 0.55rem;
    }
}

/* ============================================
   Hero Section - Carrossel
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-carousel {
    isolation: isolate;
}

.hero-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: none; /* sem zoom - imagens estáticas */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 41, 32, 0.55) 0%, rgba(92, 61, 46, 0.4) 45%, rgba(201, 160, 168, 0.25) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-title {
    font-family: var(--fonte-titulo);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-family: var(--fonte-titulo);
    font-size: clamp(1.2rem, 3vw, 1.65rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.98);
    margin: -0.25rem auto 1.1rem;
    line-height: 1.45;
    max-width: 28em;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 1s ease-out 0.12s both;
}

.hero-tagline-sim {
    font-weight: 700;
    font-style: italic;
    color: #fff5f7;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-thickness: 0.06em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.55;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.28s both;
}

.hero-text {
    display: none;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.42s both;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white !important;
    font-weight: 500;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform var(--transicao), box-shadow var(--transicao);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--fonte-texto);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transicao);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dourado) 0%, #a87b82 50%, var(--marrom) 100%);
    color: var(--branco);
    box-shadow: 0 6px 20px rgba(201, 160, 168, 0.35), 0 2px 8px rgba(61, 41, 32, 0.12);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(201, 160, 168, 0.45), 0 4px 12px rgba(61, 41, 32, 0.15);
}

.btn-secondary {
    background: var(--bege);
    color: var(--marrom);
    border: 2px solid var(--dourado);
}

.btn-secondary:hover {
    background: var(--dourado);
    color: var(--branco);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   Seções
   ============================================ */
.section {
    padding: 5rem 0;
}

/* Âncoras: compensar header fixo no scroll (mobile e desktop) */
#categorias,
#sobre-mim,
#informacoes-encomendas {
    scroll-margin-top: 5.5rem;
}

.section-title {
    font-family: var(--fonte-titulo);
    font-size: clamp(2rem, 4.2vw, 2.85rem);
    font-weight: 500;
    color: var(--marrom-escuro);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    line-height: 1.15;
}

.section-subtitle {
    text-align: center;
    color: var(--marrom-medio);
    opacity: 0.72;
    font-weight: 400;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.55;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

/* Categorias - Estilo iFood */
.categorias {
    background: linear-gradient(180deg, var(--branco) 0%, var(--rosa-claro) 100%);
}

.categoria-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

@media (min-width: 769px) {
    .categoria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

.categoria-card {
    background: var(--branco);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(92, 61, 46, 0.08), 0 2px 12px rgba(201, 160, 168, 0.1);
    border: 1px solid rgba(235, 227, 215, 0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.categoria-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px -12px rgba(92, 61, 46, 0.18), 0 10px 28px -8px rgba(201, 160, 168, 0.2);
}

.categoria-img {
    height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.categoria-content {
    padding: 2rem;
}

.categoria-content h3 {
    font-family: var(--fonte-titulo);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--marrom);
    margin-bottom: 0.75rem;
}

.categoria-content p {
    color: var(--marrom);
    opacity: 0.85;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* ============================================
   Seção Produtos - Estilo iFood/Restaurante
   ============================================ */
.produtos {
    background: transparent;
}

.produtos-grid-home {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

@media (min-width: 769px) {
    .produtos-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.25rem;
    }
}

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

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

/* Tokens locais do card — creme/rosé, sombras difusas (só o componente) */
.produto-card-home,
.produto-card {
    --pc-radius: 2rem;
    --pc-radius-media: 1.5rem;
    --pc-sombra:
        0 1px 0 rgba(255, 255, 255, 0.72) inset,
        0 12px 36px rgba(118, 92, 88, 0.065),
        0 4px 14px rgba(130, 105, 100, 0.04);
    --pc-sombra-hover:
        0 1px 0 rgba(255, 255, 255, 0.82) inset,
        0 16px 44px rgba(118, 92, 88, 0.095),
        0 6px 18px rgba(184, 155, 160, 0.1);
}

.produto-card-home {
    background: linear-gradient(168deg, #fcf8f4 0%, #f8f1ec 38%, #f4eae8 72%, #f2e6e9 100%);
    border-radius: var(--pc-radius);
    overflow: hidden;
    box-shadow: var(--pc-sombra);
    border: 1px solid rgba(226, 205, 210, 0.55);
    padding: 0.75rem 0.75rem 0;
    transition: transform var(--transicao-lenta), box-shadow var(--transicao-lenta), border-color var(--transicao);
}

.produto-card-home:hover {
    transform: translateY(-5px);
    box-shadow: var(--pc-sombra-hover);
    border-color: rgba(212, 182, 190, 0.65);
}

/* Mídia — vitrine grande, integrada ao creme do card */
.produto-card-media {
    overflow: hidden;
    border-radius: var(--pc-radius-media);
    position: relative;
    background: linear-gradient(160deg, #eee4de 0%, #e8ddd8 45%, #e5d6d9 100%);
    aspect-ratio: 4 / 5;
    box-shadow:
        0 6px 22px rgba(105, 82, 78, 0.08),
        0 2px 8px rgba(184, 155, 160, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 0 0 1px rgba(255, 252, 250, 0.35);
}

.produto-card-media--home {
    aspect-ratio: 4 / 5;
}

.produto-thumb-img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transicao-lenta);
}

.produto-card:hover .produto-thumb-img,
.produto-card-home:hover .produto-thumb-img {
    transform: scale(1.04);
}

/* Carrossel de fotos dentro do card (fade, troca automática no JS) */
.produto-card-media .produto-thumb-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

.produto-thumb-carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.65s ease, transform var(--transicao-lenta);
    z-index: 0;
}

.produto-thumb-carousel-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.produto-thumb-carousel .produto-thumb-carousel-slide:not(.is-active) {
    transform: none !important;
}

.produto-card:hover .produto-thumb-carousel .produto-thumb-carousel-slide.is-active {
    transform: scale(1.04);
}

.produto-card-media--home .produto-thumb-img {
    height: 100%;
    min-height: 0;
}

.produto-img-home {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.produto-card-home:hover .produto-img-home {
    transform: scale(1.06);
}

.produto-content-home {
    padding: 2rem 1.65rem 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Título — serif editorial, contraste máximo com corpo */
.produto-content-home h3 {
    font-family: var(--fonte-titulo);
    font-size: clamp(1.48rem, 3.5vw, 1.88rem);
    font-weight: 600;
    font-style: italic;
    color: #2a2220;
    margin-bottom: 0.6rem;
    line-height: 1.12;
    letter-spacing: 0.025em;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

.produto-content-home p {
    font-family: var(--fonte-texto);
    color: #6b5c58;
    opacity: 0.92;
    font-size: 0.8125rem;
    margin-bottom: 0.45rem;
    line-height: 1.68;
    font-weight: 300;
    letter-spacing: 0.015em;
}

.produto-preco {
    display: block;
    font-weight: 500;
    color: var(--preco-chocolate);
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Preço — herança de valor: maior, chocolate com calor dourado */
.produto-content-home > .produto-preco,
.produto-content > .produto-preco:not(.produto-preco--lista) {
    font-family: var(--fonte-titulo);
    font-size: clamp(1.22rem, 3.1vw, 1.52rem);
    font-weight: 600;
    font-style: normal;
    color: #5c3f32;
    margin-top: 1.15rem;
    margin-bottom: 0.2rem;
    padding-top: 0;
    border-top: none;
    letter-spacing: 0.06em;
    font-variant-numeric: tabular-nums;
    line-height: 1.22;
    text-shadow: 0 1px 0 rgba(255, 252, 248, 0.9);
}

.btn-produto-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white !important;
    font-weight: 500;
    border-radius: 12px;
    transition: transform var(--transicao), box-shadow var(--transicao);
}

.btn-produto-whatsapp svg {
    width: 16px;
    height: 16px;
}

.btn-produto-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* ============================================
   Galeria - Estilo Instagram
   ============================================ */
.galeria {
    background: var(--bege);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
}

@media (min-width: 481px) {
    .galeria-grid {
        gap: 0.4rem;
    }
}

@media (min-width: 769px) {
    .galeria-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
}

.galeria-item {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 28px rgba(92, 61, 46, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.galeria-item:hover {
    transform: scale(1.04);
}

.galeria-instagram-cta {
    margin-top: 1.75rem;
    margin-bottom: 0;
    text-align: center;
}

.galeria-instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    max-width: 100%;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-family: var(--fonte-texto);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--marrom-escuro);
    background: rgba(255, 252, 251, 0.88);
    border: 1px solid rgba(218, 198, 204, 0.55);
    box-shadow: 0 4px 20px rgba(120, 90, 95, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.galeria-instagram-link:hover {
    transform: translateY(-2px);
    border-color: rgba(190, 160, 172, 0.65);
    background: #fffefb;
    box-shadow: 0 8px 28px rgba(120, 90, 95, 0.1);
}

.galeria-instagram-icon {
    flex-shrink: 0;
    opacity: 0.9;
}

/* ========== Home — vitrines com fotos reais dos doces ========== */
.section-showcase {
    padding: 4rem 0;
}

.section-showcase--soft {
    background: linear-gradient(180deg, var(--rosa-claro) 0%, var(--bege) 100%);
}

.showcase-doces-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 769px) {
    .showcase-doces-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

.showcase-doces-card {
    background: var(--branco);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(235, 227, 215, 0.92);
    box-shadow: 0 10px 40px rgba(92, 61, 46, 0.1), 0 2px 12px rgba(201, 160, 168, 0.12);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.38s ease;
}

.showcase-doces-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 56px rgba(92, 61, 46, 0.14), 0 8px 24px rgba(201, 160, 168, 0.18);
}

.showcase-img-wrap {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bege-escuro);
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-doces-card:hover .showcase-img {
    transform: scale(1.06);
}

.showcase-caption {
    padding: 1.35rem 1.5rem 1.65rem;
}

.showcase-caption h3 {
    font-family: var(--fonte-titulo);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--marrom);
    margin-bottom: 0.35rem;
}

.showcase-caption p {
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--marrom);
    opacity: 0.88;
}

.section-story {
    position: relative;
    padding: 4.5rem 0;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.section-story__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease-out;
}

.section-story:hover .section-story__bg {
    transform: scale(1.03);
}

.section-story__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(255, 253, 250, 0.93) 0%, rgba(255, 249, 244, 0.82) 45%, rgba(247, 242, 235, 0.35) 100%);
}

.section-story .container {
    position: relative;
    z-index: 1;
}

.section-story-block {
    max-width: 540px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 2rem 2.25rem;
    border-radius: 24px;
    border: 1px solid rgba(201, 160, 168, 0.28);
    box-shadow: 0 16px 48px rgba(92, 61, 46, 0.11);
}

.section-story-block h2 {
    font-family: var(--fonte-titulo);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 600;
    color: var(--marrom);
    margin-bottom: 0.85rem;
    line-height: 1.2;
}

.section-story-block p {
    margin-bottom: 1.25rem;
    line-height: 1.65;
    color: var(--marrom);
    font-size: 1.02rem;
}

.section-story-block .btn {
    margin-top: 0.25rem;
}

.section-story--verrines .section-story__overlay {
    background: linear-gradient(100deg, rgba(61, 41, 32, 0.78) 0%, rgba(92, 61, 46, 0.5) 48%, rgba(247, 242, 235, 0.25) 100%);
}

.section-story--verrines .section-story-block {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.4);
}

.section-highlight-split {
    padding: 4rem 0;
    background: var(--branco);
}

.highlight-split-grid {
    display: grid;
    gap: 2.25rem;
    align-items: center;
}

@media (min-width: 900px) {
    .highlight-split-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .highlight-split-grid--reverse .highlight-split-visual {
        order: 2;
    }

    .highlight-split-grid--reverse .highlight-split-text {
        order: 1;
    }
}

.highlight-split-visual {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(92, 61, 46, 0.16);
    border: 1px solid rgba(235, 227, 215, 0.95);
    transition: box-shadow 0.35s ease;
}

.highlight-split-visual:hover {
    box-shadow: 0 28px 64px rgba(92, 61, 46, 0.2);
}

.highlight-split-visual img {
    width: 100%;
    min-height: 280px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-split-visual:hover img {
    transform: scale(1.05);
}

.highlight-split-text h2 {
    font-family: var(--fonte-titulo);
    font-size: clamp(1.65rem, 2.8vw, 2.15rem);
    font-weight: 600;
    color: var(--marrom);
    margin-bottom: 0.85rem;
    line-height: 1.22;
}

.highlight-split-text p {
    line-height: 1.65;
    margin-bottom: 1.25rem;
    color: var(--marrom);
    opacity: 0.9;
    font-size: 1.02rem;
}

.section-story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.35rem;
}

/* ============================================
   Sobre Mim — Doce Amor Gi (home)
   ============================================ */
.sobre-mim {
    padding: clamp(3.5rem, 9vw, 5.75rem) 0;
    background: linear-gradient(168deg, var(--rosa-suave) 0%, var(--bege) 38%, var(--dourado-claro) 55%, var(--rosa-claro) 100%);
    position: relative;
    overflow: hidden;
}

.sobre-mim::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: min(55vw, 420px);
    height: min(55vw, 420px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 160, 168, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.sobre-mim::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: min(50vw, 360px);
    height: min(50vw, 360px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(235, 227, 215, 0.65) 0%, transparent 68%);
    pointer-events: none;
}

.sobre-mim .container {
    position: relative;
    z-index: 1;
}

.sobre-mim-grid {
    display: grid;
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: center;
}

@media (min-width: 992px) {
    .sobre-mim-grid {
        grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.02fr);
        gap: 3.5rem 4.5rem;
        align-items: center;
    }
}

.sobre-mim-titulo {
    font-family: var(--fonte-titulo);
    font-size: clamp(2.35rem, 5vw, 3.45rem);
    font-weight: 600;
    color: var(--marrom);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.03em;
    line-height: 1.12;
}

.sobre-mim-titulo::after {
    content: '';
    display: block;
    width: 4rem;
    height: 3px;
    margin-top: 1.1rem;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
    opacity: 0.9;
}

.sobre-mim-texto p {
    font-size: clamp(1rem, 1.05vw, 1.08rem);
    line-height: 1.9;
    color: var(--marrom);
    margin-bottom: 1.5rem;
    max-width: 38rem;
}

.sobre-mim-texto p:last-of-type {
    margin-bottom: 0;
}

.sobre-mim-texto strong {
    font-weight: 600;
    color: var(--marrom-escuro);
}

.btn-sobre-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: clamp(1.75rem, 3vw, 2.35rem);
    padding: 0.92rem 1.85rem;
    font-family: var(--fonte-texto);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--branco);
    background: linear-gradient(135deg, #c9a0a8 0%, var(--marrom) 100%);
    border: none;
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(92, 61, 46, 0.2), 0 2px 12px rgba(201, 160, 168, 0.35);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.btn-sobre-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(92, 61, 46, 0.25), 0 4px 16px rgba(201, 160, 168, 0.4);
    color: var(--branco);
}

.btn-sobre-whatsapp:focus-visible {
    outline: 2px solid var(--marrom);
    outline-offset: 3px;
}

.btn-sobre-whatsapp svg {
    flex-shrink: 0;
}

.sobre-mim-galeria {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
    max-width: 540px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .sobre-mim-galeria {
        max-width: none;
        margin: 0;
        gap: 1.15rem;
        grid-template-columns: 1.15fr 1fr;
        grid-template-rows: 1fr 1fr minmax(120px, auto);
    }
}

.sobre-mim-foto {
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(92, 61, 46, 0.13), 0 4px 14px rgba(201, 160, 168, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.75);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s ease;
    background: var(--bege-escuro);
}

.sobre-mim-foto:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 22px 52px rgba(92, 61, 46, 0.16), 0 8px 24px rgba(201, 160, 168, 0.22);
}

.sobre-mim-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (min-width: 992px) {
    .sobre-mim-foto--grande {
        grid-column: 1;
        grid-row: 1 / 3;
        min-height: 0;
    }

    .sobre-mim-foto--grande img {
        aspect-ratio: 3 / 4;
        min-height: 280px;
    }

    .sobre-mim-foto:not(.sobre-mim-foto--grande):not(.sobre-mim-foto--larga) img {
        aspect-ratio: 4 / 3;
        min-height: 150px;
    }

    .sobre-mim-foto--larga {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    .sobre-mim-foto--larga img {
        aspect-ratio: 21 / 9;
        min-height: 140px;
        max-height: 200px;
    }
}

@media (max-width: 991px) {
    .sobre-mim-foto--grande {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .sobre-mim-foto--grande img {
        aspect-ratio: 16 / 10;
        max-height: 260px;
    }

    .sobre-mim-foto:not(.sobre-mim-foto--grande):not(.sobre-mim-foto--larga) img {
        aspect-ratio: 1;
        min-height: 140px;
    }

    .sobre-mim-foto--larga {
        grid-column: 1 / -1;
    }

    .sobre-mim-foto--larga img {
        aspect-ratio: 2 / 1;
        min-height: 120px;
        max-height: 180px;
    }

    .sobre-mim-conteudo {
        text-align: center;
    }

    .sobre-mim-titulo::after {
        margin-left: auto;
        margin-right: auto;
    }

    .sobre-mim-texto p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   Avaliações
   ============================================ */
.avaliacoes {
    background: var(--rosa-claro);
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.avaliacao-card {
    background: var(--branco);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--sombra);
    transition: transform var(--transicao);
}

.avaliacao-card:hover {
    transform: translateY(-4px);
}

.avaliacao-estrelas {
    color: var(--dourado);
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.avaliacao-texto {
    font-style: italic;
    color: var(--marrom);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.avaliacao-autor {
    font-size: 0.9rem;
    color: var(--marrom);
    opacity: 0.8;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    background: linear-gradient(135deg, var(--marrom) 0%, var(--marrom-escuro) 100%);
    text-align: center;
}

.cta-title {
    font-family: var(--fonte-titulo);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--branco);
    margin-bottom: 0.5rem;
}

.cta-text {
    color: var(--bege);
    margin-bottom: 1.5rem;
}

.cta .btn-primary {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
    color: var(--marrom);
}

.cta-instagram-wrap {
    margin-top: 1.35rem;
    margin-bottom: 0;
}

.cta-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--fonte-texto);
    font-size: 0.92rem;
    font-weight: 400;
    color: rgba(253, 248, 245, 0.92);
    text-decoration: none;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    transition: color 0.3s ease, background 0.3s ease;
}

.cta-instagram-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.cta-instagram-handle {
    font-family: var(--fonte-titulo);
    font-style: italic;
    font-weight: 600;
}

/* ============================================
   Informações e Encomendas
   ============================================ */
.info-encomendas {
    position: relative;
    background: linear-gradient(165deg, #fdf9f5 0%, var(--rosa-claro) 42%, #f3e8e4 100%);
    overflow: hidden;
}

.info-encomendas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(232, 212, 216, 0.45) 0%, transparent 55%);
    pointer-events: none;
}

.info-encomendas .container {
    position: relative;
    z-index: 1;
}

.info-encomendas-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.info-encomendas-title {
    font-family: var(--fonte-titulo);
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 600;
    color: var(--marrom);
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.info-encomendas-title::after {
    content: '';
    display: block;
    width: 72px;
    height: 3px;
    margin: 1.25rem auto 0;
    background: linear-gradient(90deg, transparent, var(--dourado), transparent);
    border-radius: 2px;
}

.info-encomendas-subtitle {
    font-family: var(--fonte-texto);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--marrom);
    opacity: 0.82;
    line-height: 1.65;
    margin: 0;
}

.info-encomendas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 992px) {
    .info-encomendas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.25rem;
    }
}

.info-encomendas-card {
    background: var(--branco);
    border-radius: 22px;
    padding: 2.25rem 2rem 2.5rem;
    box-shadow:
        0 10px 40px rgba(92, 61, 46, 0.07),
        0 2px 12px rgba(201, 160, 168, 0.12);
    border: 1px solid rgba(252, 250, 248, 0.95);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s ease;
}

.info-encomendas-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 22px 48px rgba(92, 61, 46, 0.1),
        0 8px 24px rgba(201, 160, 168, 0.18);
}

.info-encomendas-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.35rem;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--rosa-suave) 0%, var(--dourado-claro) 100%);
    color: var(--marrom);
    box-shadow: 0 4px 14px rgba(201, 160, 168, 0.25);
}

.info-encomendas-card-heading {
    font-family: var(--fonte-titulo);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--marrom);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(235, 227, 215, 0.9);
}

.info-encomendas-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.info-encomendas-card-body p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--marrom);
    opacity: 0.92;
    margin: 0;
}

.info-encomendas-card-body strong {
    color: var(--marrom-escuro);
    font-weight: 600;
}

.info-encomendas-nowrap {
    white-space: nowrap;
}

.info-encomendas-lista-pagamento {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.info-encomendas-lista-pagamento li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.98rem;
    color: var(--marrom);
    line-height: 1.4;
}

.info-encomendas-lista-ico {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--rosa-claro);
    color: var(--dourado);
}

.info-encomendas-contato {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.info-encomendas-contato > li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-encomendas-contato-ico {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--rosa-claro);
    color: var(--marrom);
    opacity: 0.9;
}

.info-encomendas-contato-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--marrom);
    opacity: 0.55;
    margin-bottom: 0.25rem;
}

.info-encomendas-link {
    font-size: 0.98rem;
    color: var(--marrom-escuro);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 160, 168, 0.45);
    padding-bottom: 2px;
    transition: color var(--transicao), border-color var(--transicao);
}

.info-encomendas-link:hover,
.info-encomendas-link:focus-visible {
    color: #8f6570;
    border-bottom-color: var(--dourado);
}

.info-encomendas-link--multiline {
    line-height: 1.55;
    display: inline-block;
    max-width: 100%;
}

@media (max-width: 991px) {
    .info-encomendas-intro {
        margin-bottom: 2.75rem;
    }

    .info-encomendas-nowrap {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .info-encomendas-card {
        padding: 1.85rem 1.5rem 2rem;
    }

    .info-encomendas-card-heading {
        font-size: 1.2rem;
    }
}

/* ============================================
   Rodapé
   ============================================ */
.footer {
    background: var(--marrom-escuro);
    color: var(--bege);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: var(--fonte-titulo);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-brand p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-contact {
    flex: 1 1 220px;
    max-width: 280px;
}

.footer-contact p {
    font-size: 0.9rem;
    opacity: 0.88;
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

.footer-contact a {
    color: var(--dourado-claro);
}

.footer-contact a:hover {
    color: var(--branco);
}

.footer-social {
    text-align: right;
}

.footer-links-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dourado-claro);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bege);
    transition: color var(--transicao);
}

.footer-links a:hover {
    color: var(--dourado-claro);
}

.footer-links svg {
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(245, 240, 232, 0.2);
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ============================================
   Páginas de Cardápio
   ============================================ */
.page-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--marrom-escuro) 0%, var(--marrom) 50%);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--fonte-titulo);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--branco);
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--bege);
    max-width: 600px;
    margin: 0 auto;
}

.cardapio-intro {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cardapio-intro p {
    color: var(--marrom);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .cardapio-intro {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .cardapio-intro p {
        font-size: 1rem;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .cardapio-intro {
        padding: 1.5rem 0.75rem;
        margin-bottom: 1.5rem;
    }
}

/* Grid de produtos - páginas de cardápio */
.produtos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 4.75rem;
}

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

@media (min-width: 769px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.25rem;
    }
}

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

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

.produto-card {
    background: linear-gradient(168deg, #fcf8f4 0%, #f8f1ec 38%, #f4eae8 72%, #f2e6e9 100%);
    border-radius: var(--pc-radius);
    overflow: hidden;
    box-shadow: var(--pc-sombra);
    border: 1px solid rgba(226, 205, 210, 0.55);
    padding: 0.75rem 0.75rem 0;
    transition: transform var(--transicao-lenta), box-shadow var(--transicao-lenta), border-color var(--transicao);
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pc-sombra-hover);
    border-color: rgba(212, 182, 190, 0.65);
}

.produto-card .produto-thumb-img {
    height: 100%;
    min-height: 0;
}

.produto-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform var(--transicao);
}

.produto-card:hover .produto-img {
    transform: scale(1.05);
}

.produto-content {
    padding: 2rem 1.65rem 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.produto-content h3 {
    font-family: var(--fonte-titulo);
    font-size: clamp(1.48rem, 3.5vw, 1.88rem);
    font-weight: 600;
    font-style: italic;
    color: #2a2220;
    margin-bottom: 0.6rem;
    line-height: 1.12;
    letter-spacing: 0.025em;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

.produto-card-linha {
    font-family: var(--fonte-texto);
    font-size: 0.8125rem;
    font-weight: 300;
    color: #6b5c58;
    opacity: 0.9;
    line-height: 1.68;
    margin: 0 0 0.5rem;
    letter-spacing: 0.015em;
}

.produto-preco--lista {
    margin-top: 0;
    margin-bottom: 0.75rem;
    padding: 0.72rem 0.85rem;
    background: rgba(255, 250, 248, 0.82);
    border-radius: 1.1rem;
    border: 1px solid rgba(220, 198, 204, 0.45);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.produto-preco--lista .produto-preco-titulo {
    display: block;
    font-family: var(--fonte-texto);
    font-style: italic;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--marrom);
    opacity: 0.72;
    margin: 0 0 0.4rem;
}

.produto-preco-itens {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--fonte-texto);
    font-size: 0.86rem;
    color: var(--marrom);
    line-height: 1.5;
}

.produto-preco-itens li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.65rem;
    padding: 0.32rem 0;
    border-bottom: 1px solid rgba(92, 64, 51, 0.055);
}

.produto-preco-itens li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.produto-preco-q {
    font-weight: 500;
    opacity: 0.88;
    flex-shrink: 0;
}

.produto-card-obs {
    font-family: var(--fonte-texto);
    font-size: 0.72rem;
    font-weight: 400;
    color: #7a6c68;
    opacity: 0.75;
    margin: 0.15rem 0 0.85rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.produto-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white !important;
    font-weight: 500;
    border-radius: 12px;
    transition: var(--transicao);
}

.produto-whatsapp:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.produto-whatsapp svg {
    width: 16px;
    height: 16px;
}

/* Saiba mais — secundário: quase só traço, sem peso de “formulário” */
.btn-saiba-mais {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    padding: 0.38rem 0.52rem;
    font-size: 0.68rem;
    font-weight: 500;
    font-family: var(--fonte-texto);
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-transform: none;
    color: #756560;
    background: transparent;
    border: 1px solid rgba(198, 175, 182, 0.55);
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.btn-saiba-mais:hover {
    background: rgba(255, 252, 251, 0.65);
    color: #4f3d3a;
    border-color: rgba(175, 148, 158, 0.65);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset;
    transform: translateY(-1px);
}

.btn-saiba-mais:focus-visible {
    outline: 2px solid rgba(184, 149, 156, 0.55);
    outline-offset: 2px;
}

.produto-content-home .produto-buttons .btn-saiba-mais,
.produto-content .produto-buttons .btn-saiba-mais {
    margin-top: 0;
}

.produto-content-home .produto-buttons,
.produto-content .produto-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.65rem;
    align-items: stretch;
    margin-top: 1.45rem;
}

/* Hierarquia: carrinho principal (maior), saiba mais leve */
.produto-content-home .produto-buttons .btn-saiba-mais,
.produto-content .produto-buttons .btn-saiba-mais {
    order: 2;
    flex: 0 1 34%;
    min-width: 0;
    min-height: 42px;
}

.produto-content-home .produto-buttons .btn-adicionar-carrinho,
.produto-content .produto-buttons .btn-adicionar-carrinho {
    order: 1;
    flex: 1 1 62%;
    min-width: 0;
    min-height: 42px;
}

.produto-content-home .produto-buttons .btn-produto-whatsapp,
.produto-content .produto-buttons .btn-produto-whatsapp,
.produto-content-home .produto-buttons .produto-whatsapp,
.produto-content .produto-buttons .produto-whatsapp {
    order: 1;
    flex: 1 1 56%;
    min-width: 0;
    min-height: 40px;
    margin-top: 0;
}

@media (max-width: 480px) {
    .produto-content-home .produto-buttons,
    .produto-content .produto-buttons {
        flex-direction: column-reverse;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 0.55rem;
    }

    .produto-content-home .produto-buttons .btn-saiba-mais,
    .produto-content .produto-buttons .btn-saiba-mais,
    .produto-content-home .produto-buttons .btn-adicionar-carrinho,
    .produto-content .produto-buttons .btn-adicionar-carrinho,
    .produto-content-home .produto-buttons .btn-produto-whatsapp,
    .produto-content .produto-buttons .btn-produto-whatsapp,
    .produto-content-home .produto-buttons .produto-whatsapp,
    .produto-content .produto-buttons .produto-whatsapp {
        flex: 0 0 auto;
        width: 100%;
        order: unset;
    }

    .produto-content-home .produto-buttons .btn-adicionar-carrinho,
    .produto-content .produto-buttons .btn-adicionar-carrinho,
    .produto-content-home .produto-buttons .btn-produto-whatsapp,
    .produto-content .produto-buttons .btn-produto-whatsapp,
    .produto-content-home .produto-buttons .produto-whatsapp,
    .produto-content .produto-buttons .produto-whatsapp {
        order: -1;
    }
}

/* ============================================
   Modal Produto
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(61, 49, 44, 0.38);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.ativo {
    opacity: 1;
    visibility: visible;
}

.modal-produto {
    position: relative;
    width: 100%;
    max-width: min(640px, 96vw);
    max-height: 90vh;
    background: var(--branco);
    border-radius: calc(var(--radius-card) + 6px);
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(90, 69, 60, 0.12), 0 32px 80px rgba(90, 69, 60, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.75);
    transform: scale(0.96) translateY(8px);
    opacity: 0;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.modal-overlay.ativo .modal-produto {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--marrom);
    cursor: pointer;
    z-index: 10;
    transition: var(--transicao);
    line-height: 1;
}

.modal-close:hover {
    background: var(--branco);
    color: var(--marrom-escuro);
    transform: scale(1.05);
}

.modal-produto-media {
    position: relative;
    width: 100%;
    max-height: min(360px, 42vh);
    overflow: hidden;
    background: linear-gradient(180deg, var(--bege) 0%, var(--rosa-suave) 100%);
}

.modal-produto-foto {
    width: 100%;
    height: auto;
    min-height: 220px;
    max-height: min(360px, 42vh);
    object-fit: cover;
    object-position: center;
    display: block;
}

.modal-produto-body {
    padding: 1.85rem 1.75rem 2.1rem;
    overflow-y: auto;
    max-height: calc(90vh - 260px);
}

.modal-produto-nome {
    font-family: var(--fonte-titulo);
    font-size: clamp(1.55rem, 4vw, 1.85rem);
    font-weight: 600;
    color: var(--marrom-escuro);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.modal-produto-descricao {
    color: var(--marrom);
    opacity: 0.9;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    white-space: pre-line;
}

.modal-produto-preco-wrap {
    margin-bottom: 1.5rem;
}

.modal-produto-preco-wrap .modal-produto-subtitulo {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dourado);
    margin-bottom: 0.35rem;
}

.modal-produto-preco {
    font-weight: 600;
    color: var(--marrom);
    font-size: 1.15rem;
    line-height: 1.45;
    white-space: pre-line;
}

.modal-produto-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.1rem;
    font-size: 0.9rem;
}

.modal-produto-whatsapp svg {
    width: 18px;
    height: 18px;
}

/* Responsivo modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 1rem;
        align-items: flex-end;
    }

    .modal-produto {
        width: 100%;
        max-width: 100%;
        max-height: 92vh;
        max-height: 92dvh;
        border-radius: 20px 20px 0 0;
    }

    .modal-produto-media {
        max-height: 240px;
    }

    .modal-produto-foto {
        max-height: 240px;
        min-height: 200px;
    }

    .modal-produto-body {
        padding: 1.75rem 1.5rem 2rem;
        max-height: calc(92vh - 240px);
    }

    .modal-produto-nome {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        line-height: 1.25;
    }

    .modal-produto-descricao {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .modal-produto-preco-wrap {
        margin-bottom: 1.75rem;
    }

    .modal-produto-whatsapp {
        min-height: 50px;
        padding: 0.85rem 1.35rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 0.75rem;
    }

    .modal-produto {
        max-height: 95vh;
        max-height: 95dvh;
        border-radius: 16px 16px 0 0;
    }

    .modal-produto-media {
        max-height: 200px;
    }

    .modal-produto-foto {
        max-height: 200px;
        min-height: 180px;
    }

    .modal-produto-body {
        padding: 1.5rem 1.25rem 1.75rem;
        max-height: calc(95vh - 200px);
    }

    .modal-produto-nome {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .modal-produto-descricao {
        font-size: 0.95rem;
    }

    .modal-close {
        width: 40px;
        height: 40px;
        top: 0.875rem;
        right: 0.875rem;
        font-size: 1.5rem;
    }
}

/* Lista de sabores (Bolos Personalizados) */
.sabores-lista {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.sabores-lista ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.sabores-lista li {
    background: var(--branco);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 2px solid var(--dourado);
    color: var(--marrom);
    font-weight: 500;
    transition: var(--transicao);
}

@media (max-width: 768px) {
    .sabores-lista {
        margin-bottom: 2rem;
    }

    .sabores-lista ul {
        gap: 0.65rem;
    }

    .sabores-lista li {
        padding: 0.75rem 1.15rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .sabores-lista {
        margin-bottom: 1.5rem;
    }

    .sabores-lista ul {
        gap: 0.5rem;
    }

    .sabores-lista li {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

.sabores-lista li:hover {
    background: var(--dourado);
    color: var(--branco);
}

/* Grid de doces (mais compacto) - herda responsividade de .produtos-grid */
.doces-grid.produtos-grid {
    grid-template-columns: 1fr;
}

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

@media (min-width: 769px) {
    .doces-grid.produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

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

.doces-grid .produto-card .produto-card-media {
    aspect-ratio: 4 / 5;
}

.doces-grid .produto-card .produto-thumb-img {
    height: 100%;
    min-height: 0;
}

/* Sobremesas - fotos grandes - responsivo */
.sobremesas-grid.produtos-grid {
    grid-template-columns: 1fr;
}

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

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

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

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

.sobremesas-grid .produto-card-media {
    aspect-ratio: 4 / 5;
}

.sobremesas-grid .produto-thumb-img,
.sobremesas-grid .produto-img {
    height: 100%;
    min-height: 0;
}

@media (max-width: 768px) {
    .sobremesas-grid .produto-thumb-img,
    .sobremesas-grid .produto-img {
        min-height: 0;
    }
}

/* Destaque para salgados */
.salgados-destaque {
    text-align: center;
    padding: 1.5rem 2rem;
    background: var(--rosa-claro);
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--dourado);
}

.salgados-destaque p {
    font-size: 1.1rem;
    color: var(--marrom);
    font-weight: 500;
}

@media (max-width: 768px) {
    .salgados-destaque {
        padding: 1.5rem 1.5rem;
        margin-bottom: 2rem;
    }

    .salgados-destaque p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .salgados-destaque {
        padding: 1.25rem 1.25rem;
        margin-bottom: 1.5rem;
    }
}

/* Botão orçamento centralizado */
.btn-orcamento {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

/* ============================================
   Responsivo - Breakpoints: 1200 | 992 | 768 | 480
   ============================================ */

/* Topo do drawer mobile (marca + ícone Instagram) — inserido por script.js; invisível no desktop */
.nav-drawer-brand {
    display: none;
}

/* Tablet - 992px: menu hambúrguer / drawer premium */
@media (max-width: 992px) {
    /* Um só Instagram no mobile: dentro do drawer, não junto ao X do header */
    .nav-instagram {
        display: none !important;
    }

    .nav {
        padding: 1rem 0;
    }

    .logo {
        max-width: min(72vw, 300px);
    }

    .logo-img {
        height: clamp(3rem, 12vw, 4rem);
    }

    .page-hero-brand-logo {
        height: clamp(4.25rem, 18vw, 6.5rem);
        max-width: min(90vw, 340px);
    }

    .nav-drawer-brand {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-shrink: 0;
        padding: 0.35rem 0 1.15rem 0;
        margin: 0 1.35rem 0.65rem 1.35rem;
        border-bottom: 1px solid rgba(218, 198, 204, 0.5);
        opacity: 0;
        transform: translateY(-10px);
        transition:
            opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s,
            transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
    }

    .nav-menu.ativo .nav-drawer-brand {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-drawer-brand-text {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        min-width: 0;
    }

    .nav-drawer-brand-title {
        font-family: var(--fonte-titulo);
        font-style: italic;
        font-weight: 500;
        font-size: clamp(1.55rem, 4.8vw, 1.9rem);
        color: #2a2220;
        letter-spacing: 0.03em;
        line-height: 1.15;
    }

    .nav-drawer-brand-tagline {
        font-family: var(--fonte-texto);
        font-size: 0.62rem;
        font-weight: 500;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #8f7d7a;
    }

    /* Só ícone — evita duplicar o link do header no mobile */
    .nav-drawer-instagram {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 0.75rem;
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 12px;
        color: #5c4743;
        background: rgba(255, 252, 251, 0.75);
        border: 1px solid rgba(212, 188, 196, 0.55);
        text-decoration: none;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
        transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.25s ease;
    }

    .nav-drawer-instagram:hover {
        background: rgba(248, 236, 242, 0.92);
        color: #3d2f2c;
        border-color: rgba(190, 165, 174, 0.65);
    }

    .nav-drawer-instagram .instagram-icon {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(360px, 88vw);
        min-width: 288px;
        height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        background: linear-gradient(168deg, #fcf8f5 0%, #f8f1ee 42%, #f4e9eb 100%);
        flex-direction: column;
        align-items: stretch;
        padding: 4.5rem 0 calc(1.35rem + env(safe-area-inset-bottom, 0px));
        box-shadow:
            -16px 0 48px rgba(92, 72, 68, 0.07),
            -4px 0 20px rgba(184, 155, 160, 0.08);
        border-left: 1px solid rgba(232, 212, 218, 0.65);
        transform: translateX(104%);
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        overflow-y: auto;
        overflow-x: hidden;
        gap: 0;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.ativo {
        transform: translateX(0);
    }

    .nav-menu > li {
        margin: 0 1.35rem;
        border-bottom: 1px solid rgba(226, 210, 205, 0.45);
    }

    .nav-menu > li:has(> a.nav-whatsapp) {
        margin-top: auto;
        padding-top: 1.25rem;
        padding-bottom: 0.2rem;
        border-top: 1px solid rgba(218, 198, 204, 0.55);
        border-bottom: none;
    }

    .nav-menu > li > a:not(.nav-whatsapp) {
        display: block;
        padding: 1.05rem 0;
        font-family: var(--fonte-texto);
        font-weight: 500;
        font-size: 0.92rem;
        color: #453936;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

    .nav-menu > li > a:not(.nav-whatsapp)::after {
        display: none;
    }

    /* Dropdown como accordion vertical - 100% largura, sem position absolute */
    .nav-dropdown {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 1.05rem 0;
        text-align: left;
        flex-shrink: 0;
        font-family: var(--fonte-texto);
        font-weight: 500;
        font-size: 0.92rem;
        color: #453936;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

    .nav-dropdown-trigger::after {
        display: none;
    }

    .nav-dropdown-trigger::before {
        order: 1;
        border-top-color: #6b5a56;
        opacity: 0.75;
    }

    .nav-dropdown.expanded .nav-dropdown-trigger::before {
        transform: rotate(180deg);
    }

    /* Submenu expansível — painel rosé suave */
    .nav-dropdown-menu {
        position: static !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        margin: 0.35rem 0 0.65rem 0 !important;
        padding: 0.25rem 0 !important;
        box-shadow: 0 2px 14px rgba(120, 92, 95, 0.06) !important;
        background: rgba(255, 250, 249, 0.95) !important;
        border-radius: 14px;
        border: 1px solid rgba(220, 200, 206, 0.5) !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
        flex-shrink: 0;
    }

    .nav-dropdown-menu::before {
        display: none !important;
    }

    .nav-menu.ativo .nav-dropdown.expanded .nav-dropdown-menu {
        max-height: min(80vh, 720px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-dropdown-menu li {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-dropdown-menu li + li {
        border-top: 1px solid rgba(232, 218, 214, 0.65);
    }

    .nav-dropdown-menu a {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 0.78rem 1rem 0.78rem 1.35rem;
        font-family: var(--fonte-texto);
        font-size: 0.9rem;
        font-weight: 400;
        color: #53443f;
        letter-spacing: 0.025em;
    }

    .nav-dropdown-menu a:hover {
        background: linear-gradient(90deg, rgba(245, 232, 236, 0.65) 0%, transparent 100%);
        color: #3d302c;
        padding-left: 1.5rem;
    }

    /* Contato — CTA fixa no rodapé do drawer, tom rosé/champagne (não verde água) */
    .nav-menu > li > a.nav-whatsapp {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
        margin-top: 0.2rem;
        padding: 0.92rem 1.4rem !important;
        border-radius: 14px;
        font-family: var(--fonte-texto);
        font-weight: 500;
        font-size: 0.78rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #fffefb !important;
        background: linear-gradient(168deg, #9d9094 0%, #7d6d71 45%, #695c5f 100%) !important;
        border: 1px solid rgba(255, 252, 250, 0.28) !important;
        box-shadow:
            0 4px 20px rgba(90, 72, 76, 0.16),
            0 1px 0 rgba(255, 255, 255, 0.22) inset !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    }

    .nav-menu > li > a.nav-whatsapp:hover {
        background: linear-gradient(168deg, #908386 0%, #726366 100%) !important;
        color: #fffefb !important;
        transform: translateY(-2px);
        filter: brightness(1.03);
        box-shadow:
            0 8px 26px rgba(90, 72, 76, 0.2),
            0 1px 0 rgba(255, 255, 255, 0.25) inset !important;
    }

    .nav-toggle {
        display: flex;
        z-index: 101;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-radius: 12px;
        border: 1px solid rgba(210, 188, 195, 0.48);
        background: rgba(255, 252, 251, 0.78);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.88) inset;
    }

    .nav-toggle:hover {
        background: rgba(248, 240, 242, 0.92);
        border-color: rgba(195, 172, 180, 0.55);
    }

    .nav-toggle.ativo span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.ativo span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.ativo span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(48, 38, 36, 0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 99;
        animation: navOverlayFade 0.4s ease;
    }

    @keyframes navOverlayFade {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .nav-menu {
            transition: transform 0.2s ease;
        }

        .nav-drawer-brand {
            opacity: 1 !important;
            transform: none !important;
            transition: none;
        }

        .nav-overlay {
            animation: none !important;
        }

        .nav-dropdown-menu {
            transition: max-height 0.25s ease;
        }
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 1.25rem;
        right: 1rem;
    }

    .scroll-to-top {
        bottom: 4.5rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }

    .scroll-to-top svg {
        width: 22px;
        height: 22px;
    }

    .section {
        padding: 3.5rem 0;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    body {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 7.5rem 1.5rem 4rem;
    }

    .hero-title:not(.hero-title--brand) {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
        margin-bottom: 1.25rem;
        line-height: 1.2;
    }

    .hero-title--brand .hero-logo {
        height: clamp(8.25rem, 36vw, 12.5rem);
        max-width: min(96vw, 500px);
    }

    .hero-tagline {
        font-size: clamp(1.05rem, 4.2vw, 1.35rem);
        margin-bottom: 1rem;
        padding: 0 0.25rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.15rem);
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        opacity: 0.95;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.5rem;
        min-height: 48px;
        font-size: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: clamp(1.7rem, 5vw, 2.25rem);
        margin-bottom: 0.75rem;
        line-height: 1.25;
    }

    .section-subtitle {
        margin-bottom: 2.5rem;
        font-size: 1rem;
        line-height: 1.5;
    }

    .produtos-grid-home {
        gap: 1.75rem;
    }

    .produtos-grid {
        gap: 1.75rem;
        padding: 1.5rem 0 3rem;
    }

    .categoria-grid {
        gap: 1.75rem;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .categoria-img {
        height: 220px;
    }

    .categoria-content {
        padding: 1.75rem;
    }

    .categoria-content h3 {
        font-size: 1.45rem;
        margin-bottom: 1rem;
        line-height: 1.25;
    }

    .categoria-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .produto-img-home,
    .produto-img {
        height: 210px;
    }

    .produto-content-home,
    .produto-content {
        padding: 1.65rem 1.4rem 2rem;
    }

    .produto-content-home h3,
    .produto-content h3 {
        font-size: 1.38rem;
        margin-bottom: 0.55rem;
        line-height: 1.18;
    }

    .produto-content-home p,
    .produto-content p {
        font-size: 0.84rem;
        line-height: 1.62;
    }

    .produto-preco {
        margin-bottom: 1.25rem;
        font-size: 1rem;
    }

    .produto-buttons .btn-adicionar-carrinho,
    .produto-buttons .btn-produto-whatsapp,
    .produto-buttons .produto-whatsapp {
        min-height: 44px;
        padding: 0.58rem 1rem;
        font-size: 0.76rem;
    }

    .produto-buttons .btn-saiba-mais {
        min-height: 42px;
        padding: 0.5rem 0.7rem;
        font-size: 0.72rem;
    }

    .produto-content-home .produto-buttons,
    .produto-content .produto-buttons {
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .avaliacoes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .avaliacao-card {
        padding: 1.75rem;
    }

    .avaliacao-texto {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }

    .footer {
        padding: 3.5rem 0 1.5rem;
    }

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

    .footer-brand p {
        font-size: 1rem;
        line-height: 1.6;
    }

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

    .footer-links {
        justify-content: center;
    }

    .page-hero {
        padding: 6.5rem 1.5rem 3.5rem;
    }

    .page-hero h1 {
        font-size: clamp(1.7rem, 5vw, 2.25rem);
    }

    .page-hero p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .cta {
        padding: 3.5rem 0;
    }

    .cta-title {
        font-size: clamp(1.55rem, 4vw, 2rem);
        margin-bottom: 0.75rem;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        line-height: 1.5;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .scroll-to-top {
        bottom: 4.75rem;
        right: 1.25rem;
        width: 46px;
        height: 46px;
    }

    .scroll-to-top svg {
        width: 22px;
        height: 22px;
    }
}

/* Mobile pequeno - 480px */
@media (max-width: 480px) {
    .hero {
        padding: 7rem 1rem 3.5rem;
    }

    .hero-title:not(.hero-title--brand) {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-title--brand {
        margin-bottom: 1rem;
    }

    .hero-title--brand .hero-logo {
        height: clamp(7.75rem, 56vw, 11.5rem);
        max-width: min(98vw, 460px);
    }

    .sobre-mim-logo {
        height: clamp(4.5rem, 22vw, 7rem);
        margin-left: auto;
        margin-right: auto;
    }

    .sobre-mim-marca {
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }

    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .hero-buttons .btn {
        max-width: 100%;
        padding: 1rem 1.25rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.55rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        margin-bottom: 2rem;
    }

    .produtos-grid-home {
        gap: 1.5rem;
    }

    .produtos-grid-home {
        gap: 1.5rem;
    }

    .produtos-grid {
        gap: 1.5rem;
        padding: 1.25rem 0 2.5rem;
    }

    .categoria-grid {
        gap: 1.5rem;
    }

    .categoria-img {
        height: 200px;
    }

    .categoria-content {
        padding: 1.5rem;
    }

    .categoria-content h3 {
        font-size: 1.35rem;
    }

    .produto-img-home,
    .produto-img {
        height: 195px;
    }

    .produto-content-home,
    .produto-content {
        padding: 1.4rem 1.2rem 1.85rem;
    }

    .produto-content-home h3,
    .produto-content h3 {
        font-size: 1.28rem;
    }

    .galeria-grid {
        gap: 0.4rem;
    }

    .galeria-item {
        aspect-ratio: 1;
    }

    .avaliacao-card {
        padding: 1.5rem;
    }

    .footer {
        padding: 3rem 0 1.25rem;
    }

    .footer-content {
        gap: 1.75rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .cta {
        padding: 3rem 0;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .scroll-to-top {
        bottom: 4.25rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}
