/* =========================================================================
   Fluffy Bar (fluffybakebar.com.br) — folha de estilo global.
   Identidade: balcao de entretenimento leve. Base creme rosado + ameixa
   escura, acento framboesa e menta. Formas arredondadas (pill) e sombras
   suaves. Cada pagina traz o proprio layout num <style> local, para nenhuma
   virar clone da outra.
   ========================================================================= */

:root {
  --plum: #1b1424;
  --plum-2: #2f203d;
  --berry: #ff3d77;
  --berry-d: #d8215a;
  --berry-soft: #ffe3ec;
  --mint: #128f74;
  --mint-soft: #dcf6ee;
  --cream: #fff6f3;
  --cream-2: #ffe9ef;
  --paper: #ffffff;
  --ink: #241a2b;
  --muted: #6e5c69;
  --line: #f2dce4;
  --radius: 20px;
  --shadow-s: 0 2px 10px rgba(43, 20, 40, .06);
  --shadow-m: 0 14px 34px rgba(43, 20, 40, .13);
  --shadow-l: 0 26px 60px rgba(20, 8, 20, .28);
  --wrap: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--berry-d); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--berry); }

h1, h2, h3, h4 {
  color: var(--plum); line-height: 1.18; margin: 0 0 .5em;
  font-weight: 800; letter-spacing: -.02em;
}
h1 { font-size: clamp(1.95rem, 5.1vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.1vw, 1.3rem); }
p { margin: 0 0 1.05em; }
strong { color: var(--plum); }

