/* ============================================================
   KS KUREISHI — Doces e Salgados
   Design tokens
   ============================================================ */
:root {
  /* Colors — pulled from the logo (deep crest red + warm gold) */
  --red-deep:      #7E0F16;   /* backgrounds, header, footer */
  --red-crest:     #A8121C;   /* mid red for panels */
  --red-bright:    #C81523;   /* CTA / accent buttons */
  --gold:          #D9A518;   /* accent, icons, dividers */
  --gold-soft:     #F0C94A;   /* hover / highlight gold */
  --cream:         #FFF8EC;   /* page background */
  --cream-card:    #FFFDF7;   /* card background */
  --choc:          #2B1710;   /* primary text */
  --choc-soft:     #5A4137;   /* secondary text */
  --line:          #EBDFC9;   /* hairline borders */

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;

  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 20px 45px -20px rgba(43, 23, 16, 0.35);
  --shadow-card: 0 12px 30px -14px rgba(43, 23, 16, 0.28);

  --ease: cubic-bezier(.22,.9,.32,1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--choc);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 .5em;
  color: var(--red-deep);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

section { position: relative; }

.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .95em 1.9em;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--red-deep);
  box-shadow: 0 10px 24px -8px rgba(217,165,24,.6);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(217,165,24,.75);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}

/* ============ SEAL / SIGNATURE MOTIF ============ */
.seal {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
}
.seal .ring { animation: spin-slow 22s linear infinite; transform-origin: 50% 50%; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

.divider-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
}
.divider-seal .line {
  height: 1px;
  width: clamp(40px, 12vw, 140px);
  background: linear-gradient(90deg, transparent, var(--line));
}
.divider-seal .line.right { background: linear-gradient(90deg, var(--line), transparent); }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--red-deep);
  border-bottom: 1px solid rgba(217,165,24,.25);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.brand img { height: 54px; width: auto; border-radius: 8px; }
@media (min-width: 861px) {
  .brand img { height: 81px; }
  .hero { padding-top: 132px; }
  .page-hero { padding-top: 172px; }
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.15rem;
}
.brand-text span {
  color: var(--gold-soft);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.header-actions { display: flex; align-items: center; gap: 1rem; }

.whatsapp-pill {
  display: none;
}
@media (min-width: 720px) {
  .whatsapp-pill {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    background: var(--gold);
    color: var(--red-deep);
    font-weight: 800;
    font-size: .85rem;
    padding: .6em 1.2em;
    border-radius: 999px;
    transition: transform .3s var(--ease);
  }
  .whatsapp-pill:hover { transform: translateY(-2px) scale(1.03); }
}

/* Hamburger — used on desktop AND mobile per brief */
.hamburger {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: transform .3s var(--ease);
}
.hamburger:hover { transform: scale(1.06); }
.hamburger span {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--red-deep);
  transition: transform .35s var(--ease), opacity .25s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Dropdown menu — anchored under the hamburger, circular-reveal open */
.nav-anchor { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(300px, 86vw);
  max-height: 74vh;
  overflow-y: auto;
  background: var(--red-deep);
  border: 1px solid rgba(217,165,24,.25);
  border-radius: 22px;
  box-shadow: 0 30px 60px -18px rgba(0,0,0,.6);
  padding: .7rem 0;
  z-index: 950;
  -webkit-clip-path: circle(0px at calc(100% - 24px) 0px);
  clip-path: circle(0px at calc(100% - 24px) 0px);
  opacity: 0;
  visibility: hidden;
  transition: clip-path .5s var(--ease), -webkit-clip-path .5s var(--ease), opacity .25s var(--ease), visibility .5s;
}
.nav-dropdown.is-open {
  -webkit-clip-path: circle(600px at calc(100% - 24px) 0px);
  clip-path: circle(600px at calc(100% - 24px) 0px);
  opacity: 1;
  visibility: visible;
}
/* Fallback for browsers without clip-path support: just fade/scale in */
@supports not (clip-path: circle(0px at 0 0)) {
  .nav-dropdown {
    transform: scale(.85);
    transform-origin: top right;
    transition: transform .35s var(--ease), opacity .25s var(--ease), visibility .35s;
  }
  .nav-dropdown.is-open { transform: scale(1); }
}

.nav-links { display: flex; flex-direction: column; }
.nav-links > li { position: relative; }

.nav-links a,
.nav-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  width: 100%;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-soft);
  padding: .7rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: calc(100% - 1.5rem);
  bottom: .45rem;
  height: 2px;
  background: var(--gold);
  transition: right .35s var(--ease);
}
.nav-links a:hover::after { right: 1.5rem; }
.nav-links a:hover, .nav-parent:hover { color: #fff; }

.nav-caret {
  width: 8px; height: 8px;
  flex-shrink: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .35s var(--ease);
}
.has-submenu.is-open .nav-caret { transform: rotate(-135deg); }

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.submenu a {
  font-size: .92rem;
  padding: .55rem 1.5rem .55rem 2.4rem;
  color: rgba(240,201,74,.85);
}
.submenu a::after { left: 2.4rem; right: calc(100% - 2.4rem); }
.submenu a:hover::after { right: 1.5rem; }
/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding-top: 110px;
  overflow: hidden;
  position: relative;
}
.hero.hero-photo-bg {
  background-size: cover;
  background-position: center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(15,6,4,.6);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 3rem;
}
.hero.hero-full .container { grid-template-columns: 1fr; }
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
}

