/* ══════════════════════════════════
   GABI KAOANA — Global Styles
   ══════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --roxo: #7b4fa6;
  --roxo-esc: #4a2570;
  --roxo-claro: #9b6fc4;
  --verde: #a8c83a;
  --verde-esc: #7a9420;
  --marrom: #5c3317;
  --creme: #fbf8f4;
  --creme2: #f3ede5;
  --texto: #2a1a3e;
  --soft: #4a3b5c;
  --branco: #ffffff;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--creme);
  color: var(--texto);
  overflow-x: hidden;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

/* ── SCROLL ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-scroll {
  animation: fadeUp linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 65%;
}

.anim-stagger > * {
  animation: fadeUp linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 65%;
  animation-delay: calc(sibling-index() * 100ms);
}

@supports not (animation-timeline: view()) {
  .anim-scroll,
  .anim-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.65s ease,
      transform 0.65s ease;
  }
  .anim-scroll.on,
  .anim-stagger > .on {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(74, 37, 112, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--branco);
  text-decoration: none;
}
.nav-logo span {
  color: var(--verde);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--verde);
}
.nav-cta {
  background: var(--verde);
  color: var(--texto) !important;
  font-weight: 700 !important;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  width: 22px;
  height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--roxo-esc);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-burger {
    display: flex;
  }
}

/* ── SCROLL MARGIN ── */
#cardapio,
#depoimentos,
#galeria {
  scroll-margin-top: 70px;
}

/* ── UTILITÁRIOS ── */
.sec-tag {
  display: inline-block;
  color: var(--roxo);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.sec-header {
  text-align: center;
  margin-bottom: 2.8rem;
}
.sec-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}
.sec-header p {
  color: var(--soft);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--verde);
  color: var(--texto);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  min-height: 48px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(168, 200, 58, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(168, 200, 58, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--roxo);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  text-decoration: none;
  min-height: 48px;
  border: 2px solid var(--roxo);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  background: var(--roxo);
  color: var(--branco);
}

/* ── FOOTER ── */
.footer {
  background: var(--roxo-esc);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  font-family: "Playfair Display", serif;
  color: var(--branco);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.footer-col p,
.footer-col a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: block;
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--verde);
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 0.5rem;
}
.footer-logo span {
  color: var(--verde);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.2rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--verde);
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--roxo-esc);
  border-top: 2px solid rgba(168, 200, 58, 0.3);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s 0.5s;
}
#cookie-banner.show {
  transform: translateY(0);
}
#cookie-banner p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
  min-width: 200px;
}
#cookie-banner p a {
  color: var(--verde);
}
.cookie-btns {
  display: flex;
  gap: 0.6rem;
}
.btn-cookie-ok {
  background: var(--verde);
  color: var(--texto);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
}
.btn-cookie-no {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  padding: 0.45rem 0.8rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

/* ── WHATSAPP FLOAT ── */
.whats-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
  text-decoration: none;
}
.whats-float:hover {
  transform: translateY(-3px) scale(1.05);
}
.whats-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ══════════════════════════════════
   INDEX.HTML — Estilos das seções
   ══════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100svh;
  background:
    linear-gradient(
      155deg,
      rgba(74, 37, 112, 0.95) 0%,
      rgba(123, 79, 166, 0.9) 60%,
      rgba(139, 90, 182, 0.88) 100%
    ),
    url("assets/images/brig-churros-bandeja.webp") center/cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(168, 200, 58, 0.08);
  animation: float var(--d, 7s) ease-in-out infinite;
  animation-delay: var(--dl, 0s);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.1;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}
.gk-logo {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--branco);
  line-height: 1;
}
.gk-logo .g {
  color: var(--roxo-claro);
}
.gk-logo .k {
  color: var(--verde);
}
.gk-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.2rem;
  margin-bottom: 1.4rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(168, 200, 58, 0.18);
  border: 1px solid rgba(168, 200, 58, 0.4);
  color: var(--verde);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.32rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 7vw, 4rem);
  color: var(--branco);
  line-height: 1.12;
  margin-bottom: 0.8rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--verde);
}
.hero p {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  animation: fadeUp 0.6s 0.4s ease both;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--branco);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  min-height: 48px;
  transition: background 0.2s;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