.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(2.8rem, 6.5vw, 4.8rem) 0; }
.section--paper { background: var(--paper); }
.section--cream2 { background: var(--cream-2); }
.section--dark { background: var(--plum); color: #e6dbe6; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff6f3; }
.section--dark a { color: #ffb3c9; }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 62ch; }
.section--dark .lead { color: #cbb9c8; }

.eyebrow {
  display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--berry-d); margin-bottom: .55rem;
}
.section--dark .eyebrow { color: #ff8aaa; }

/* ------------------------------------------------------------- botoes */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 52px; padding: .8rem 1.6rem; border-radius: 999px;
  font-weight: 800; text-decoration: none; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--main {
  background: linear-gradient(135deg, var(--berry), #ff6a52); color: #fff;
  box-shadow: 0 10px 26px rgba(255, 61, 119, .32);
}
.btn--main:hover { color: #fff; box-shadow: 0 14px 32px rgba(255, 61, 119, .4); }
.btn--ghost { border-color: var(--line); background: var(--paper); color: var(--plum); }
.btn--ghost:hover { color: var(--plum); border-color: var(--berry); }
.btn--light { background: #fff6f3; color: var(--plum); }
.btn--light:hover { color: var(--plum); }
.btn--sm { min-height: 46px; padding: .6rem 1.15rem; font-size: .93rem; }
.btn--block { width: 100%; }

/* ------------------------------------------------------------ cabecalho */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 246, 243, .93); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__in {
  display: flex; align-items: center; gap: 1rem;
  min-height: 68px; padding-block: .5rem;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand img { width: 40px; height: 40px; border-radius: 12px; }
.brand b { color: var(--plum); font-size: 1.12rem; letter-spacing: -.02em; line-height: 1.1; }
.brand span { display: block; font-size: .68rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.15rem; }
.site-nav a {
  color: var(--plum); text-decoration: none; font-weight: 700; font-size: .95rem;
  padding: .25rem 0; border-bottom: 2px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--berry); }
.site-header .btn { margin-left: .2rem; }
.burger {
  margin-left: auto; display: none; width: 48px; height: 48px; border-radius: 14px;
  border: 1px solid var(--line); background: var(--paper); color: var(--plum);
  font-size: 1.25rem; cursor: pointer;
}
@media (max-width: 900px) {
  .burger { display: block; }
  .site-nav {
    position: absolute; inset: 68px 0 auto; flex-direction: column; align-items: stretch;
    gap: 0; padding: .6rem 1.2rem 1.2rem; background: var(--cream);
    border-bottom: 1px solid var(--line); display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .site-nav .btn { margin-top: .8rem; }
}

/* -------------------------------------------------------- prova social */
.rating {
  display: inline-flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem .95rem; box-shadow: var(--shadow-s); font-size: .88rem;
}
.rating .stars { color: #ff9f1c; letter-spacing: .08em; }
.rating b { color: var(--plum); }
.rating span { color: var(--muted); }
.rating--dark { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .16); }
.rating--dark b { color: #fff6f3; }
.rating--dark span { color: #cbb9c8; }

.stats { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.stats div {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 1rem 1.15rem; box-shadow: var(--shadow-s);
}
.stats b { display: block; font-size: 1.5rem; color: var(--berry-d); letter-spacing: -.02em; }
.stats span { font-size: .89rem; color: var(--muted); }
.section--dark .stats div { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .12); }
.section--dark .stats b { color: #ff8aaa; }
.section--dark .stats span { color: #cbb9c8; }

.quotes { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.25rem 1.3rem; box-shadow: var(--shadow-s);
}
.quote p { font-size: .96rem; margin-bottom: .8rem; }
.quote .stars { color: #ff9f1c; font-size: .9rem; letter-spacing: .1em; }
.quote footer { font-size: .86rem; color: var(--muted); font-weight: 700; }

/* --------------------------------------------------------- componentes */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem 1.4rem; box-shadow: var(--shadow-s);
}
.grid-3 { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-2 { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0; list-style: none; }
.chips li {
  background: var(--berry-soft); color: var(--berry-d); border-radius: 999px;
  padding: .35rem .85rem; font-size: .87rem; font-weight: 700;
}
.section--dark .chips li { background: rgba(255, 138, 170, .16); color: #ffc2d3; }

.check { list-style: none; padding: 0; margin: 0 0 1.1rem; }
.check li { position: relative; padding-left: 1.9rem; margin-bottom: .6rem; }
.check li::before {
  content: "✓"; position: absolute; left: 0; top: .05rem;
  width: 1.35rem; height: 1.35rem; border-radius: 50%;
  background: var(--mint-soft); color: var(--mint);
  display: grid; place-items: center; font-size: .8rem; font-weight: 800;
}
.section--dark .check li::before { background: rgba(47, 211, 165, .18); color: #6ce3c2; }

.table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--line); background: var(--paper); }
table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: .95rem; }
th, td { padding: .8rem .95rem; text-align: left; border-bottom: 1px solid var(--line); }
thead th { background: var(--cream-2); color: var(--plum); font-size: .85rem; letter-spacing: .02em; }
tbody tr:last-child td { border-bottom: 0; }
td b { color: var(--plum); }

.note {
  border-left: 4px solid var(--berry); background: var(--berry-soft);
  border-radius: 0 14px 14px 0; padding: .95rem 1.15rem; margin: 1.2rem 0;
}
.note p:last-child { margin-bottom: 0; }
.note--mint { border-left-color: var(--mint); background: var(--mint-soft); }

figure { margin: 0; }
figure img { border-radius: var(--radius); box-shadow: var(--shadow-m); }
figcaption { font-size: .84rem; color: var(--muted); margin-top: .55rem; }

/* --------------------------------------------------------------- FAQ */
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: .2rem 1.15rem; margin-bottom: .7rem; box-shadow: var(--shadow-s);
}
.faq summary {
  cursor: pointer; font-weight: 800; color: var(--plum); padding: .95rem 0;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { margin: 0; font-size: 1.02rem; color: inherit; font-weight: 800; letter-spacing: -.01em; }
.faq summary::after { content: "+"; color: var(--berry); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details > p { margin: 0 0 1rem; color: var(--muted); }

/* --------------------------------------------------------- breadcrumb */
.crumb { font-size: .85rem; color: var(--muted); padding: .9rem 0 0; }
.crumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; }
.crumb li::after { content: "›"; margin-left: .4rem; color: var(--line); }
.crumb li:last-child::after { content: ""; }
.crumb a { color: var(--muted); }

/* ---------------------------------------------------------- faixa CTA */
.cta-band {
  background: linear-gradient(140deg, var(--plum) 0%, #4a2038 65%, #7a2447 100%);
  color: #f6e8ee; border-radius: 26px; padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-l);
}
.cta-band h2 { color: #fff6f3; margin-bottom: .4rem; }
.cta-band p { color: #d9c3d0; max-width: 56ch; }
.cta-band__row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; margin-top: 1.2rem; }

/* ------------------------------------------------------------- rodape */
.site-footer { background: var(--plum); color: #c9b8c6; padding: clamp(2.4rem, 5vw, 3.4rem) 0 1.6rem; }
.site-footer h3 { color: #fff6f3; font-size: 1rem; margin-bottom: .7rem; }
.site-footer a { color: #e5d5e0; text-decoration: none; }
.site-footer a:hover { color: #ff8aaa; text-decoration: underline; }
.site-footer__cols { display: grid; gap: 1.6rem; grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .45rem; font-size: .93rem; }
.site-footer__brand { display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem; }
.site-footer__brand img { width: 42px; height: 42px; border-radius: 13px; }
.site-footer__brand b { color: #fff6f3; font-size: 1.1rem; }
.site-footer small { display: block; color: #9a8896; font-size: .82rem; line-height: 1.6; }
.site-footer__bar {
  margin-top: 1.8rem; padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; font-size: .85rem;
}
@media (max-width: 820px) { .site-footer__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer__cols { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------ utilidades */
.mt-1 { margin-top: .8rem; } .mt-2 { margin-top: 1.6rem; } .mt-3 { margin-top: 2.4rem; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.narrow { max-width: 62ch; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--berry); color: #fff;
  padding: .7rem 1.1rem; border-radius: 0 0 12px 0; z-index: 60;
}
.skip-link:focus { left: 0; color: #fff; }
:focus-visible { outline: 3px solid var(--berry); outline-offset: 2px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
