/* ============================================================
   DU DUDU DOCERIA — style.css
   Mobile-first · CSS3 · Sem frameworks
   ============================================================ */

/* ── 1. VARIÁVEIS ─────────────────────────────────────────── */
:root {
  --rose-50:  #fff0f5;
  --rose-100: #fce4ec;
  --rose-200: #f8bbd0;
  --pink:     #e91e8c;
  --pink-dk:  #ad1457;
  --green:    #8bc34a;
  --green-dk: #558b2f;
  --wa:       #25D366;
  --wa-dk:    #1da851;
  --text:     #333333;
  --text-md:  #666666;
  --text-lt:  #999999;
  --white:    #ffffff;

  --font-h: 'Dancing Script', cursive;
  --font-b: 'Poppins', sans-serif;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-inf: 9999px;

  --sh-sm: 0 2px  10px rgba(233,30,140,.08);
  --sh-md: 0 4px  20px rgba(233,30,140,.12);
  --sh-lg: 0 8px  40px rgba(233,30,140,.16);
  --sh-xl: 0 16px 60px rgba(233,30,140,.20);

  --t: 280ms ease;
  --t-slow: 520ms ease;

  --px: 1.25rem;
  --sec: 5rem 0;
}

/* ── 2. RESET ─────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--rose-50);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 3. UTILIDADES ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--px);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--pink);
  line-height: 1.15;
  margin-bottom: .6rem;
}

.section-sub {
  font-size: .95rem;
  color: var(--text-md);
  max-width: 480px;
  margin: 0 auto;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: var(--r-inf);
  font-family: var(--font-b);
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}

.btn--sm  { padding: .6rem 1.2rem;  font-size: .85rem; }
.btn--lg  { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn--xl  { padding: 1.25rem 2.75rem; font-size: 1.15rem; }

.btn--wa {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
}
.btn--wa:hover,
.btn--wa:focus-visible {
  background: var(--wa-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
}

.btn--outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--pulse {
  animation: pulse-wa 2.2s ease-in-out infinite;
}

.btn__icon { width: 1.2em; height: 1.2em; flex-shrink: 0; }

:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }

/* ── 4. ANIMAÇÕES ─────────────────────────────────────────── */
@keyframes deco-float {
  0%,100% { transform: translateY(0) rotate(0deg);   opacity: .5; }
  33%      { transform: translateY(-14px) rotate(4deg); opacity: .7; }
  66%      { transform: translateY(-6px) rotate(-3deg); opacity: .6; }
}

@keyframes badge-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.35); }
  50%      { box-shadow: 0 4px 36px rgba(37,211,102,.65); }
}

@keyframes wa-ring {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0); }
}

/* Fade-in via Intersection Observer */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger para irmãos */
.fade-in:nth-child(2) { transition-delay: .08s; }
.fade-in:nth-child(3) { transition-delay: .16s; }
.fade-in:nth-child(4) { transition-delay: .24s; }
.fade-in:nth-child(5) { transition-delay: .32s; }
.fade-in:nth-child(6) { transition-delay: .40s; }

/* ── 5. HEADER / NAV ──────────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  background: rgba(255,240,245,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233,30,140,.1);
  transition: box-shadow var(--t);
}
.header.is-scrolled { box-shadow: var(--sh-md); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

/* Logo */
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.nav__logo-main {
  font-family: var(--font-h);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1.1;
}
.nav__logo-sub {
  font-family: var(--font-h);
  font-size: .9rem;
  color: var(--pink-dk);
}

/* Hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--r-sm);
  transition: background var(--t);
  z-index: 10;
}
.nav__toggle:hover { background: rgba(233,30,140,.08); }

.nav__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav__toggle.is-open .nav__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open .nav__bar:nth-child(2) { opacity: 0; }
.nav__toggle.is-open .nav__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.nav__menu {
  display: none;
  position: fixed;
  top: 68px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 950;
  background: rgba(255,240,245,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2rem var(--px);
  overflow-y: auto;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.nav__menu.is-open { display: flex; }

.nav__list {
  display: flex;
  flex-direction: column;
  gap: .375rem;
  width: 100%;
  max-width: 340px;
  padding-top: .5rem;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .95rem 1.25rem;
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text);
  transition: background var(--t), color var(--t);
}
.nav__link:hover,
.nav__link:focus-visible,
.nav__link.is-active {
  background: rgba(233,30,140,.08);
  color: var(--pink);
}

.nav__link--whatsapp {
  background: var(--wa);
  color: var(--white) !important;
  margin-top: .5rem;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.nav__link--whatsapp:hover { background: var(--wa-dk) !important; }

/* Desktop overrides */
@media (min-width: 768px) {
  .nav__toggle { display: none; }

  .nav__menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    top: auto; right: auto; bottom: auto; left: auto;
    overflow: visible;
    z-index: auto;
  }

  .nav__list {
    flex-direction: row;
    align-items: center;
    width: auto;
    max-width: none;
    gap: .25rem;
    padding: 0;
  }

  .nav__link {
    padding: .45rem .875rem;
    font-size: .88rem;
    white-space: nowrap;
  }

  .nav__link--whatsapp {
    margin-top: 0;
    padding: .45rem 1rem;
    border-radius: var(--r-inf);
  }
}

/* ── 6. HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--rose-50) 0%, var(--rose-100) 55%, var(--rose-200) 100%);
  overflow: hidden;
  padding-top: 68px;
}

/* Decorações flutuantes */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__deco {
  position: absolute;
  font-size: 1.8rem;
  animation: deco-float linear infinite;
  user-select: none;
  pointer-events: none;
}
.hero__deco--1 { top: 14%; left:  4%; animation-duration:  7s; font-size: 1.4rem; }
.hero__deco--2 { top: 22%; right: 6%; animation-duration:  9s; animation-delay: -2s; }
.hero__deco--3 { top: 58%; left:  6%; animation-duration:  8s; animation-delay: -1s; font-size: 1.2rem; }
.hero__deco--4 { bottom:28%; right:4%; animation-duration: 10s; animation-delay: -3s; font-size:2.2rem; }
.hero__deco--5 { top: 44%; left:  2%; animation-duration:  6s; animation-delay: -.5s; font-size:1rem; }
.hero__deco--6 { bottom:40%; right:2%; animation-duration: 11s; animation-delay: -4s; font-size:1.4rem; }
.hero__deco--7 { top: 8%;  right:14%; animation-duration:  7s; animation-delay: -1.5s; font-size:1rem; }

/* Foto flutuante hero */
.hero__image-wrap {
  display: none;
  flex-shrink: 0;
  width: 38%;
  max-width: 400px;
  align-self: center;
}
.hero__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 16px 56px rgba(233,30,140,.22), 0 4px 16px rgba(0,0,0,.08);
  display: block;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 3rem var(--px);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero__text {
  flex: 1;
  min-width: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(233,30,140,.1);
  color: var(--pink);
  border: 1px solid rgba(233,30,140,.2);
  padding: .35rem 1rem;
  border-radius: var(--r-inf);
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  line-height: 1;
}
.hero__title-name {
  font-family: var(--font-h);
  font-size: clamp(3.5rem, 11vw, 6.5rem);
  color: var(--pink);
  font-weight: 700;
  line-height: .95;
}
.hero__title-doceria {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  color: var(--pink-dk);
  font-weight: 600;
  line-height: 1.1;
}

.hero__tagline {
  font-size: clamp(.95rem, 2.5vw, 1.15rem);
  color: var(--text-md);
  margin-bottom: .75rem;
  line-height: 1.55;
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--text-lt);
  font-size: .875rem;
  margin-bottom: 2rem;
}
.hero__location svg { color: var(--pink); flex-shrink: 0; }

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  align-items: flex-start;
}

