:root {
  --bg-cream: #f7f4eb;
  --hero-base: #f2f0ee;
  --accent: #f2c4a8;
  --ink: #000;
  --dark-btn: #31110f;
  --blue: #004168;

  /*
   * Padrão de largura (referência 1920×1080):
   * --layout-max-width = limite da área do site (não ultrapassa 1920px).
   * --content-max-width = coluna principal (carrossel, textos, blocos alinhados).
   */
  --layout-max-width: 1920px;
  --content-max-width: 1280px;
  --menu-height: 93px;
  --offer-peach: #e9b399;
  --agenda-surface: #f5f1e6;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg-cream);
}

html,
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg-cream);
  width: 100%;
  max-width: var(--layout-max-width);
  margin-left: auto;
  margin-right: auto;
}

body, p, a, span, button, input, textarea, select, li, nav {
  font-family: 'Inter', system-ui, sans-serif;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: 0;
}

.landing-main {
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero {
  position: relative;
  background: var(--hero-base);
  padding-top: var(--menu-height);
}

.hero-top-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--menu-height);
  z-index: 20;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.hero-nav {
  position: fixed;
  z-index: 25;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--content-max-width), 100%);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
  transition: box-shadow 0.35s ease;
}

.nav-scrolled .hero-nav {
  box-shadow: 0 2px 8px rgba(0, 66, 106, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-home {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  width: 78px;
  height: auto;
  display: block;
}

.brand-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 12px;
  gap: 2px;
}

.brand-name-main {
  font: 600 italic 17px/1.2 "Playfair Display", serif;
  color: var(--blue);
  white-space: nowrap;
}

.brand-name-sub {
  font: 400 11px/1 'Inter', system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.6;
}

.menu {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #00426a;
}

.menu-sep {
  border-left: 1px solid rgba(0, 66, 106, 0.2);
  padding-left: 26px;
  margin-left: 6px;
}

.menu a {
  position: relative;
}

.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 30;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #00426a;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.carousel {
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  height: 800px;
  overflow: hidden;
  position: relative;
}

.track {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  width: 25%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.bg {
  position: absolute;
  inset: 0;
  width: 135%;
  background-size: cover;
  background-position: center;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

#bg3 { background-position: 80% center; }

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.40) 0%, transparent 52%),
    linear-gradient(90deg, rgba(141, 90, 110, 0.60) 0%, rgba(196, 137, 106, 0.32) 52%, rgba(196, 137, 106, 0) 100%);
}

.content {
  position: absolute;
  z-index: 2;
  left: 80px;
  top: 258px;
  max-width: 470px;
  color: #fff;
}

.eyebrow {
  font: 300 italic 12px/1 'Inter', system-ui, sans-serif;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.content h1 {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease 0.2s, transform 0.55s ease 0.2s;
}

.content p {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.content .btn {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease 0.4s, transform 0.45s ease 0.4s;
}

.slide.is-active .eyebrow,
.slide.is-active .content h1,
.slide.is-active .content p,
.slide.is-active .content .btn {
  opacity: 1;
  transform: translateY(0);
}

.content h1 {
  margin: 14px 0 20px;
  font: 500 52px/1.1 "Playfair Display", serif;
}

.content h1 span {
  color: #f5b870;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.content p {
  margin: 0 0 27px;
  font: 300 16px/1.7 'Inter', system-ui, sans-serif;
  color: rgba(255, 245, 240, 0.78);
}

.controls {
  position: absolute;
  inset: auto 0 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px 0 80px;
  z-index: 3;
}

.dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
  transition: width 0.3s ease, background 0.3s ease;
}

.dot.active {
  width: 26px;
  background: var(--accent);
}

.slide-counter {
  position: absolute;
  top: 28px;
  right: 32px;
  font: 400 12px/1 'Inter', system-ui, sans-serif;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 10;
}

.arrows {
  display: flex;
  gap: 8px;
}

.arrows button {
  width: 42px;
  height: 42px;
  border-radius: 21px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.section {
  width: 100%;
  padding: 100px 152px;
}

.section.welcome {
  padding: 88px 40px 96px;
}

.welcome-layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: center;
}

.welcome-text {
  display: flex;
  flex-direction: column;
}

.welcome-text > .btn {
  align-self: flex-start;
}

.welcome-photo {
  height: 420px;
  max-width: 400px;
  margin-left: auto;
  background: #eeece9;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.welcome-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Subtle gradient overlay — darkens bottom for watermark legibility */
.welcome-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,.22) 100%);
  pointer-events: none;
  z-index: 2;
}