.hero-copy-full { max-width: none; }
.hero-copy-full h1 { max-width: none; }
.hero-copy-full p { max-width: none; width: 100%; }

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.8rem, 6.6vw, 5.2rem);
  margin: .35em 0 .3em;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--gold);
}
.smoky-word {
  display: inline-block;
  white-space: nowrap;
}
.smoky-char {
  display: inline-block;
  color: transparent;
  will-change: transform, opacity, text-shadow;
}
.smoky-char.smoky-space {
  display: inline;
  transform: none !important;
}
.hero-copy p {
  color: #E9D9C9;
  font-size: 1.1rem;
  margin: 0 0 2rem;
}
@media (max-width: 860px) {
  .hero-copy p { margin-inline: auto; }
  .eyebrow { justify-content: center; }
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 860px) { .hero-actions { justify-content: center; } }


/* ============ QUEM SOMOS ============ */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 1.8rem; } }
.about-art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-art img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about h2 { font-size: clamp(1.4rem, 3.6vw, 2.8rem); white-space: nowrap; }
.about p { color: var(--choc-soft); margin-bottom: 1.1rem; }
.about-stats {
  display: flex;
  gap: clamp(1.2rem, 4vw, 2.6rem);
  margin-top: 2rem;
  flex-wrap: wrap;
}
.about-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-crest);
}
.about-stats div span {
  font-size: .78rem;
  color: var(--choc-soft);
  letter-spacing: .04em;
}

@media (max-width: 880px) {
  .about-art img { aspect-ratio: 4/3; }
  .about-copy { text-align: center; }
  .about-copy .eyebrow { justify-content: center; }
  .about h2 { white-space: normal; font-size: clamp(1.6rem, 6vw, 2rem); }
  .about-stats { justify-content: center; gap: 1.6rem; row-gap: 1.2rem; margin-top: 1.6rem; }
  .about-stats div { min-width: 84px; }
}

/* ============ PRODUTOS ============ */
.produtos { background: #fff; overflow-x: hidden; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-head p { color: var(--choc-soft); }

/* ============ MAGNETIC CAROUSEL (Produtos) ============ */
.mc-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 460px;
  margin: 0 auto;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 6vw;
}
.mc-wrap::-webkit-scrollbar { display: none; }
.mc-wrap.has-open { justify-content: flex-start; }
.mc-backdrop {
  position: absolute;
  inset: -3rem;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(60% 60% at 50% 40%, rgba(43,23,16,.06), transparent 70%);
  transition: opacity .4s var(--ease);
}
@media (max-width: 640px) {
  .mc-backdrop { inset: -1rem; }
}
.mc-backdrop.is-active { opacity: 1; pointer-events: auto; }

.mc-bar {
  flex: none;
  position: relative;
  width: 130px;
  height: 460px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  z-index: 2;
  box-shadow: var(--shadow-card);
  will-change: width, height;
}
.mc-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,8,6,.88) 0%, rgba(20,8,6,.15) 55%, rgba(20,8,6,0) 80%);
}
.mc-bar.is-open { z-index: 3; }
.mc-bar:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.mc-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1.3rem 1.1rem;
  color: #fff;
}
.mc-label .tag {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: .3rem;
  white-space: normal;
  overflow-wrap: break-word;
}
.mc-label h3 {
  color: #fff;
  font-size: 1.15rem;
  margin: 0 0 .3rem;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.15;
}
.mc-label p {
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  margin: 0;
  max-width: 26ch;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), max-height .35s var(--ease), margin .35s var(--ease);
}
.mc-label .mc-cta {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), max-height .35s var(--ease);
  pointer-events: none;
}
.mc-bar.is-open .mc-label p {
  opacity: 1;
  transform: translateY(0);
  max-height: 6rem;
  margin: 0 0 .6rem;
}
.mc-bar.is-open .mc-label .mc-cta {
  opacity: 1;
  transform: translateY(0);
  max-height: 2rem;
  pointer-events: auto;
}

.mc-hint {
  text-align: center;
  font-size: .78rem;
  color: var(--choc-soft);
  margin-top: 1.6rem;
}

@media (max-width: 860px) {
  .mc-wrap { height: 380px; gap: 12px; }
  .mc-bar { width: 84px; height: 380px; }
}
@media (max-width: 480px) {
  .mc-label { padding: .6rem .45rem; }
  .mc-label .tag { font-size: .56rem; letter-spacing: .06em; margin-bottom: .2rem; }
  .mc-label h3 { font-size: .8rem; margin-bottom: .2rem; }
  .mc-label p { font-size: .68rem; max-width: none; }
  .mc-label .mc-cta { font-size: .66rem; }
}