/* Onda de transição */
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  pointer-events: none;
}
.hero__wave svg { width: 100%; display: block; }

/* ── 7. SOBRE ─────────────────────────────────────────────── */
.sobre {
  padding: var(--sec);
  background: var(--rose-50);
}

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

.sobre__desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-md);
  margin-bottom: 2rem;
}

.sobre__chips {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: .75rem;
  margin-bottom: 2.25rem;
}

.sobre__chip {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--white);
  padding: .875rem 1rem;
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  font-size: .875rem;
  font-weight: 500;
  transition: transform var(--t), box-shadow var(--t);
}
.sobre__chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.sobre__chip-ico { font-size: 1.25rem; flex-shrink: 0; }

.sobre__info {
  background: linear-gradient(135deg, rgba(233,30,140,.05) 0%, rgba(173,20,87,.05) 100%);
  border: 1px solid rgba(233,30,140,.15);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem;
}

.sobre__info-title {
  font-family: var(--font-h);
  font-size: 1.45rem;
  color: var(--pink);
  margin-bottom: .875rem;
}

.sobre__info-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.sobre__info-item {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9rem;
  color: var(--text-md);
  line-height: 1.45;
}
.sobre__info-item > span:first-child { flex-shrink: 0; margin-top: .05rem; }

/* Foto */
.sobre__foto-wrap {
  display: flex;
  justify-content: center;
}

.sobre__foto-container {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  overflow: visible;
}

.sobre__foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  display: block;
}

.sobre__foto-badge {
  position: absolute;
  bottom: 1.75rem;
  right: -1rem;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: .75rem 1.25rem;
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.35;
  font-size: .82rem;
  font-weight: 600;
  color: var(--pink);
  animation: badge-float 3s ease-in-out infinite;
}

/* ── 8. GALERIA MASONRY ───────────────────────────────────── */
.galeria {
  padding: var(--sec);
  background: var(--rose-100);
}

.galeria__masonry {
  columns: 2;
  column-gap: .75rem;
}

.galeria__item {
  break-inside: avoid;
  display: block;
  margin-bottom: .75rem;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: #fce4ec;
  cursor: pointer;
}

/* Alturas variadas para efeito masonry real */
.galeria__item         { aspect-ratio: 1 / 1; }
.galeria__item--tall   { aspect-ratio: 2 / 3; }
.galeria__item--mid    { aspect-ratio: 4 / 5; }

/* Placeholder rosa com ícone de câmera */
.galeria__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
  position: absolute;
  inset: 0;
}
.galeria__cam {
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(233,30,140,.3);
}

/* Overlay com lupa */
.galeria__overlay {
  position: absolute;
  inset: 0;
  background: rgba(173,20,87,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
  backdrop-filter: blur(2px);
}
.galeria__item:hover .galeria__overlay,
.galeria__item:focus-within .galeria__overlay { opacity: 1; }

.galeria__zoom {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--white);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.2));
}

/* Zoom suave na imagem quando existir */
.galeria__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
  position: relative;
  z-index: 1;
}
.galeria__item:hover .galeria__img { transform: scale(1.06); }

/* ── 9. CARDÁPIO ──────────────────────────────────────────── */
.cardapio {
  padding: var(--sec);
  background: var(--rose-50);
}

/* Tabs */
.tabs {
  display: flex;
  gap: .375rem;
  background: rgba(233,30,140,.07);
  padding: .35rem;
  border-radius: var(--r-inf);
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 2.5rem;
}
.tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  flex-shrink: 0;
  padding: .6rem 1.25rem;
  border-radius: var(--r-inf);
  font-family: var(--font-b);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-md);
  transition: all var(--t);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--pink); }
.tab-btn--on,
.tab-btn[aria-selected="true"] {
  background: var(--white);
  color: var(--pink);
  box-shadow: var(--sh-sm);
}