.photo-guard {
  position: absolute;
  inset: 0;
  z-index: 5;
  cursor: default;
}

/* Marca d'água sutil */
.welcome-photo::after {
  content: "flaviavince.com";
  position: absolute;
  bottom: 14px;
  right: 16px;
  font: 500 10px/1 'Inter', system-ui, sans-serif;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  z-index: 6;
}

.section.welcome .intro {
  margin-bottom: 20px;
}

.section.welcome .intro:last-of-type {
  margin-bottom: 44px;
}

.welcome h2 {
  margin: 0 0 48px;
  font: 500 clamp(2rem, 2.8vw, 2.5rem) / 1.12 "Playfair Display", serif;
  letter-spacing: -0.01em;
  max-width: 100%;
}

.testimonials h2 {
  margin: 0 0 42px;
  font: 500 36px/1.1 "Playfair Display", serif;
  letter-spacing: -0.01em;
}

.welcome .columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 56px;
  margin-bottom: 44px;
}

.columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 48px;
  margin-bottom: 40px;
}

.columns p,
.intro {
  margin: 0;
  font: 400 18px/1.6 'Inter', system-ui, sans-serif;
  letter-spacing: -0.02em;
  color: #4a4a4a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 500px;
  font: 400 0.95rem/1.2 'Inter', system-ui, sans-serif;
  border: 0;
}

.btn-outline {
  border: 1px solid rgba(242, 196, 168, 0.5);
  color: var(--accent);
}

.btn-dark {
  background: var(--dark-btn);
  color: #fff;
}

.image-break {
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  min-height: 420px;
  background: linear-gradient(120deg, #d9d0c3 0%, #cbb7a0 48%, #a98f7d 100%);
}

.offer-stack {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  margin: 0;
}

.offer-stack-photo {
  width: 100%;
  line-height: 0;
  background: #d4c4b8;
}

.offer-stack-photo img {
  width: 100%;
  height: clamp(280px, 36vw, 440px);
  object-fit: cover;
  object-position: center 32%;
  display: block;
}

.offer-stack-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--offer-peach);
  color: #fff;
  padding: 48px 48px 56px;
}

.offer-stack-panel > .offer-kicker,
.offer-stack-panel > .offer-heading {
  align-self: flex-start;
}

.offer-stack-panel > .btn-offer-cta {
  align-self: center;
}

.offer-stack-panel--agenda .agenda-actions {
  justify-content: center;
}

.offer-stack-panel--agenda {
  background: var(--agenda-surface);
  color: #111;
}

.offer-stack-panel--agenda .offer-kicker {
  color: #6b635c;
  opacity: 1;
}

.offer-stack-panel--agenda .offer-heading {
  color: #111;
}

.offer-stack-panel--agenda .offer-body {
  color: #2a2a2a;
}

