﻿
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

/* Paleta e base */
:root {
  --brand: #b69151;
  --brand-700: #8c6d34;
  --brand-600: #9a7a3f;
  --brand-200: #d8c19a;
  --bg: #fde4e1;
  --text: #463831;
  --muted: #6f6864;
  --border: #eadfda;
  --card: #ffffff;
  --shadow: 0 18px 42px rgba(63, 45, 38, 0.12);
  --shadow-soft: 0 10px 24px rgba(63, 45, 38, 0.1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --pink: #f473a7;
  --pink-700: #e45c9a;
  --pink-200: #f5c7c6;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --font-accent: 'Berkshire Swash', cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 520px at 8% -10%, rgba(244, 115, 167, 0.22), transparent 60%),
    radial-gradient(900px 620px at 92% 0%, rgba(182, 145, 81, 0.18), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  padding-top: var(--header-h, 82px);
}

main {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}
header nav ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
}

section {
  padding: clamp(64px, 8vw, 96px) 0;
  scroll-margin-top: clamp(64px, var(--header-h, 92px), 120px);
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }
}
/* Tipografia utilitária */
h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--text);
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 30px;
  display: grid;
  gap: 10px;
}

.section-head h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.2;
}

.eyebrow {
  font-size: 17px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-600);
  font-weight: 700;
}

.subhead,
.section-note,
.intro {
  color: var(--muted);
  font-weight: 500;
}

.subhead {
  font-size: 16px;
}

.section-note {
  font-size: 14px;
}

.lead {
  font-size: clamp(18px, 2.3vw, 22px);
  color: var(--brand-600);
  line-height: 1.3;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.section-ribbon {
  background: #fff;
  border: 1px dashed var(--brand-200);
  color: var(--brand-600);
  text-align: center;
  padding: 12px 14px;
  border-radius: 14px;
  margin: 0 auto 26px;
  max-width: 960px;
  font-weight: 600;
}
/* Botões e links */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, var(--pink), var(--pink-700));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 16px 36px rgba(244, 115, 167, 0.28);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button-strong {
  padding: 13px 22px;
}

.button:hover {
  background: linear-gradient(135deg, #f572a6, #de4f90);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.text-link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-600);
  font-weight: 700;
  font-size: 0.98rem;
}

.link-btn:hover {
  color: var(--brand);
}

.footer-ghost {
  margin-left: 10px;
  color: var(--brand-600);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.gallery-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, var(--pink), var(--pink-700));
  color: white;
  font-weight: 700;
}

.gallery-btn:hover {
  background: linear-gradient(135deg, #f572a6, #de4f90);
  border-color: rgba(255, 255, 255, 0.45);
}
/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 236, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(182, 145, 81, 0.18);
  box-shadow: 0 10px 28px rgba(63, 45, 38, 0.08);
  transition: padding .25s ease, box-shadow .25s ease, background .25s ease;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 22px;
}

header nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 1002;
}

header nav ul {
  list-style: none;
}

header .logo img {
  max-width: 110px;
  height: auto;
  transition: transform .3s ease;
}

header .logo img:hover {
  transform: scale(1.05);
}