/* ── SOBRE ── */
.sobre {
  background: var(--branco);
  padding: 5rem 1.5rem;
}
.sobre-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 680px) {
  .sobre-inner {
    grid-template-columns: auto 1fr;
  }
}
.sobre-foto-wrap {
  position: relative;
  width: 200px;
  margin: 0 auto;
}
.sobre-foto {
  width: 200px;
  height: 240px;
  border-radius: 24px 24px 60px 24px;
  object-fit: cover;
  border: 4px solid var(--creme2);
  box-shadow: 0 12px 40px rgba(123, 79, 166, 0.18);
}
.sobre-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--verde);
  color: var(--texto);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.38rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}
.sobre h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}
.sobre h2 em {
  font-style: italic;
  color: var(--roxo);
}
.sobre p {
  color: var(--soft);
  line-height: 1.8;
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.1rem;
}
.pill {
  background: var(--creme2);
  border: 1px solid rgba(123, 79, 166, 0.14);
  color: var(--roxo);
  font-size: 0.77rem;
  font-weight: 500;
  padding: 0.28rem 0.82rem;
  border-radius: 100px;
}

/* ── CARDÁPIO ── */
.cardapio {
  padding: 5rem 1.5rem;
  background: var(--creme);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem;
  max-width: 960px;
  margin: 0 auto;
}
.cat-card {
  background: var(--branco);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(123, 79, 166, 0.08);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(123, 79, 166, 0.16);
}
.cat-top {
  padding: 1.2rem 1.2rem 0.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.4rem;
}
.cat-name {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--roxo);
}
.cat-badge {
  background: var(--verde);
  color: var(--texto);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.26rem 0.65rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cat-line {
  height: 2px;
  margin: 0 1.2rem;
  background: linear-gradient(to right, var(--roxo), var(--verde));
  border-radius: 2px;
}
.cat-list {
  padding: 0.8rem 1.2rem 1.2rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
}
.cat-list li {
  font-size: 0.85rem;
  color: var(--soft);
  padding-left: 1rem;
  position: relative;
}
.cat-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--verde-esc);
  font-size: 0.52rem;
  top: 0.22rem;
}

/* ── ADICIONAIS ── */
.adicionais {
  padding: 5rem 1.5rem;
  background: var(--branco);
}
.adic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.adic-item {
  background: var(--creme2);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 3px solid var(--roxo);
}
.adic-nome {
  font-size: 0.88rem;
  font-weight: 500;
}
.adic-preco {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--roxo);
}

/* ── BROWNIES ── */
.brownies {
  padding: 5rem 1.5rem;
  background: var(--creme2);
}
.brow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  max-width: 820px;
  margin: 0 auto;
}
.brow-card {
  background: var(--branco);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s;
  box-shadow: 0 2px 16px rgba(92, 51, 23, 0.07);
}
.brow-card:hover {
  transform: translateY(-5px);
}
.brow-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.brow-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.brow-card:hover .brow-thumb img {
  transform: scale(1.05);
}
.brow-body {
  padding: 1rem 1.1rem 1.2rem;
  position: relative;
}
.brow-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--marrom), var(--roxo));
}
.brow-name {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--marrom);
  margin-bottom: 0.5rem;
}
.brow-precos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}
.brow-preco {
  background: #f5ede3;
  color: var(--marrom);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.24rem 0.65rem;
  border-radius: 100px;
}
.brow-obs {
  font-size: 0.78rem;
  color: var(--soft);
}

/* ── PIPOCA ── */
.pipoca {
  padding: 5rem 1.5rem;
  background: var(--creme);
}
.pip-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 620px) {
  .pip-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.pip-foto {
  border-radius: 16px;
  overflow: hidden;
}
.pip-foto img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.pip-sabores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.6rem;
}
.sabor {
  background: var(--creme2);
  border: 1px solid rgba(123, 79, 166, 0.12);
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  cursor: default;
  transition:
    background 0.2s,
    color 0.2s;
}
.sabor:hover {
  background: var(--roxo);
  color: var(--branco);
}
.pip-precos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.pip-card {
  background: linear-gradient(135deg, var(--roxo-esc), var(--roxo));
  border-radius: 14px;
  padding: 1.1rem 1rem;
  text-align: center;
  color: var(--branco);
  transition: transform 0.2s;
}
.pip-card:hover {
  transform: translateY(-3px);
}
.pip-peso {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  color: var(--verde);
}
.pip-val {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.18rem;
}