.offer-kicker {
  margin: 0 0 12px;
  font: 300 italic 12px/1 'Inter', system-ui, sans-serif;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.offer-heading {
  margin: 0 0 24px;
  font: 500 38px/1.1 "Playfair Display", serif;
  letter-spacing: -0.01em;
}

.offer-wordcloud {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.28em 0.42em;
  margin: 0 auto 28px;
  max-width: min(52rem, 100%);
  text-align: center;
  line-height: 1.45;
}

.offer-stack-panel:not(.offer-stack-panel--agenda) .offer-wordcloud {
  color: #fff;
}

.offer-wordcloud .wc {
  display: inline-block;
  vertical-align: baseline;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.offer-wordcloud .wc-faint {
  font-size: clamp(0.82rem, 1.55vw, 0.98rem);
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.01em;
}

.offer-wordcloud .wc-mid {
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: -0.02em;
}

.offer-wordcloud .wc-strong {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  opacity: 1;
  text-shadow: 0 1px 12px rgba(49, 17, 15, 0.18);
}

.offer-wordcloud .wc-hero {
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
  opacity: 1;
  text-shadow: 0 2px 14px rgba(49, 17, 15, 0.2);
}

.offer-wordcloud .wc-accent {
  font-size: clamp(2rem, 5.5vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0.12em 0.08em;
  opacity: 1;
  text-shadow: 0 2px 16px rgba(49, 17, 15, 0.22);
}

.offer-wordcloud .wc-tilt {
  transform: rotate(-2.2deg);
}

.offer-wordcloud .wc-tilt-alt {
  transform: rotate(2deg);
}

@media (prefers-reduced-motion: reduce) {
  .offer-wordcloud .wc-tilt,
  .offer-wordcloud .wc-tilt-alt {
    transform: none;
  }
}

.offer-body {
  margin: 0 0 20px;
  font: 400 20px/1.35 'Inter', system-ui, sans-serif;
  letter-spacing: -0.02em;
  max-width: 58ch;
}

.offer-body:last-of-type {
  margin-bottom: 28px;
}

.offer-em {
  font-weight: 600;
  font-size: 1.12em;
  letter-spacing: -0.03em;
}

.offer-em-line {
  display: inline-block;
  margin-top: 0.15em;
}

.offer-em-accent {
  display: inline-block;
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-left: 0.08em;
}

.btn-offer-cta {
  margin-top: 8px;
  background: #fff;
  color: var(--offer-peach);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-offer-cta:hover {
  filter: brightness(1.03);
}

.testimonials {
  background: #fff;
  text-align: center;
}

.testimonials .intro {
  margin: 0 auto 40px;
  max-width: 650px;
}

.testimonial-carousel {
  max-width: min(900px, 100%);
  margin: 0 auto 28px;
  width: 100%;
}

.testimonial-viewport {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  position: relative;
  width: 100%;
}

.testimonial-slide {
  display: none;
  box-sizing: border-box;
  padding: 0 8px;
}

.testimonial-slide.is-active {
  display: block;
}

.testimonial-quote {
  margin: 0 auto 20px;
  padding: 28px 36px;
  max-width: 100%;
  background: #f6f6f6;
  font: 500 clamp(1.05rem, 2.2vw, 1.65rem) / 1.35 'Inter', system-ui, sans-serif;
  letter-spacing: -0.03em;
  text-align: left;
}

.testimonial-slide .author {
  margin: 0 0 8px;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  text-align: center;
}

.testimonial-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px 0;
  gap: 16px;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.testimonial-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(49, 17, 15, 0.25);
}

.testimonial-dots .dot.active {
  width: 26px;
  background: var(--dark-btn);
}

.testimonial-arrows {
  display: flex;
  gap: 8px;
}

.testimonial-arrows button {
  width: 42px;
  height: 42px;
  border-radius: 21px;
  border: 1px solid rgba(49, 17, 15, 0.2);
  background: rgba(49, 17, 15, 0.06);
  color: var(--dark-btn);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.testimonial-arrows button:hover {
  background: rgba(49, 17, 15, 0.1);
}

.offer-stack-panel--agenda .agenda-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 4px;
}

.offer-stack-panel--agenda .agenda-actions .btn {
  min-height: 44px;
  border-radius: 999px;
  font-weight: 500;
}

.agenda-section {
  width: 100%;
  background: var(--agenda-surface);
  padding: 80px 40px;
}

.agenda-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: var(--content-max-width);
  margin: 0 auto;
  align-items: start;
}

.agenda-text {
  display: flex;
  flex-direction: column;
  color: #111;
}

.agenda-text .offer-kicker {
  color: #6b635c;
  opacity: 1;
}

.agenda-text .offer-heading {
  color: #111;
}

.agenda-text .offer-body {
  color: #2a2a2a;
  font-size: 18px;
}

.agenda-text .agenda-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 4px;
  justify-content: flex-start;
}

.agenda-text .agenda-actions .btn {
  min-height: 44px;
  border-radius: 999px;
  font-weight: 500;
}

/* ── Calendário público de agendamento ── */
.pub-cal {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 24px;
}

.pub-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  text-align: center;
}

.pub-cal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid rgba(61,26,26,0.2);
  background: none;
  color: #3d1a1a;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s;
}
.pub-cal-nav:hover { background: rgba(61,26,26,0.07); }