header .leftside {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

header nav li a {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  color: var(--pink);
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

header nav li a:hover {
  color: var(--pink-700);
  background: rgba(244, 115, 167, 0.16);
  border-bottom-color: var(--pink);
}

.nav-link-active {
  background: transparent;
  box-shadow: none;
  color: var(--pink-700) !important;
  border-bottom-color: var(--pink);
  padding-bottom: 6px;
}

header nav li a[aria-current="page"] {
  color: var(--pink-700);
  border-bottom-color: var(--pink);
  background: rgba(244, 115, 167, 0.12);
}

header .rightside .button {
  padding: 10px 14px;
  font-size: 0.95rem;
  box-shadow: none;
}

header.header--scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  background: rgba(253, 236, 230, 0.97);
}

header.header--scrolled .container {
  padding: 8px 18px;
}

header.header--scrolled .logo img {
  max-width: 86px;
}

/* Mobile toggle */
header .menu-toggle {
  display: none;
  width: 40px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
}

header .menu-toggle .bar {
  width: 100%;
  height: 3px;
  background: var(--brand-600);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, background-color .2s ease;
}

header.is-open .menu-toggle .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

header.is-open .menu-toggle .bar:nth-child(2) {
  opacity: 0;
}

header.is-open .menu-toggle .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

.nav-backdrop {
  display: none;
}

@media (max-width: 900px) {
  header .container {
    padding: 12px 18px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  header nav {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .28s ease, opacity .22s ease;
  }

  header .leftside {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  header .rightside {
    width: 100%;
    display: none;
  }

  header .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-left: auto;
    order: 2;
  }

  header.is-open nav {
    max-height: 640px;
    opacity: 1;
  }

  header.is-open .leftside {
    background: linear-gradient(
      180deg,
      rgba(253, 236, 230, 0.98) 0%,
      rgba(248, 223, 217, 0.98) 45%,
      rgba(245, 206, 198, 0.98) 100%
    );
    padding: 16px 0 18px;
    margin-top: 10px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  }

  header nav li a {
    width: 100%;
    padding: 12px 18px;
    font-size: 16px;
    border-radius: 0;
    background: transparent;
    color: var(--pink);
    border-bottom: 1px solid transparent;
    box-shadow: none;
  }

  header.is-open .leftside li a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  header.is-open .leftside li:last-child a {
    border-bottom: none;
  }

  header nav li a:hover {
    background: rgba(244, 115, 167, 0.16);
    color: var(--pink-700);
  }

  header nav li a.nav-link-active {
    background: transparent;
    box-shadow: none;
    color: var(--pink-700) !important;
    border-bottom-color: var(--pink);
    padding-bottom: 6px;
  }

  header .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }

  header.is-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}
/* Banner + hero */
.banner {
  position: relative;
  min-height: calc(100vh - var(--header-h, 80px));
  color: #fff;
}

.banner .banner-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.banner .banner-track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 1s ease;
}

.banner .banner-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}

.banner .banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Fundo mais fosco para destacar conteúdo textual */
  filter: saturate(0.9) contrast(0.94) brightness(0.8);
  transform: scale(1.015);
}

.banner .banner-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Camada fosca base com leve tonalidade da marca */
  background:
    linear-gradient(0deg, rgba(18, 13, 12, 0.28), rgba(18, 13, 12, 0.28)),
    radial-gradient(120% 95% at 78% 8%, rgba(182, 145, 81, 0.16), transparent 62%);
}

.banner .banner-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Gradiente de contraste para legibilidade dos textos */
  background: linear-gradient(112deg, rgba(20, 14, 13, 0.64) 0%, rgba(45, 29, 25, 0.5) 52%, rgba(18, 12, 11, 0.3) 100%);
}

.banner .banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding: clamp(88px, 12vh, 140px) 0 90px;
}

.hero-grid {
  display: grid;
  gap: 26px;
  align-items: center;
  width: 100%;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
  }
}

.hero-copy h1 {
  font-family: var(--font-accent);
  font-size: clamp(28px, 3.3vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
}

.hero-copy .lead {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--pink-200);
  max-width: 640px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 8px;
}

.hero-chips p {
  margin: 0;
  flex: 1 1 100%;
  color: #fbecee;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}

.hero-actions .button {
  padding-inline: 16px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: stretch;
}

.hero-photo {
  background: #fff;
  padding: 12px;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.hero-caption {
  color: var(--pink-200);
  font-weight: 600;
  font-size: 0.95rem;
  margin-left: 4px;
}

/* Dots e setas */
.banner .banner-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.banner .banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.6);
  opacity: .6;
  cursor: pointer;
}