/* ── GALERIA ── */
.galeria {
  padding: 5rem 1.5rem;
  background: var(--roxo-esc);
}
.galeria .sec-header h2 {
  color: var(--branco);
}
.galeria .sec-tag {
  color: var(--verde);
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.8rem;
  max-width: 960px;
  margin: 0 auto;
}
.galeria-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.galeria-item:hover img {
  transform: scale(1.08);
}

/* ── DEPOIMENTOS ── */
.depoimentos {
  padding: 5rem 1.5rem;
  background: var(--branco);
}
.dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.3rem;
  max-width: 860px;
  margin: 0 auto;
}
.dep-card {
  background: var(--creme);
  border-radius: 20px;
  padding: 1.5rem;
  position: relative;
}
.dep-stars {
  color: var(--verde);
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}
.dep-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 0.98rem;
  color: var(--texto);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.dep-autor {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.dep-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--roxo);
  color: var(--branco);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.dep-nome {
  font-size: 0.83rem;
  font-weight: 600;
}
.dep-via {
  font-size: 0.73rem;
  color: var(--soft);
}
.dep-quote {
  position: absolute;
  top: 0.8rem;
  right: 1.1rem;
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  color: rgba(123, 79, 166, 0.1);
  line-height: 1;
  pointer-events: none;
}

/* ── BLOG PREVIEW ── */
.blog-prev {
  padding: 5rem 1.5rem;
  background: var(--creme2);
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.3rem;
  max-width: 960px;
  margin: 0 auto 2rem;
}
.post-card {
  background: var(--branco);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(123, 79, 166, 0.08);
  transition: transform 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.post-card:hover {
  transform: translateY(-5px);
}
.post-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--roxo-esc), var(--roxo));
  display: grid;
  place-items: center;
  font-size: 2.5rem;
}
.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.post-card:hover .post-thumb img {
  transform: scale(1.05);
}
.post-body {
  padding: 1.1rem 1.2rem 1.3rem;
}
.post-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--roxo);
  margin-bottom: 0.4rem;
}
.post-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.post-excerpt {
  font-size: 0.82rem;
  color: var(--soft);
  line-height: 1.6;
}

/* ── INFOS ── */
.infos {
  padding: 3.5rem 1.5rem;
  background: var(--creme);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.9rem;
  max-width: 900px;
  margin: 0 auto;
}
.info-item {
  background: var(--branco);
  border-radius: 13px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--soft);
  border-left: 3px solid var(--verde);
}
.info-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── CTA FINAL ── */
.cta-final {
  padding: 5.5rem 1.5rem;
  background: linear-gradient(
    150deg,
    var(--roxo-esc) 0%,
    var(--roxo) 60%,
    #8b5ab6 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 30%,
    rgba(168, 200, 58, 0.14),
    transparent 60%
  );
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 530px;
  margin: 0 auto;
}
.cta-final h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--branco);
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.cta-final h2 em {
  font-style: italic;
  color: var(--verde);
}
.cta-final p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.8rem;
  font-size: 0.93rem;
  line-height: 1.7;
}
.cta-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: color 0.2s;
}
.cta-insta:hover {
  color: var(--verde);
}

/* ══════════════════════════════════
   LEGAL — politica-privacidade.html
   ══════════════════════════════════ */
.legal-hero {
  padding: 8rem 1.5rem 3rem;
  background: linear-gradient(155deg, var(--roxo-esc), var(--roxo));
  text-align: center;
}
.legal-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--branco);
  margin-bottom: 0.5rem;
}
.legal-hero p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}
.legal-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--texto);
  margin: 2rem 0 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--creme2);
}
.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}
.legal-content p,
.legal-content li {
  color: var(--soft);
  line-height: 1.85;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}