.pub-cal-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  color: #3d1a1a;
}

.pub-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  width: 100%;
}

.pub-cal-wday {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #6b635c;
  padding: 6px 0 10px;
}

.pub-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  background: none;
  border: 2px solid transparent;
  color: #bbb;
  cursor: default;
  padding: 6px 0;
  line-height: 1.4;
  transition: all 0.2s ease;
}
.pub-cal-day--empty { visibility: hidden; }

.pub-cal-day--disabled {
  color: #ccc;
  cursor: not-allowed;
}
.pub-cal-day--disabled:hover { background: none; }

.pub-cal-day--future {
  color: #3d1a1a;
  cursor: pointer;
}
.pub-cal-day--future:hover { background: rgba(61,26,26,0.06); }

.pub-cal-day--today {
  border-color: #c8956c;
  color: #3d1a1a;
  font-weight: 600;
}

.pub-cal-day--avail {
  background: #3d1a1a;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.pub-cal-day--avail:hover {
  background: #f5ede8;
  color: #3d1a1a;
}
.pub-cal-day--today.pub-cal-day--avail {
  border-color: #c8956c;
}

.pub-cal-day--sel,
.pub-cal-day--sel:hover {
  background: #c8956c !important;
  color: #fff !important;
  border-color: #c8956c !important;
}

/* Slots do dia selecionado */
.pub-cal-slots { margin-top: 20px; }

.pub-cal-footer {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-top: 12px;
  font-style: italic;
  line-height: 1.5;
}

.pub-slots-empty {
  font-size: 0.85rem;
  color: #999;
  text-align: center;
  padding: 16px 0 4px;
  margin: 0;
}

.pub-slots-header {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: #111;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.pub-slots-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pub-slot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
}