.banner .banner-dot.is-active {
  background: var(--brand-200);
  opacity: 1;
}

.banner .banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .25);
  color: #fff;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  transition: background .2s ease;
}

.banner .banner-arrow:hover {
  background: rgba(0, 0, 0, 0.5);
}

.banner .banner-arrow.left {
  left: 14px;
}

.banner .banner-arrow.right {
  right: 14px;
}

@media (max-width: 900px) {
  .banner {
    min-height: min(78vh, calc(100vh - var(--header-h, 80px)));
  }

  .banner .banner-content {
    padding: 86px 0 64px;
  }

  .hero-actions .button {
    font-size: 0.95rem;
    padding: 10px 14px;
  }

  .hero-caption {
    font-size: 0.9rem;
  }

  .banner .banner-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-photo {
    padding: 8px;
    border-radius: 14px;
  }

  .chip {
    font-size: 0.82rem;
    padding: 7px 10px;
  }

  .banner .banner-dots {
    bottom: 12px;
  }
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: clamp(58vh, 70vh, 72vh);
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: clamp(110px, 18vh, 170px) 0 80px;
  overflow: hidden;
}

.page-hero--with-bg .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Aplica acabamento fosco também nos banners internos */
  filter: saturate(0.88) contrast(0.95) brightness(0.78);
  transform: scale(1.02);
}

.page-hero--with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(18, 13, 12, 0.3), rgba(18, 13, 12, 0.3)),
    radial-gradient(125% 90% at 82% 8%, rgba(182, 145, 81, 0.15), transparent 60%);
}

.page-hero--with-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(20, 13, 12, 0.66) 0%, rgba(45, 29, 25, 0.5) 55%, rgba(18, 12, 11, 0.34) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: #fff;
}

.page-hero .lead {
  color: var(--pink-200);
  font-size: clamp(16px, 2.1vw, 20px);
}

@media (max-width: 900px) {
  .page-hero {
    min-height: min(65vh, calc(100vh - var(--header-h, 80px)));
    padding: 110px 0 70px;
  }

  /* Mobile recebe fosco um pouco mais intenso para preservar contraste */
  .banner .banner-bg,
  .page-hero--with-bg .page-hero-bg {
    filter: saturate(0.84) contrast(0.93) brightness(0.7);
  }

  .banner .banner-slide::before,
  .page-hero--with-bg::before {
    background:
      linear-gradient(0deg, rgba(16, 11, 10, 0.38), rgba(16, 11, 10, 0.38)),
      radial-gradient(125% 90% at 82% 8%, rgba(182, 145, 81, 0.1), transparent 60%);
  }
}
/* Caminhos principais */
.paths {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(253, 236, 230, 0.7) 100%);
  position: relative;
  overflow: hidden;
}

.paths::before {
  content: '';
  position: absolute;
  inset: -30% 10% auto -10%;
  height: 220px;
  background: radial-gradient(circle, rgba(182, 145, 81, 0.2), transparent 70%);
  opacity: 0.7;
}