/* Panels */
.tab-panel { display: none; }
.tab-panel--on { display: block; }

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.375rem;
}

/* Card */
.menu-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(233,30,140,.07);
  border: 1px solid #f8bbd0;
  transition: transform var(--t), box-shadow var(--t);
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(233,30,140,.14);
}

.menu-card--special {
  background: linear-gradient(135deg, rgba(233,30,140,.04) 0%, rgba(173,20,87,.04) 100%);
  border-color: rgba(233,30,140,.22);
  text-align: center;
}
.menu-card--highlight {
  background: linear-gradient(135deg, #fffde7 0%, #fff8e1 100%);
  border-color: rgba(255,193,7,.35);
}

.menu-card__head {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.125rem;
}

.menu-card__title {
  font-family: var(--font-h);
  font-size: 1.5rem;
  color: var(--pink);
  line-height: 1.2;
}

/* Price tags — verde-limão p/ 1º preço, rosa escuro p/ 2º */
.price-range {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.price-tag {
  background: rgba(139,195,74,.18);
  color: var(--green-dk);
  border: 1px solid rgba(139,195,74,.35);
  padding: .22rem .75rem;
  border-radius: var(--r-inf);
  font-size: .78rem;
  font-weight: 700;
}
.price-tag + .price-sep + .price-tag,
.price-tag:last-child:not(:first-child) {
  background: rgba(173,20,87,.1);
  color: var(--pink-dk);
  border-color: rgba(173,20,87,.25);
}
.price-sep {
  color: var(--text-lt);
  font-size: .82rem;
}

/* Flavor chips */
.flavor-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height .4s ease, margin-top .4s ease;
}
.menu-card.is-open .flavor-list {
  max-height: 800px;
  margin-top: .75rem;
}
.flavor-list li {
  background: #fce4ec;
  color: var(--pink-dk);
  border: 1px solid rgba(233,30,140,.18);
  padding: .35rem .875rem;
  border-radius: var(--r-inf);
  font-size: .78rem;
  font-weight: 500;
  transition: background var(--t), color var(--t);
}
.flavor-list li:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

/* Botão "ver sabores" */
.flavor-toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: none;
  border: 1px solid rgba(233,30,140,.3);
  border-radius: var(--r-inf);
  color: var(--pink);
  font: 500 .78rem/1 'Poppins', sans-serif;
  padding: .38rem 1rem;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  margin-top: .25rem;
}
.flavor-toggle:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.flavor-toggle__arrow {
  display: inline-block;
  transition: transform .35s ease;
  font-size: .9em;
}
.menu-card.is-open .flavor-toggle__arrow {
  transform: rotate(180deg);
}

/* Sub-prices (retangulares) */
.sub-prices { display: flex; flex-direction: column; gap: .5rem; }
.sub-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .575rem .875rem;
  background: rgba(233,30,140,.04);
  border: 1px solid rgba(233,30,140,.1);
  border-radius: var(--r-sm);
}
.sub-price-name { font-size: .88rem; font-weight: 500; }
.sub-price-val  { font-size: .84rem; font-weight: 700; color: var(--green-dk); }

.menu-card__consult {
  font-size: .92rem;
  color: var(--text-md);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.menu-card__note {
  font-size: .8rem;
  color: var(--text-lt);
  margin-bottom: .75rem;
  font-style: italic;
}

/* Sobremesas */
.sobremesas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
.sobremesa-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(233,30,140,.08);
  flex-wrap: wrap;
  gap: .5rem;
  transition: transform var(--t), border-color var(--t);
}
.sobremesa-card:hover {
  transform: translateX(4px);
  border-color: rgba(233,30,140,.25);
}
.sobremesa-card__name {
  font-size: .92rem;
  font-weight: 500;
}
.sobremesa-card__prices {
  display: flex;
  gap: .4rem;
  flex-shrink: 0;
}
.sobremesa-card__prices span {
  background: rgba(139,195,74,.15);
  color: var(--green-dk);
  border: 1px solid rgba(139,195,74,.3);
  padding: .18rem .6rem;
  border-radius: var(--r-inf);
  font-size: .78rem;
  font-weight: 700;
}

