/* Cores da marca */
:root{
    --cream:   #fdf8f1;
    --cream2:  #f6ecdd;
    --ink:     #3e332c;
    --muted:   #8d8073;
    --rose:    #e0728f;
    --rose-d:  #c85875;
    --pistache:#8fb573;
    --card:    #fffdf9;
    --line:    rgba(62,51,44,.12);
}

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

/* Base */
body{
    background: var(--cream);
    color: var(--ink);
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
}
a{ text-decoration: none; color: inherit; }
h1, h2, h3{ font-family: 'Playfair Display', serif; }

.wrap{
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow{
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
    color: var(--rose-d);
}

/* Botões */
.btn{
    display: inline-block;
    padding: 12px 24px;
    border-radius: 40px;
    background: var(--rose);
    color: #fff;
    font-weight: 700;
    transition: .25s;
}
.btn:hover{
    background: var(--rose-d);
    transform: translateY(-2px);
}
.btn-ghost{
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line);
}
.btn-ghost:hover{
    background: #fff;
    border-color: var(--rose);
    color: var(--rose-d);
}

/* Navegação */
.nav{
    position: sticky;   /* cola no topo */
    top: 0;
    background: rgba(253,248,241,.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    z-index: 50;
}
.nav-in{
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo{
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
}
.logo img{ height: 54px; width: auto; display: block; border-radius: 50%; }
.nav-links{
    display: flex;
    gap: 26px;
}
.nav-links a{
    color: var(--muted);
    font-weight: 600;
    transition: .2s;
}
.nav-links a:hover{ color: var(--rose-d); }

/* Hero */
.hero{
    text-align: center;
    padding: 90px 24px;
    background:
        radial-gradient(circle at 20% 20%, rgba(224,114,143,.14), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(143,181,115,.16), transparent 42%);
}
.hero .eyebrow{ display: inline-block; margin-bottom: 18px; }
.hero h1{
    font-size: clamp(38px, 6vw, 60px);
    line-height: 1.1;
    margin-bottom: 18px;
}
.hero h1 em{
    font-style: italic;
    color: var(--rose-d);
}
.hero p{
    max-width: 520px;
    margin: 0 auto 28px;
    color: var(--muted);
    font-size: 18px;
}
.hero-btns{
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-tags{
    margin-top: 30px;
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
}

/* Sabores */
#sabores{ padding: 80px 0; }
.sec-head{
    text-align: center;
    margin-bottom: 44px;
}
.sec-head h2{
    font-size: clamp(30px, 4.5vw, 44px);
    margin-bottom: 8px;
}
.sec-head p{
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto;
}
.flavors{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.flavor{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: .25s;
}
.flavor:hover{
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(62,51,44,.09);
}
.foto{ width: 100%; height: auto; display: block; }
.badge{
    display: inline-block;
    margin-top: 12px;
    padding: 3px 10px;
    border: 1px solid rgba(143,181,115,.4);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--pistache);
}

/* Filtros */
.filters{
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 34px;
}
.chip{
    padding: 9px 20px;
    border-radius: 30px;
    border: 1.5px solid var(--line);
    background: transparent;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--muted);
    cursor: pointer;
    transition: .2s;
}
.chip:hover{
    border-color: var(--rose);
    color: var(--rose-d);
}
.chip.on{
    background: var(--rose);
    border-color: var(--rose);
    color: #fff;
}
.flavor.hide{ display: none; }

/* Sobre */
.about{ background: var(--cream2); padding: 80px 0; }
.about-in{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}
.about h2{ font-size: clamp(28px, 4vw, 38px); margin-bottom: 16px; }
.about p{ color: var(--muted); margin-bottom: 14px; }
.about-points{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.point{
    flex: 1;
    min-width: 130px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 18px;
}
.point b{
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--rose-d);
}
.point span{ font-size: 13px; color: var(--muted); }
.about-visual{
    min-height: 300px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 30% 30%, rgba(224,114,143,.35), transparent 45%),
        radial-gradient(circle at 75% 70%, rgba(143,181,115,.35), transparent 45%),
        var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: var(--muted);
    font-weight: 700;
}
.mark{ color: var(--rose-d); font-weight: 700; font-style: italic; }
.about-logo{ max-width: 280px; width: 85%; height: auto; }
.footer-logo{ height: 90px; width: auto; border-radius: 50%; display: block; margin: 0 auto 12px; }

/* Galeria */
#galeria{ padding: 80px 0; }
.gallery{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.gal{
    aspect-ratio: 1;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(224,114,143,.12), rgba(143,181,115,.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    opacity: .6;
}
.gallery-note{ text-align: center; color: var(--muted); margin-top: 20px; }
.gallery-note a{ color: var(--rose-d); font-weight: 700; }

/* Visitar */
.visit{ background: var(--cream2); padding: 80px 0; }
.visit-in{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.visit-card{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
}
.visit-card h3{ font-size: 22px; margin-bottom: 16px; }
.visit-row{ display: flex; gap: 12px; margin-bottom: 14px; }
.visit-row b{ display: block; }
.visit-row span{ color: var(--muted); }

/* Rodapé */
footer{
    background: var(--ink);
    color: #eaddce;
    text-align: center;
    padding: 40px 24px;
}
footer .logo{ color: #fff; display: inline-block; margin-bottom: 8px; }
footer p{ color: #b7a99a; font-size: 14px; }

/* Mobile */
@media (max-width: 760px){
    .nav-links{ display: none; }
    .flavors{ grid-template-columns: repeat(2, 1fr); }
    .about-in, .visit-in{ grid-template-columns: 1fr; }
    .gallery{ grid-template-columns: repeat(2, 1fr); }
}