.paths-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.path-card {
  background: var(--card);
  border: 1px solid rgba(182, 145, 81, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 22px 20px;
  display: grid;
  gap: 12px;
}

.path-card h3 {
  font-size: 20px;
  color: var(--brand-600);
}

.path-card p {
  color: var(--muted);
  font-size: 15.5px;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(176, 138, 82, 0.14);
  color: var(--brand-600);
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: 0 12px 26px rgba(182, 145, 81, 0.18);
}
/* Workshops e e-books */
.workshops {
  background: linear-gradient(180deg, rgba(253, 228, 225, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.workshops .subhead {
  text-align: center;
}

.workshops-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.workshop-card {
  background: #fff;
  border: 1px solid rgba(182, 145, 81, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.workshop-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.workshop-card .card-content {
  padding: 20px;
  display: grid;
  gap: 10px;
  flex: 1;
}

.workshop-card h3 {
  color: var(--brand-600);
  font-size: 20px;
}

.workshop-card p {
  color: var(--muted);
  font-size: 15.5px;
}

.workshop-card .button {
  width: max-content;
  margin-top: 6px;
}
/* Diferenciais */
.diferenciais {
  background: linear-gradient(180deg, rgba(245, 199, 198, 0.75) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.grid-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  max-width: 1100px;
  margin: 0 auto 18px;
}

.card {
  background: #ffffff;
  border: 1px solid rgba(182, 145, 81, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px 16px;
  text-align: left;
  display: grid;
  gap: 8px;
}

.card h3 {
  color: var(--brand-600);
  font-size: 18px;
}

.card p {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.5;
}
/* Galerias */
.galeria {
  padding: 64px 0 72px;
  background: rgba(255, 255, 255, 0.85);
}

.galeria .container {
  max-width: 1100px;
}

.galeria h2 {
  text-align: center;
}

.galeria .section-head {
  margin-bottom: 20px;
}

.galeria .galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.galeria .galeria-item {
  position: relative;
  overflow: hidden;
  background: #fde4e1;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.galeria .galeria-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.galeria .galeria-item:hover img {
  transform: scale(1.03);
}

.galeria .galeria-cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  gap: 12px;
  flex-wrap: wrap;
}

.galeria-preview .galeria-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
/* Temas preview */
.themes-preview {
  background: #fff7f4;
  padding: 64px 0 72px;
}

.themes-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.theme-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.theme-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.theme-card__content {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.theme-card__content h3 {
  color: var(--brand-600);
  font-size: 19px;
}

.theme-card__content p {
  color: var(--muted);
  font-size: 15.5px;
}

.theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.themes-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

/* Page hero (temas) */
.page-hero {
  padding: 80px 0 72px;
  background: linear-gradient(130deg, rgba(255, 246, 242, 0.9), rgba(252, 238, 233, 0.7));
}

.page-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.page-hero__grid .lead {
  color: var(--text);
  font-size: 17px;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.page-hero__card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 22px;
}

.page-hero__list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.themes-cta-panel {
  padding: 56px 0 80px;
  background: var(--pink-200);
}

.themes-cta-panel__card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
/* FAQ */
.faq {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(253, 228, 225, 0.7) 100%);
}

.faq .intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 26px;
  font-size: 16px;
}

.faq-list {
  max-width: 960px;
  margin: 0 auto 18px;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(182, 145, 81, 0.16);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item>summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--brand-600);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item>summary::after {
  content: "+";
  margin-left: auto;
  font-size: 20px;
  color: var(--brand-600);
  transition: transform .2s ease;
}

.faq-item[open]>summary::after {
  content: "-";
}

.faq-item .answer {
  padding: 0 18px 16px 18px;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.55;
  border-top: 1px dashed var(--border);
}

.faq .button,
.diferenciais .button {
  display: flex;
  width: max-content;
  margin: 24px auto 0;
}

.faq-page .faq-list {
  margin-top: 12px;
}
/* Sobre */
.sobre {
  background: #fff;
}

.sobre .sobre-card {
  margin: 0 auto;
  padding: 26px 22px;
  background: white;
  border: 1px solid rgba(182, 145, 81, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  max-width: 950px;
  display: grid;
  gap: 18px;
}

.sobre .lead {
  text-align: center;
}

.sobre .sobre-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.sobre .chip {
  background: rgba(182, 145, 81, 0.12);
  border-color: rgba(182, 145, 81, 0.3);
  color: var(--brand-600);
}

.sobre .sobre-texto {
  display: grid;
  gap: 14px;
  color: var(--text);
  font-weight: 500;
}

.sobre .sobre-refs {
  font-size: 13px;
  color: var(--text);
  opacity: .85;
  text-transform: uppercase;
}

@media (min-width: 820px) {
  .sobre .sobre-card {
    padding: 32px 30px;
  }
}

.sobre-preview {
  background: #fff;
}

.sobre-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 960px) {
  .sobre-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.sobre-copy p {
  color: var(--text);
}

.sobre-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.sobre-preview .button {
  margin-top: 12px;
}

.sobre-page .sobre-card {
  max-width: 980px;
}
/* Footer */
.site-footer {
  background: linear-gradient(180deg, rgba(253, 228, 225, 0.85) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-top: 1px solid rgba(182, 145, 81, 0.18);
  padding: 22px 0;
}

.site-footer .footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer .footer-center .brand {
  font-family: var(--font-display);
  color: var(--brand-600);
  font-size: 22px;
}

.site-footer .footer-left small {
  color: var(--muted);
  font-size: 12.5px;
}

.site-footer .footer-left a {
  font-size: 10.5px;
  color: var(--brand-600);
  text-decoration: none;
  border-bottom: 1px dotted var(--brand-600);
}

.site-footer .footer-left a:hover {
  color: var(--brand);
  border-bottom-color: transparent;
}

.site-footer .button {
  border-radius: 12px;
  box-shadow: none;
  padding: 10px 15px;
}

.site-footer .button:hover {
  transform: translateY(-1px);
}

@media (max-width: 820px) {
  .site-footer .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .site-footer .footer-right {
    order: 3;
  }

  .site-footer .footer-center {
    order: 1;
  }

  .site-footer .footer-left {
    order: 2;
  }
}

/* Motion */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.hero-visual,
.page-hero-content,
.path-card,
.workshop-card,
.card,
.galeria-item,
.sobre-media,
.faq-item {
  animation: fadeUp 0.85s ease both;
}

.hero-visual {
  animation-delay: 0.12s;
}

.path-card:nth-child(2),
.workshop-card:nth-child(2),
.card:nth-child(2),
.galeria-item:nth-child(2) {
  animation-delay: 0.08s;
}

.path-card:nth-child(3),
.workshop-card:nth-child(3),
.card:nth-child(3),
.galeria-item:nth-child(3) {
  animation-delay: 0.16s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Responsividade e utilidades */
.banner .banner-arrow:focus,
.banner .banner-dot:focus,
.faq-item>summary:focus {
  outline: 2px solid var(--brand-600);
  outline-offset: 2px;
}

@media (max-width: 820px) {
  .hero-grid {
    text-align: center;
  }

  .hero-chips,
  .hero-actions,
  .hero-visual {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-caption {
    text-align: center;
  }

  header .leftside {
    flex-wrap: nowrap;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  header .leftside {
    gap: 8px;
  }

  header nav li a {
    padding: 8px 8px;
    font-size: 0.92rem;
  }
}

@media (max-width: 500px) {
  .button,
  .button-strong,
  .gallery-btn {
    padding: 10px 13px;
    font-size: 0.95rem;
  }

  .hero-copy h1 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .hero-copy .lead {
    font-size: 15.5px;
  }
}

@media (min-width: 1500px) {
  .banner .banner-content {
    padding: 150px 0 120px;
  }

  .hero-photo {
    max-width: 520px;
    margin-left: auto;
  }
}

/* -------------------------------------------------------
   Interações premium: timing, sombras e feedback refinado
------------------------------------------------------- */
:root {
  --ease-luxury: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-snappy: cubic-bezier(0.3, 0, 0.2, 1);
  --ease-emphasized: cubic-bezier(0.16, 1, 0.3, 1);
  --focus-ring: 0 0 0 3px rgba(182, 145, 81, 0.22), 0 0 0 7px rgba(244, 115, 167, 0.14);
  --shadow-premium: 0 20px 48px rgba(63, 45, 38, 0.16), 0 4px 14px rgba(63, 45, 38, 0.09);
  --shadow-premium-hover: 0 28px 60px rgba(63, 45, 38, 0.22), 0 10px 24px rgba(63, 45, 38, 0.13);
}

/* Base comum para elementos interativos */
.button,
.gallery-btn,
.link-btn,
.text-link,
.footer-ghost,
header nav li a,
.path-card,
.workshop-card,
.card,
.theme-card,
.faq-item,
.galeria .galeria-item {
  transition-timing-function: var(--ease-luxury);
}

/* Botões com efeito de brilho e resposta tátil */
.button,
.gallery-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.45s var(--ease-luxury),
    box-shadow 0.45s var(--ease-luxury),
    border-color 0.35s var(--ease-snappy),
    filter 0.35s var(--ease-snappy);
}

.button::after,
.gallery-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 26%,
    rgba(255, 255, 255, 0.42) 47%,
    rgba(255, 255, 255, 0) 68%
  );
  transform: translateX(-130%);
  transition: transform 0.78s var(--ease-emphasized);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .gallery-btn:hover {
    transform: translateY(-3px) scale(1.012);
    box-shadow: 0 24px 44px rgba(63, 45, 38, 0.24);
    filter: saturate(1.06);
  }

  .button:hover::after,
  .gallery-btn:hover::after {
    transform: translateX(130%);
  }
}

.button:active,
.gallery-btn:active {
  transform: translateY(0) scale(0.985);
}

/* Links com sublinhado elegante animado */
.text-link,
.link-btn,
.footer-ghost {
  position: relative;
  text-decoration: none;
}

.text-link::after,
.link-btn::after,
.footer-ghost::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0.25);
  transform-origin: left;
  opacity: 0.45;
  transition: transform 0.35s var(--ease-emphasized), opacity 0.35s var(--ease-emphasized);
}

.text-link:hover::after,
.link-btn:hover::after,
.footer-ghost:hover::after {
  transform: scaleX(1);
  opacity: 0.95;
}

/* Navegação desktop com underline premium */
@media (min-width: 901px) {
  header nav li a {
    position: relative;
    border-bottom-color: transparent;
  }

  header nav li a::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink), var(--brand));
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: transform 0.38s var(--ease-emphasized), opacity 0.38s var(--ease-emphasized);
  }

  header nav li a:hover::after,
  header nav li a[aria-current="page"]::after,
  header nav li a.nav-link-active::after {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* Cards com elevação, glow sutil e borda viva */
.path-card,
.workshop-card,
.card,
.theme-card,
.faq-item,
.sobre .sobre-card,
.page-hero__card,
.themes-cta-panel__card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.45s var(--ease-luxury),
    box-shadow 0.45s var(--ease-luxury),
    border-color 0.35s var(--ease-snappy),
    background-color 0.35s var(--ease-snappy);
}

.path-card::before,
.workshop-card::before,
.card::before,
.theme-card::before,
.faq-item::before,
.sobre .sobre-card::before,
.page-hero__card::before,
.themes-cta-panel__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(244, 115, 167, 0.14), transparent 58%),
    radial-gradient(120% 90% at 100% 100%, rgba(182, 145, 81, 0.16), transparent 48%);
  opacity: 0;
  transition: opacity 0.45s var(--ease-luxury);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .path-card:hover,
  .workshop-card:hover,
  .card:hover,
  .theme-card:hover,
  .faq-item:hover,
  .sobre .sobre-card:hover,
  .page-hero__card:hover,
  .themes-cta-panel__card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-premium-hover);
    border-color: rgba(182, 145, 81, 0.34);
  }

  .path-card:hover::before,
  .workshop-card:hover::before,
  .card:hover::before,
  .theme-card:hover::before,
  .faq-item:hover::before,
  .sobre .sobre-card:hover::before,
  .page-hero__card:hover::before,
  .themes-cta-panel__card:hover::before {
    opacity: 1;
  }
}