/* ============ DEPOIMENTOS ============ */
.depoimentos {
  background: var(--red-deep);
  color: #fff;
}
.depoimentos .section-head h2 { color: #fff; }
.depoimentos .section-head p { color: #E9D9C9; }
.depoimentos .eyebrow { color: var(--gold-soft); }
.depoimentos .eyebrow::before { background: var(--gold-soft); }

.carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.carousel-track {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel-slides {
  display: flex;
  transition: transform .6s var(--ease);
}
.slide {
  flex: 0 0 100%;
  background: var(--cream-card);
  color: var(--choc);
  padding: clamp(2rem, 5vw, 3.2rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.slide .stars { color: var(--gold); letter-spacing: .2em; font-size: 1rem; }
.slide p.quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--choc);
  margin: 0;
  line-height: 1.5;
}
.slide-person {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: .4rem;
}
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-crest), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.slide-person div strong { display: block; font-size: .95rem; }
.slide-person div span { font-size: .78rem; color: var(--choc-soft); }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 1.6rem;
}
.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .3s;
}
.carousel-btn:hover { background: rgba(255,255,255,.15); transform: scale(1.06); }
.carousel-dots { display: flex; gap: .5rem; }
.carousel-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .3s, width .3s;
}
.carousel-dots button.active { background: var(--gold); width: 22px; border-radius: 6px; }

.gmb-link {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.gmb-link a {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 2px;
}

/* ============ FAQ ============ */
.faq { background: var(--cream); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.faq-item {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--red-deep);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--red-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .35s var(--ease);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--red-deep);
}
.faq-q .plus::before { width: 12px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 12px; transition: transform .3s var(--ease); }
.faq-item.is-open .faq-q .plus::after { transform: rotate(90deg) scaleY(0); }
.faq-item.is-open .faq-q .plus { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.faq-a p {
  margin: 0;
  padding: 0 1.6rem 1.4rem;
  color: var(--choc-soft);
  max-width: 68ch;
}

/* ============ CONTATO / FOOTER ============ */
.contato {
  background: var(--choc);
  color: #EFE3D6;
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 880px) { .contato-grid { grid-template-columns: 1fr; } }
.contato-info h2 { color: #fff; }
.contato-info ul { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.4rem; }
.contato-info li { display: flex; gap: .8rem; align-items: flex-start; }
.contato-info li svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.contato-info a:hover { color: var(--gold-soft); }
.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  min-height: 280px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 280px; border: 0; filter: grayscale(.15) contrast(1.05); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(239,227,214,.7);
}
.footer-bottom a { font-weight: 700; color: var(--gold-soft); }
.social-row { display: flex; gap: .7rem; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .3s;
}
.social-row a:hover { background: var(--gold); color: var(--choc); transform: translateY(-3px); }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 800;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-deep);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.55);
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(168,18,28,.5);
  animation: wa-ring 2.6s ease-out infinite;
}
@keyframes wa-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes wa-ring { 0% { transform: scale(.9); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

/* ============ ACCESS BUTTON PULSE (shared with floating WhatsApp) ============ */
.btn, .whatsapp-pill {
  position: relative;
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.btn::before, .whatsapp-pill::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(217,165,24,.55);
  animation: wa-ring 2.6s ease-out infinite;
  pointer-events: none;
}
.hero .btn::before { border-color: rgba(255,255,255,.45); }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============ BOLOS PAGE ============ */
.page-hero {
  padding-top: 150px;
  padding-bottom: 3.5rem;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,6,4,.88) 0%, rgba(15,6,4,.72) 55%, rgba(15,6,4,.82) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: #E9D9C9; max-width: 56ch; margin: .6rem auto 0; }
.breadcrumb {
  display: flex;
  gap: .5rem;
  justify-content: center;
  font-size: .78rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
}

.bolos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
@media (max-width: 980px) { .bolos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .bolos-grid { grid-template-columns: 1fr; } }

.bolo-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: flex;
  gap: 1.1rem;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.bolo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.bolo-photo {
  width: 84px; height: 84px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--gold);
  transition: transform .5s var(--ease);
}
.bolo-card:hover .bolo-photo { transform: rotate(-6deg) scale(1.05); }
.bolo-photo img { width: 100%; height: 100%; object-fit: cover; }
.bolo-text h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.bolo-text p { font-size: .9rem; color: var(--choc-soft); margin: 0; }
.bolo-text .badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red-crest);
  background: rgba(168,18,28,.08);
  padding: .2em .6em;
  border-radius: 999px;
  margin-bottom: .4rem;
}

.cta-banda {
  background: var(--red-deep);
  color: #fff;
  text-align: center;
  padding: clamp(2.6rem, 6vw, 4rem) 0;
}
.cta-banda h2 { color: #fff; }
.cta-banda p { color: #E9D9C9; max-width: 52ch; margin: 0 auto 1.6rem; }