/* CTA dentro do cardápio */
.cardapio-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(233,30,140,.06) 0%, rgba(173,20,87,.06) 100%);
  border-radius: var(--r-xl);
  border: 1.5px dashed rgba(233,30,140,.25);
}
.cardapio-cta p {
  font-size: .95rem;
  color: var(--text-md);
  margin-bottom: 1rem;
}

/* ── 10. DEPOIMENTOS ──────────────────────────────────────── */
.depoimentos {
  padding: var(--sec);
  background: linear-gradient(180deg, var(--rose-100) 0%, var(--rose-50) 100%);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.depoimento {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--sh-md);
  border: 1px solid rgba(233,30,140,.07);
  transition: transform var(--t), box-shadow var(--t);
}
.depoimento:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.depoimento__stars {
  color: #FFB300;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.depoimento__texto {
  position: relative;
  padding-left: 1.375rem;
  font-size: .92rem;
  line-height: 1.8;
  color: var(--text-md);
  font-style: normal;
  margin-bottom: 1.5rem;
}
.depoimento__texto::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -.35rem;
  font-family: var(--font-h);
  font-size: 2.5rem;
  color: var(--pink);
  opacity: .35;
  line-height: 1;
}

.depoimento__autor {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.depoimento__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dk) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.depoimento__nome {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  font-style: normal;
  margin-bottom: .15rem;
}
.depoimento__evento {
  font-size: .78rem;
  color: var(--text-lt);
}

/* ── 11. CTA FINAL ────────────────────────────────────────── */
.cta-final {
  position: relative;
  padding: var(--sec);
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dk) 100%);
  overflow: hidden;
  text-align: center;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-deco {
  position: absolute;
  font-size: 2.5rem;
  opacity: .12;
  animation: deco-float linear infinite;
}
.cta-deco:nth-child(1) { top: 10%; left:  5%; animation-duration:  7s; }
.cta-deco:nth-child(2) { top: 55%; right: 5%; animation-duration:  9s; animation-delay:-2s; }
.cta-deco:nth-child(3) { bottom:15%; left:15%; animation-duration:  6s; animation-delay:-1s; }
.cta-deco:nth-child(4) { top: 20%; right:20%; animation-duration:  8s; animation-delay:-3s; }
.cta-deco:nth-child(5) { top: 40%; left: 40%; animation-duration: 11s; animation-delay:-4s; font-size:1.8rem; }

.cta-final__content { position: relative; z-index: 1; }

.cta-final__title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.cta-final__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 2.5rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-final__aviso {
  margin-top: 1.5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.15);
  display: inline-block;
  padding: .5rem 1.25rem;
  border-radius: var(--r-inf);
  backdrop-filter: blur(4px);
}