.icon-circle {
  transition: transform 0.45s var(--ease-luxury), box-shadow 0.45s var(--ease-luxury), background-color 0.35s var(--ease-snappy);
}

@media (hover: hover) and (pointer: fine) {
  .path-card:hover .icon-circle {
    transform: translateY(-2px) scale(1.06) rotate(-4deg);
    box-shadow: 0 18px 30px rgba(182, 145, 81, 0.24);
    background: rgba(176, 138, 82, 0.2);
  }
}

/* Galeria com profundidade visual no hover */
.galeria .galeria-item {
  transition:
    transform 0.45s var(--ease-luxury),
    box-shadow 0.45s var(--ease-luxury),
    filter 0.35s var(--ease-snappy);
}

.galeria .galeria-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(31, 20, 18, 0.35) 100%),
    radial-gradient(80% 70% at 85% 0%, rgba(255, 255, 255, 0.24), transparent 58%);
  opacity: 0;
  transition: opacity 0.45s var(--ease-luxury);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .galeria .galeria-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium-hover);
    filter: saturate(1.06);
  }

  .galeria .galeria-item:hover::after {
    opacity: 1;
  }

  .galeria .galeria-item:hover img {
    transform: scale(1.08);
  }
}

/* Hero e componentes de carrossel com transição mais suave */
.hero-photo,
.hero-photo img,
.banner .banner-arrow,
.banner .banner-dot {
  transition-timing-function: var(--ease-emphasized);
}