.legal-content ul {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}
.legal-content strong {
  color: var(--texto);
}
.legal-content a {
  color: var(--roxo);
}
.legal-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.legal-tab {
  background: var(--creme2);
  color: var(--soft);
  border: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.legal-tab.active {
  background: var(--roxo);
  color: var(--branco);
}
.legal-section {
  display: none;
}
.legal-section.active {
  display: block;
}
.legal-updated {
  font-size: 0.78rem;
  color: var(--soft);
  margin-bottom: 2rem;
  padding: 0.5rem 0.8rem;
  background: var(--creme2);
  border-radius: 8px;
  display: inline-block;
}

/* ══════════════════════════════════
   BLOG
   ══════════════════════════════════ */
.blog-hero {
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(155deg, var(--roxo-esc), var(--roxo));
  text-align: center;
}
.blog-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--branco);
  margin-bottom: 0.6rem;
}
.blog-hero h1 em {
  font-style: italic;
  color: var(--verde);
}
.blog-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}
.blog-main {
  padding: 4rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: var(--creme2);
  color: var(--soft);
  border: 1px solid rgba(123, 79, 166, 0.15);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--roxo);
  color: var(--branco);
  border-color: var(--roxo);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.post-cat-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: rgba(74, 37, 112, 0.85);
  color: var(--verde);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.post-cat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--roxo);
}
.post-date {
  font-size: 0.68rem;
  color: var(--soft);
}
.post-date::before {
  content: "·";
  margin-right: 0.5rem;
}
.post-read {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.8rem;
  color: var(--roxo);
  font-size: 0.8rem;
  font-weight: 600;
}
.post-read svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.post-card:hover .post-read svg {
  transform: translateX(4px);
}
.post-featured {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .post-featured {
    grid-template-columns: 1fr 1fr;
  }
  .post-featured .post-thumb {
    aspect-ratio: auto;
    min-height: 260px;
  }
}

/* ── POST INDIVIDUAL ── */
.post-hero {
  padding: 8rem 1.5rem 3rem;
  background: linear-gradient(155deg, var(--roxo-esc), var(--roxo));
  text-align: center;
}
.post-hero-cat {
  display: inline-block;
  background: rgba(168, 200, 58, 0.2);
  border: 1px solid rgba(168, 200, 58, 0.4);
  color: var(--verde);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 0.8rem;
}
.post-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--branco);
  line-height: 1.2;
  max-width: 680px;
  margin: 0 auto 0.8rem;
}
.post-hero-meta {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}
.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--roxo);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: gap 0.2s;
}
.post-back:hover {
  gap: 0.7rem;
}
.post-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--texto);
  margin: 2rem 0 0.8rem;
}
.post-content p {
  color: var(--soft);
  line-height: 1.85;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}
.post-content strong {
  color: var(--texto);
  font-weight: 600;
}
.post-img {
  border-radius: 16px;
  overflow: hidden;
  margin: 1.5rem 0;
  background: linear-gradient(135deg, var(--roxo-esc), var(--roxo));
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  font-size: 4rem;
}
blockquote {
  border-left: 3px solid var(--verde);
  padding: 0.8rem 1.2rem;
  background: var(--creme2);
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--roxo);
  font-size: 1rem;
  line-height: 1.7;
}
.post-cta {
  background: linear-gradient(135deg, var(--roxo-esc), var(--roxo));
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin: 2.5rem 0;
}
.post-cta h3 {
  font-family: "Playfair Display", serif;
  color: var(--branco);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.post-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}
.related {
  background: var(--creme2);
  padding: 3.5rem 1.5rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  max-width: 760px;
  margin: 0 auto;
}
.rel-card {
  background: var(--branco);
  border-radius: 16px;
  padding: 1.2rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s;
}
.rel-card:hover {
  transform: translateY(-4px);
}
.rel-cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--roxo);
  margin-bottom: 0.4rem;
}
.rel-title {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  line-height: 1.35;
}

/* ── CARDS COM FOTO ── */
.cat-foto {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.cat-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.cat-card:hover .cat-foto img {
  transform: scale(1.06);
}
.cat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(74, 37, 112, 0.92) 0%,
    rgba(74, 37, 112, 0.5) 60%,
    transparent 100%
  );
  padding: 1.2rem 1.1rem 0.8rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
}
.cat-overlay .cat-name {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--branco);
  font-weight: 700;
}
.cat-overlay .cat-badge {
  background: var(--verde);
  color: var(--texto);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.26rem 0.65rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── VOLTAR AO TOPO ── */
.back-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  background: var(--roxo);
  color: var(--branco);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.2s;
  z-index: 998;
  box-shadow: 0 4px 16px rgba(123, 79, 166, 0.4);
}
.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover {
  background: var(--roxo-esc);
}