.cta-final__contatos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  margin-top: 2rem;
}
.cta-final__contato-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.9);
  font-size: .88rem;
}
.cta-final__contato-item a {
  color: rgba(255,255,255,.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── 12. FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--pink-dk);
  color: rgba(255,255,255,.88);
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__logo {
  font-family: var(--font-h);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: .4rem;
}
.footer__slogan {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.footer__link {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  transition: color var(--t);
}
.footer__link:hover { color: var(--white); }

.footer__copy {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.5rem;
  text-align: center;
}
.footer__copy p {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}

/* ── 13. BOTÃO FLUTUANTE WHATSAPP ─────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 800;
  width: 62px;
  height: 62px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.4);
  animation: wa-ring 2.4s ease-out infinite;
  transition: transform var(--t), background var(--t);
}
.wa-float:hover {
  background: var(--wa-dk);
  transform: scale(1.1);
  animation-play-state: paused;
}
.wa-float__icon {
  width: 32px;
  height: 32px;
  color: var(--white);
}

/* Tooltip */
.wa-float__label {
  position: absolute;
  right: calc(100% + .875rem);
  background: var(--text);
  color: var(--white);
  padding: .375rem .8rem;
  border-radius: var(--r-sm);
  font-size: .78rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.wa-float__label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--text);
}
.wa-float:hover .wa-float__label,
.wa-float:focus-visible .wa-float__label { opacity: 1; }

/* ── 14. BREAKPOINTS ──────────────────────────────────────── */

/* Tablet ≥ 600px */
@media (min-width: 600px) {
  .galeria__masonry { columns: 3; }

  .menu-grid { grid-template-columns: repeat(2,1fr); }

  .sobremesas-grid { grid-template-columns: repeat(2,1fr); }

  .sobre__chips { grid-template-columns: repeat(2,1fr); }
}

/* Tablet ≥ 768px */
@media (min-width: 768px) {
  :root { --px: 2rem; }

  .hero__image-wrap { display: block; }
  .hero__content { padding: 4rem 2rem; }
  .hero__cta { flex-direction: row; flex-wrap: wrap; }

  .sobre__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .menu-card__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .depoimentos-grid { grid-template-columns: repeat(2,1fr); }

  .footer__grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* Desktop ≥ 1024px */
@media (min-width: 1024px) {
  :root { --px: 2.5rem; }

  .galeria__masonry { columns: 4; column-gap: 1rem; }

  .menu-grid { grid-template-columns: repeat(3,1fr); }

  .sobremesas-grid { grid-template-columns: repeat(3,1fr); }

  .depoimentos-grid { grid-template-columns: repeat(3,1fr); }

  .cta-final__contatos { flex-direction: row; justify-content: center; gap: 2rem; }
}

/* ── 15. HERO MOBILE — ajustes < 768 px ──────────────────── */
@media (max-width: 767px) {

  .hero {
    align-items: stretch;
    overflow-x: hidden;
  }

  .hero__content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem var(--px) 0;
    min-height: calc(100vh - 68px);
  }

  .hero__text {
    padding-bottom: 1.25rem;
  }

  .hero__badge {
    font-size: .75rem;
    padding: .28rem .875rem;
    margin-bottom: .875rem;
  }

  .hero__title        { margin-bottom: .625rem; }
  .hero__title-name   { font-size: 2.6rem; }
  .hero__title-doceria { font-size: 1.45rem; }

  .hero__tagline {
    font-size: .9rem;
    margin-bottom: .625rem;
  }

  .hero__cta {
    gap: .5rem;
    align-items: stretch;
  }
  .hero__cta .btn--lg {
    padding: .65rem 1.25rem;
    font-size: .88rem;
    justify-content: center;
  }
  .hero__cta .btn--outline {
    padding: .65rem 1.25rem;
    font-size: .88rem;
    justify-content: center;
  }

  /* Foto da confeiteira visível abaixo dos botões */
  .hero__image-wrap {
    display: block;
    flex: 1;
    min-height: 200px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
  }
  .hero__img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    aspect-ratio: unset;
    border-radius: 0;
    box-shadow: none;
    object-position: center 10%;
  }

  /* Botão flutuante WhatsApp */
  .wa-float {
    width: 60px;
    height: 60px;
    right: 20px;
    bottom: 20px;
    box-shadow: 0 2px 12px rgba(37,211,102,.35);
  }
  .wa-float__icon {
    width: 28px;
    height: 28px;
  }

  /* Manter só 2 decorações, discretas */
  .hero__deco--3,
  .hero__deco--4,
  .hero__deco--5,
  .hero__deco--6,
  .hero__deco--7 { display: none; }
  .hero__deco--1,
  .hero__deco--2 { font-size: 1rem; opacity: .25; }
}

/* ── 17. MOTION REDUCE ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; }
}