.hero-photo {
  transition: transform 0.45s var(--ease-luxury), box-shadow 0.45s var(--ease-luxury);
}

@media (hover: hover) and (pointer: fine) {
  .hero-visual:hover .hero-photo {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
  }

  .hero-visual:hover .hero-photo img {
    transform: scale(1.025);
  }
}

.banner .banner-dot {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.38);
  transition:
    transform 0.3s var(--ease-emphasized),
    opacity 0.3s var(--ease-emphasized),
    background-color 0.3s var(--ease-emphasized),
    box-shadow 0.3s var(--ease-emphasized);
}

.banner .banner-dot.is-active {
  transform: scale(1.2);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.banner .banner-arrow {
  transition:
    transform 0.3s var(--ease-emphasized),
    background-color 0.3s var(--ease-emphasized),
    box-shadow 0.3s var(--ease-emphasized);
}

@media (hover: hover) and (pointer: fine) {
  .banner .banner-arrow:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  }
}

/* Estados de foco de alta legibilidade */
:where(
  .button,
  .gallery-btn,
  .link-btn,
  .text-link,
  .footer-ghost,
  header nav li a,
  .banner-arrow,
  .banner-dot,
  .faq-item > summary,
  .menu-toggle,
  input,
  textarea,
  select,
  button
):focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Inputs com feedback premium (para páginas com formulários) */
:where(input, textarea, select) {
  border: 1px solid rgba(182, 145, 81, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  transition:
    border-color 0.3s var(--ease-snappy),
    box-shadow 0.3s var(--ease-snappy),
    background-color 0.3s var(--ease-snappy);
}

:where(input, textarea, select):focus-visible {
  border-color: var(--pink);
  background: #fff;
}

/* -------------------------------------------------------
   Reveal em viewport (ativado via JS por data-attributes)
------------------------------------------------------- */
.hero-copy,
.hero-visual,
.page-hero-content,
.path-card,
.workshop-card,
.card,
.galeria-item,
.sobre-media,
.faq-item {
  animation: none;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.99);
  filter: saturate(0.92);
  transition:
    opacity 0.75s var(--ease-luxury),
    transform 0.75s var(--ease-luxury),
    filter 0.75s var(--ease-luxury);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: saturate(1);
}

/* Redução de movimento para acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .button::after,
  .gallery-btn::after,
  .path-card::before,
  .workshop-card::before,
  .card::before,
  .theme-card::before,
  .faq-item::before,
  .sobre .sobre-card::before,
  .page-hero__card::before,
  .themes-cta-panel__card::before,
  .galeria .galeria-item::after {
    display: none;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