.pub-slot--avail {
  background: #fff;
  border: 1.5px solid rgba(61,26,26,0.2);
  transition: background 0.15s, border-color 0.15s;
}
.pub-slot--avail:hover { background: #3d1a1a; border-color: #3d1a1a; }
.pub-slot--avail:hover .pub-slot-hora,
.pub-slot--avail:hover .pub-slot-status,
.pub-slot--avail:hover .pub-slot-cta { color: #fff; }

.pub-slot--busy {
  background: rgba(0,0,0,0.03);
  border: 1.5px solid rgba(0,0,0,0.07);
  opacity: 0.55;
}

.pub-slot-hora {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #111;
  min-width: 46px;
}

.pub-slot-status {
  font-size: 0.78rem;
  color: #6b635c;
}

.pub-slot-cta {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: #3d1a1a;
  white-space: nowrap;
}

.btn-agenda-mail {
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
}

.btn-agenda-mail:hover {
  background: #003351;
  border-color: #003351;
  color: #fff;
}

.btn-agenda-wa {
  background: var(--dark-btn);
  color: #fff;
  border: 2px solid var(--dark-btn);
}

.btn-agenda-wa:hover {
  background: #4a1a16;
  border-color: #4a1a16;
  color: #fff;
}

blockquote {
  margin: 0 auto 28px;
  padding: 30px 50px;
  max-width: min(900px, 100%);
  background: #f6f6f6;
  font: 500 28px/1.2 'Inter', system-ui, sans-serif;
  letter-spacing: -0.04em;
}

.author {
  margin-bottom: 34px;
  font-size: 24px;
}

.testimonials .btn-blue {
  margin-top: 12px;
}

.btn-blue {
  background: var(--blue);
  color: #fff;
}

.footer {
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 20px 28px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-triple .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 28px;
  align-items: center;
  margin-bottom: 12px;
}

.footer-col-brand {
  text-align: left;
}

.footer-logo-mark {
  width: auto;
  height: auto;
  margin: 0 0 6px;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.footer-logo-home {
  display: inline-block;
  line-height: 0;
}

.footer-logo-mark img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-name {
  margin: 0 0 2px;
  font: 600 italic 1.06rem/1.2 "Playfair Display", serif;
  color: var(--blue);
}

.footer-role {
  margin: 0;
  font: 400 0.69rem/1 'Inter', system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.6;
}

.footer-col-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
}

.footer-quote {
  margin: 0;
  padding: 0;
  border: 0;
  max-width: 28rem;
  font: italic 300 clamp(1.05rem, 2.1vw, 1.35rem) / 1.45 'Playfair Display', serif;
  color: #5c534e;
  text-align: center;
  background: transparent;
}

.footer-col-contacts {
  text-align: right;
}

.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font: 400 0.78rem/1.55 'Inter', system-ui, sans-serif;
}

.footer-contact-list li {
  margin: 0;
}

.footer-contact-list a {
  color: #6b6560;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.footer-contact-list a:hover {
  color: #00426a;
}

.contact-label {
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.65;
  white-space: nowrap;
  flex-shrink: 0;
}

.copyright {
  margin: 0;
  font-size: 10px;
  text-align: center;
  color: #a8a09a;
}

/* ═══════════════════════════════════════════
   SOCIAL ICONS
═══════════════════════════════════════════ */
.social-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.social-row--footer {
  justify-content: flex-end;
  margin-top: 0;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s cubic-bezier(.23,1,.32,1),
              box-shadow 0.18s cubic-bezier(.23,1,.32,1),
              filter 0.18s;
  flex-shrink: 0;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  text-decoration: none;
  filter: brightness(1.08);
}

.social-icon:active {
  transform: translateY(-1px) scale(0.96);
  transition-duration: 0.1s;
}

.social-wa    { background: #25D366; }
.social-email { background: #004168; }
.social-ig    { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-fb    { background: #1877F2; }

/* ═══════════════════════════════════════════
   CONTACT FORM SECTION
═══════════════════════════════════════════ */
.contato-section {
  background: #fff;
  padding: 80px 40px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  max-width: var(--content-max-width);
  margin: 0 auto;
  align-items: start;
}

.contato-heading {
  margin: 0 0 16px;
  font: 500 2rem/1.15 "Playfair Display", serif;
  color: #111;
  letter-spacing: -0.01em;
}

.contato-body {
  margin: 0;
  font: 400 1rem/1.65 'Inter', system-ui, sans-serif;
  color: #5c534e;
}

.contato-optional {
  font-weight: 400;
  font-size: 0.78em;
  color: #a8a09a;
}

/* Form layout */
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contato-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contato-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contato-field label {
  font: 500 0.78rem/1 'Inter', system-ui, sans-serif;
  letter-spacing: 0.03em;
  color: var(--blue);
}

.contato-field input,
.contato-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd8cc;
  border-radius: 10px;
  font: 400 0.95rem/1.4 'Inter', system-ui, sans-serif;
  color: #333;
  background: #faf9f7;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
}

.contato-field input::placeholder,
.contato-field textarea::placeholder {
  color: #c0b8b0;
}

.contato-field input:focus,
.contato-field textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,65,104,.1);
}

.contato-field textarea {
  resize: vertical;
  min-height: 130px;
}

.contato-submit {
  align-self: flex-start;
  padding: 14px 32px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.12s, box-shadow 0.15s;
}
.contato-submit:hover  { filter: brightness(1.12); box-shadow: 0 4px 16px rgba(49,17,15,.25); }
.contato-submit:active { transform: scale(0.97); }
.contato-submit:disabled { opacity: 0.65; cursor: default; }

.contato-status {
  font: 400 0.88rem/1.5 'Inter', system-ui, sans-serif;
  min-height: 1.5em;
  border-radius: 8px;
  padding: 0;
}
.contato-status--ok  { color: #1e5e2a; background: #f0f7f0; border: 1px solid #b8ddb8; padding: 10px 14px; }
.contato-status--err { color: #8b2020; background: #fdf2f0; border: 1px solid #f5c6c6; padding: 10px 14px; }

.lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 32px;
  background: rgba(49, 17, 15, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(242, 196, 168, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lgpd-banner.is-visible {
  transform: translateY(0);
}

.lgpd-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 245, 240, 0.8);
  max-width: 760px;
}

.lgpd-text strong {
  color: var(--accent);
  font-weight: 500;
}

.lgpd-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.lgpd-btn {
  padding: 10px 24px;
  border-radius: 40px;
  border: none;
  background: var(--accent);
  color: var(--dark-btn);
  font: 500 13px/1 'Inter', system-ui, sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.lgpd-btn:hover {
  background: #f5d0ba;
}

.lgpd-btn-decline {
  background: transparent;
  color: rgba(255, 245, 240, 0.65);
  border: 1px solid rgba(255, 245, 240, 0.22);
}

.lgpd-btn-decline:hover {
  background: rgba(255, 245, 240, 0.08);
  color: rgba(255, 245, 240, 0.9);
}

@media (max-width: 1024px) {
  .lgpd-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 14px;
  }
}

section[id],
footer[id] {
  scroll-margin-top: var(--menu-height);
}

@media (max-width: 1024px) {
  :root {
    --menu-height: 72px;
  }

  .hero-top-bg {
    height: var(--menu-height);
  }

  .hero-nav,
  .section,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
  }

  .brand img {
    height: 40px;
    width: auto;
  }

  .brand-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
    gap: 2px;
  }

  .brand-name-main {
    font: 600 italic 17px/1.2 "Playfair Display", serif;
    color: var(--blue);
    white-space: nowrap;
  }

  .brand-name-sub {
    font: 400 11px/1 'Inter', system-ui, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    opacity: 0.6;
  }

  .hamburger {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 66, 106, 0.12);
    padding: 8px 24px 20px;
    gap: 0;
  }

  .menu.menu-open {
    display: flex;
  }

  .menu li {
    border-bottom: 1px solid rgba(0, 66, 106, 0.08);
  }

  .menu li:last-child {
    border-bottom: none;
  }

  .menu a {
    display: block;
    padding: 14px 0;
  }

  .carousel {
    height: min(85vh, 500px);
  }

  .bg {
    background-position: top center;
  }

  #bg3 {
    background-position: 80% 20%;
  }

  .content {
    left: 24px;
    max-width: 82%;
    top: 38%;
  }

  .controls {
    left: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .columns,
  .welcome .columns {
    grid-template-columns: 1fr;
  }

  .footer-triple .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col-brand,
  .footer-col-contacts {
    text-align: center;
  }

  .footer-col-quote {
    order: 2;
  }

  .footer-col-contacts {
    order: 3;
  }

  .social-row--footer {
    justify-content: center;
  }

  .section.welcome {
    padding-left: 24px;
    padding-right: 24px;
  }

  .welcome-layout {
    grid-template-columns: 1fr;
  }

  .welcome-photo {
    height: 340px;
    max-width: 100%;
    order: -1;
  }

  .offer-stack-panel {
    padding: 32px 24px 40px;
  }

  .offer-stack-photo img {
    height: 220px;
  }

  .agenda-section {
    padding: 56px 24px;
  }

  .agenda-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .agenda-text {
    text-align: center;
    align-items: center;
  }

  .agenda-text .agenda-actions {
    justify-content: center;
  }

  .pub-cal {
    max-width: 100%;
  }

  .contato-section {
    padding: 56px 24px;
  }

  .contato-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contato-intro {
    text-align: center;
  }

  .social-row {
    justify-content: center;
  }

  .social-row--footer {
    justify-content: flex-end;
  }

  .contato-row {
    grid-template-columns: 1fr;
  }

  .contato-submit {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .overlay {
    background: linear-gradient(
      to right,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.4)  50%,
      rgba(0,0,0,0.0)  100%
    );
  }

  .content {
    top: 60px;
  }

  .content h1 {
    font-size: 32px;
    margin: 10px 0 14px;
  }

  .content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .social-row--footer {
    justify-content: center;
  }

  .section.welcome .welcome-text h2,
  .section.welcome .welcome-text .intro {
    text-align: center;
  }

  .section.welcome .welcome-text > .btn {
    align-self: center;
    margin: 0 auto;
  }
}

/* ═══════════════════════════════════════════
   BLOG — lista de posts (blog.php)
   ═══════════════════════════════════════════ */

.blog-page  { padding: calc(var(--menu-height) + 56px) 24px 80px; max-width: 1100px; margin: 0 auto; }
.blog-hero  { text-align: center; margin-bottom: 56px; }
.blog-kicker { font: 400 11px/1 'Inter', system-ui, sans-serif; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); opacity: .6; margin-bottom: 12px; }
.blog-heading { font: 500 42px/1.1 'Playfair Display', serif; color: #1a1a1a; margin: 0 0 16px; }
.blog-sub   { font: 300 16px/1.6 'Inter', system-ui, sans-serif; color: #6a6a6a; max-width: 480px; margin: 0 auto; }

.blog-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 32px; }
.blog-card  { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.07); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.12); }

.blog-card-img { width: 100%; height: 200px; object-fit: cover; display: block; background: var(--hero-base); }
.blog-card-img--placeholder { height: 200px; background: linear-gradient(135deg, #f2ede6, #e8ddd3); display: flex; align-items: center; justify-content: center; }
.blog-card-body   { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat    { font: 500 11px/1 'Inter', system-ui, sans-serif; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); opacity: .7; margin-bottom: 10px; }
.blog-card-title  { font: 500 20px/1.3 'Playfair Display', serif; color: #1a1a1a; margin: 0 0 12px; }
.blog-card-resumo { font: 300 14px/1.65 'Inter', system-ui, sans-serif; color: #6a6a6a; margin: 0 0 20px; flex: 1; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.blog-card-date   { font: 300 12px/1 'Inter', system-ui, sans-serif; color: #aaa; }
.blog-card-link   { font: 500 13px/1 'Inter', system-ui, sans-serif; color: var(--blue); text-decoration: none; }
.blog-card-link:hover { text-decoration: underline; }
.blog-empty { text-align: center; padding: 80px 24px; color: #aaa; font-family: 'Playfair Display', serif; font-size: 1.2rem; }

@media (max-width: 600px) {
  .blog-heading { font-size: 28px; }
  .blog-grid    { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   POST — página de artigo (post.php)
   ═══════════════════════════════════════════ */

.post-wrap  { max-width: 740px; margin: 0 auto; padding: calc(var(--menu-height) + 48px) 24px 96px; }
.post-back  { display: inline-flex; align-items: center; gap: 6px; font: 400 13px/1 'Inter', system-ui, sans-serif; color: var(--blue); text-decoration: none; opacity: .7; margin-bottom: 36px; transition: opacity .15s; }
.post-back:hover { opacity: 1; }
.post-cat   { font: 500 11px/1 'Inter', system-ui, sans-serif; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); opacity: .7; margin-bottom: 14px; }
.post-title { font: 500 40px/1.2 'Playfair Display', serif; color: #1a1a1a; margin: 0 0 18px; }
.post-meta  { font: 300 13px/1 'Inter', system-ui, sans-serif; color: #aaa; margin-bottom: 36px; }
.post-cover { width: 100%; max-height: 420px; object-fit: cover; border-radius: 16px; margin-bottom: 40px; display: block; }

.post-body  { font: 300 17px/1.8 'Inter', system-ui, sans-serif; color: #3a3a3a; }
.post-body h2, .post-body h3 { font-family: 'Playfair Display', serif; font-weight: 500; color: #1a1a1a; margin: 2em 0 .6em; }
.post-body h2 { font-size: 1.5rem; }
.post-body h3 { font-size: 1.2rem; }
.post-body p  { margin: 0 0 1.4em; }
.post-body ul, .post-body ol { margin: 0 0 1.4em 1.5em; }
.post-body li { margin-bottom: .5em; }
.post-body a  { color: var(--blue); }
.post-body blockquote { border-left: 3px solid #c8956c; padding: 12px 20px; margin: 1.5em 0; color: #5a5a5a; font-style: italic; background: #faf7f4; border-radius: 0 8px 8px 0; }
.post-body img { max-width: 100%; border-radius: 10px; margin: 1em 0; }

.post-divider { border: none; border-top: 1px solid #ede8e0; margin: 48px 0; }
.post-cta     { background: #f5f0eb; border-radius: 16px; padding: 32px; text-align: center; }
.post-cta h3  { font: 500 22px/1.2 'Playfair Display', serif; color: #1a1a1a; margin: 0 0 10px; }
.post-cta p   { font: 300 14px/1.6 'Inter', system-ui, sans-serif; color: #6a6a6a; margin: 0 0 20px; }

@media (max-width: 600px) {
  .post-title { font-size: 28px; }
  .post-body  { font-size: 15px; }
}
