/* ==========================================================================
   Letícia Almeida — sistema de design
   Paleta, tipografia, componentes e animações. Editar aqui para ajustar
   qualquer coisa visual do site inteiro.
   ========================================================================== */

:root {
  --cocoa-dark: #2b180f;
  --chocolate: #4b2b1b;
  --terracotta: #6b4028;
  --bronze: #8a5b32;
  --aged-gold: #ad8536;
  --champagne: #d8c3ad;
  --ivory: #f4eadf;
  --porcelain: #fbf7f2;
  --coffee-text: #342218;

  --font-sans: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;

  --container-max: 1320px;
  --section-pad: 96px;
  --radius-organic: 28px;
}

@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--porcelain);
  color: var(--coffee-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, p, dl, dd, dt, figure { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) { .container { padding-inline: 40px; } }
@media (min-width: 1280px) { .container { padding-inline: 64px; } }

.section { padding-block: var(--section-pad); }

:focus-visible {
  outline: 2px solid var(--aged-gold);
  outline-offset: 3px;
}

body.menu-open { overflow: hidden; }

/* ---------- Tipografia ---------- */
.italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--aged-gold);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aged-gold);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}
.eyebrow--light { color: var(--champagne); }

h1, h2 {
  font-weight: 900;
  line-height: 1.1;
  color: var(--coffee-text);
}
h1 { font-size: clamp(2.25rem, 4vw + 1rem, 3.4rem); }
h2 { font-size: clamp(1.9rem, 3vw + 1rem, 2.5rem); }
.section--dark h1, .section--dark h2,
.section--cocoa h1, .section--cocoa h2 { color: var(--porcelain); }

.lede {
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(52, 34, 24, 0.75);
}
.section--dark .lede { color: rgba(251, 247, 242, 0.75); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.btn-arrow {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.12;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.btn-arrow svg { width: 14px; height: 14px; stroke: currentColor; opacity: 1; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-primary { background: var(--cocoa-dark); color: var(--porcelain); }
.btn-primary:hover { background: var(--chocolate); }

.btn-secondary { border-color: rgba(43, 24, 15, 0.3); color: var(--coffee-text); }
.btn-secondary:hover { border-color: var(--cocoa-dark); }

.btn-ghost-light { border-color: rgba(251, 247, 242, 0.4); color: var(--porcelain); }
.btn-ghost-light:hover { background: rgba(251, 247, 242, 0.1); }

.btn-text {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(173, 133, 54, 0.6);
  text-underline-offset: 4px;
}
.btn-text:hover { color: var(--aged-gold); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  background: transparent;
  transition: background-color 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
}
.site-header.is-scrolled {
  background: rgba(251, 247, 242, 0.85);
  border-bottom: 1px solid rgba(216, 195, 173, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (min-width: 768px) { .site-header .container { height: 96px; } }

.site-logo { display: block; line-height: 0; }
.site-logo img { height: 48px; width: auto; display: block; }
@media (min-width: 768px) { .site-logo img { height: 58px; } }

.site-header:not(.is-scrolled).header--on-dark .nav-link {
  color: var(--porcelain);
}
.site-header.is-scrolled .nav-link { color: var(--coffee-text); }

.main-nav { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coffee-text);
  transition: color 0.5s ease;
}
.nav-link:hover { color: var(--aged-gold); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { display: inline-flex; padding: 11px 20px; font-size: 0.82rem; }
@media (min-width: 768px) { .header-cta { padding: 13px 26px; font-size: 0.9rem; } }
/* Sobre hero escuro (ex: cursos.html) e ainda não rolado, o CTA vira contorno
   claro — senão o pill escuro do botão some contra o fundo escuro do hero. */
.site-header.header--on-dark:not(.is-scrolled) .header-cta {
  background: none;
  border-color: rgba(251, 247, 242, 0.4);
  color: var(--porcelain);
}
.site-header.header--on-dark:not(.is-scrolled) .header-cta:hover {
  background: rgba(251, 247, 242, 0.1);
}

/* ---------- Image slot (placeholder) ---------- */
.img-slot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-organic);
}
.img-slot--square { border-radius: 20px; }
.img-slot img { width: 100%; height: 100%; object-fit: cover; }
.img-slot--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(173, 133, 54, 0.5);
  background: linear-gradient(135deg, var(--ivory), rgba(216, 195, 173, 0.6));
}
.img-slot--empty span {
  max-width: 70%;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(173, 133, 54, 0.85);
}
.ratio-3-4 { aspect-ratio: 3 / 4; }
.ratio-4-5 { aspect-ratio: 4 / 5; }
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-1-1 { aspect-ratio: 1 / 1; }
.ratio-16-10 { aspect-ratio: 16 / 10; }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .card-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) { .card-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.direction-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-organic);
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 768px) { .direction-card { padding: 40px; } }
.direction-card--light { background: var(--ivory); }
.direction-card--dark { background: var(--terracotta); color: var(--porcelain); }
.direction-card .img-slot { margin-top: 24px; transition: transform 0.5s ease; }
.direction-card:hover .img-slot { transform: scale(1.03); }
.direction-card .btn { margin-top: 32px; align-self: flex-start; }

.proc-card, .curso-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-organic);
  background: var(--porcelain);
  transition: box-shadow 0.3s ease;
}
.proc-card:hover, .curso-card:hover { box-shadow: 0 20px 40px rgba(43, 24, 15, 0.06); }
.proc-card .img-slot, .curso-card .img-slot { border-radius: 0; transition: transform 0.5s ease; }
.proc-card:hover .img-slot img, .curso-card:hover .img-slot img,
.proc-card:hover .img-slot, .curso-card:hover .img-slot { transform: scale(1.03); }
.proc-card-body, .curso-card-body { padding: 28px; }
.proc-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(173, 133, 54, 0.1);
  color: var(--aged-gold);
}
.proc-icon svg { width: 20px; height: 20px; }
.proc-card-body h3, .curso-card-body h3 { font-size: 1.25rem; font-weight: 700; margin-top: 16px; }
.proc-card-body p, .curso-card-body p { margin-top: 8px; font-size: 0.9rem; line-height: 1.6; color: rgba(52, 34, 24, 0.7); }

.pillar {
  height: 100%;
  border-radius: var(--radius-organic);
  background: var(--ivory);
  padding: 28px;
  transition: box-shadow 0.3s ease;
}
.pillar:hover { box-shadow: 0 16px 32px rgba(43, 24, 15, 0.06); }
/* Cards da trajetória "Como funciona" — um tom mais escuro de marrom que o
   card padrão (ivory), pra se destacar melhor no fundo escuro da seção. */
.steps-grid .pillar { background: var(--champagne); }
.pillar-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(173, 133, 54, 0.1);
  color: var(--aged-gold);
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar h3 { margin-top: 20px; font-size: 1.1rem; font-weight: 700; color: var(--coffee-text); }
.pillar p { margin-top: 8px; font-size: 0.9rem; line-height: 1.6; color: rgba(52, 34, 24, 0.7); }

/* ---------- Definition list (detalhes de procedimento/curso) ---------- */
.detail-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; font-size: 0.9rem; line-height: 1.6; color: rgba(52, 34, 24, 0.75); }
.detail-list dt { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--aged-gold); }
.detail-list dd { margin-top: 4px; }
.section--dark .detail-list { color: rgba(251, 247, 242, 0.75); }

/* ---------- Quote / depoimento ---------- */
.quote-card {
  border-radius: var(--radius-organic);
  border: 1px solid var(--champagne);
  background: var(--ivory);
  padding: 32px;
}
.quote-card p { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; line-height: 1.4; color: var(--coffee-text); }
.quote-card footer { margin-top: 16px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--aged-gold); }

/* ---------- Accordion (FAQ) ---------- */
.accordion { border-top: 1px solid var(--champagne); }
.detail-accordion { margin-top: 32px; }
.accordion-item { border-bottom: 1px solid var(--champagne); }
.accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary svg { width: 20px; height: 20px; color: var(--aged-gold); flex-shrink: 0; transition: transform 0.3s ease; }
.accordion-item[open] summary svg { transform: rotate(180deg); }
.accordion-item p { padding-bottom: 20px; max-width: 40rem; font-size: 0.9rem; line-height: 1.6; color: rgba(52, 34, 24, 0.7); }

/* ---------- Tabs (Resultados) ---------- */
.tabs-list { display: flex; flex-wrap: wrap; gap: 12px; }
.tab-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(43, 24, 15, 0.25);
  background: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--coffee-text);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.tab-btn[aria-selected="true"] { background: var(--cocoa-dark); color: var(--porcelain); border-color: var(--cocoa-dark); }
.tab-panel { display: none; padding-top: 40px; }
.tab-panel.is-active { display: block; animation: tab-fade 0.4s ease; }
@keyframes tab-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Butterfly ---------- */
.butterfly { color: var(--aged-gold); pointer-events: none; }
.butterfly--outline .butterfly-wings path { fill: none; stroke: currentColor; stroke-width: 2.25; }
.butterfly--solid .butterfly-wings path { fill: currentColor; stroke: none; }
.butterfly--ghost { opacity: 0.07; }
.butterfly--animated { animation: butterfly-float 14s ease-in-out infinite; }
.butterfly--animated.butterfly--alt { animation-duration: 13s; animation-direction: alternate-reverse; }
@keyframes butterfly-float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(6px, -9px) rotate(1.5deg); }
  50% { transform: translate(0, -3px) rotate(0deg); }
  75% { transform: translate(-6px, -8px) rotate(-1.5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
.butterfly-wings { transform-origin: 50% 45%; transition: transform 0.35s ease; }
a:hover > .butterfly .butterfly-wings,
.direction-card:hover .butterfly .butterfly-wings,
.btn:hover .butterfly .butterfly-wings { transform: scaleX(0.86); }

/* ---------- Organic path ---------- */
.organic-path { overflow: visible; pointer-events: none; color: var(--aged-gold); }
.organic-path path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  pathLength: 1;
  transition: stroke-dashoffset 1.6s ease-in-out;
}
.organic-path.is-drawn path { stroke-dashoffset: 0; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-group .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Seções de fundo ---------- */
.section--dark { background: var(--chocolate); color: var(--porcelain); }
.section--cocoa { background: var(--cocoa-dark); color: var(--porcelain); }
.section--ivory { background: var(--ivory); }
.section--porcelain { background: var(--porcelain); }
.section--champagne { background: rgba(216, 195, 173, 0.3); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: 160px; }
@media (min-width: 768px) { .hero { padding-top: 190px; } }
.hero .container { position: relative; }
.hero-grid { display: grid; gap: 56px; padding-bottom: 96px; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 0.95fr 1fr; align-items: center; gap: 40px; } }
.hero-media { position: relative; }
.hero-media .organic-path { position: absolute; left: -24px; top: -40px; width: 80%; height: 64px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-question { margin-top: 32px; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); }

/* ---------- Hero full-bleed (Home) ---------- */
/* Mobile: foto no topo (com fade próprio pra base), texto sobre o fade. */
.hero-full {
  position: relative;
  overflow: hidden;
  background: var(--porcelain);
  min-height: 86vh;
}
.hero-full-media { position: absolute; inset: 0; height: 82vh; z-index: 0; }
.hero-full-media picture { display: block; width: 100%; height: 100%; }
.hero-full-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
}
.hero-full-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(251, 247, 242, 0) 0%,
    rgba(251, 247, 242, 0) 46%,
    rgba(251, 247, 242, 0.55) 62%,
    rgba(251, 247, 242, 0.92) 76%,
    var(--porcelain) 90%
  );
}
.hero-full-inner { position: relative; z-index: 2; padding-top: 52vh; padding-bottom: 48px; }
.hero-full-content { max-width: 30rem; }
.hero-ghost-butterfly { display: none; }

/* Desktop/tablet: foto ocupa o hero inteiro, texto sobre a área clara à
   esquerda, borboleta grande e discreta atrás dela. */
@media (min-width: 768px) {
  .hero-full {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 96px;
  }
  .hero-full-media { height: auto; }
  .hero-full-media img { object-position: 76% center; }
  .hero-full-scrim {
    background: linear-gradient(
      90deg,
      var(--porcelain) 0%,
      rgba(251, 247, 242, 0.94) 34%,
      rgba(251, 247, 242, 0.55) 52%,
      rgba(251, 247, 242, 0) 68%
    );
  }
  .hero-full-inner { padding-top: 0; padding-bottom: 64px; }
  .hero-ghost-butterfly {
    display: block;
    position: absolute;
    top: -40px;
    right: 2%;
    width: 420px;
    height: 420px;
    z-index: 1;
    color: var(--champagne);
    opacity: 0.4;
  }
}

/* ---------- Ticker (faixa de rolagem contínua) ---------- */
.ticker {
  overflow: hidden;
  background: var(--cocoa-dark);
  border-block: 1px solid rgba(173, 133, 54, 0.25);
  padding-block: 16px;
}
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 34s linear infinite; }
.ticker-set { display: flex; align-items: center; flex-shrink: 0; }
.ticker-item {
  padding-inline: 18px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  white-space: nowrap;
}
.ticker-dot { color: var(--aged-gold); font-size: 0.6rem; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .ticker { overflow-x: auto; }
}

/* ---------- Media ticker (carrossel de fotos em loop) ---------- */
.media-ticker {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.media-ticker-track {
  display: flex;
  width: max-content;
  animation: media-ticker-scroll 56s linear infinite;
}
.media-ticker:hover .media-ticker-track { animation-play-state: paused; }
.media-ticker-set { display: flex; gap: 20px; flex-shrink: 0; padding-right: 20px; }
.media-ticker-item {
  width: 340px;
  flex-shrink: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-organic);
  overflow: hidden;
}
.media-ticker-item img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) { .media-ticker-item { width: 400px; } }
@keyframes media-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .media-ticker-track { animation: none; }
  .media-ticker { overflow-x: auto; }
}

/* Tablet: menos espaço horizontal antes de encontrar a foto — texto mais
   estreito e degradê estendido para o texto nunca encostar no rosto. */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-full-content { max-width: 22rem; }
  .hero-full-media img { object-position: 84% center; }
  .hero-full-scrim {
    background: linear-gradient(
      90deg,
      var(--porcelain) 0%,
      rgba(251, 247, 242, 0.96) 44%,
      rgba(251, 247, 242, 0.6) 60%,
      rgba(251, 247, 242, 0) 74%
    );
  }
}

/* ---------- Sobre full-bleed ---------- */
/* Mobile: foto no topo (com fade próprio pra base), texto sobre o fade. */
.sobre-full { position: relative; overflow: hidden; background: var(--chocolate); min-height: 84vh; }
.sobre-full-media { position: absolute; inset: 0; height: 72vh; }
.sobre-full-media picture { display: block; width: 100%; height: 100%; }
.sobre-full-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.sobre-full-scrim {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(43, 24, 15, 0) 0%,
    rgba(43, 24, 15, 0) 44%,
    rgba(43, 24, 15, 0.6) 60%,
    rgba(43, 24, 15, 0.92) 74%,
    var(--chocolate) 88%
  );
}
.sobre-full-inner { position: relative; z-index: 2; padding-top: 44vh; padding-bottom: 48px; }
.sobre-full-content { max-width: 32rem; color: var(--porcelain); }

/* Desktop/tablet: foto ocupa a seção inteira, texto sobre a área escura à direita. */
@media (min-width: 768px) {
  .sobre-full { min-height: 82vh; display: flex; align-items: center; }
  .sobre-full-media { height: auto; }
  .sobre-full-media img { object-position: 22% center; }
  .sobre-full-scrim {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      90deg,
      rgba(43, 24, 15, 0) 0%,
      rgba(43, 24, 15, 0.25) 42%,
      rgba(43, 24, 15, 0.72) 60%,
      var(--cocoa-dark) 82%
    );
  }
  .sobre-full-inner { width: 100%; padding-block: 0; }
  .sobre-full-content { margin-left: auto; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--cocoa-dark); color: rgba(251, 247, 242, 0.8); }
.footer-grid { display: grid; gap: 48px; padding-block: 64px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; padding-block: 96px; } }
.footer-brand img { height: 72px; width: auto; display: block; }
.footer-tagline { margin-top: 20px; max-width: 22rem; font-size: 0.9rem; line-height: 1.6; }
.footer-col p.eyebrow { margin-bottom: 20px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a:hover { color: var(--champagne); }
.footer-col a { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.footer-col svg { width: 16px; height: 16px; }
.footer-map { display: block; border-radius: var(--radius-organic); filter: grayscale(0.3) sepia(0.15); }
.footer-maps { display: grid; gap: 24px; }
@media (min-width: 768px) { .footer-maps { grid-template-columns: 1fr 1fr; } }
.footer-map-item p { margin-bottom: 12px; font-size: 0.9rem; color: rgba(251, 247, 242, 0.75); }
.footer-bottom { border-top: 1px solid rgba(251, 247, 242, 0.1); margin-top: 40px; }
.footer-bottom .container { display: flex; flex-direction: column; gap: 12px; padding-block: 24px; font-size: 0.75rem; color: rgba(251, 247, 242, 0.5); }
@media (min-width: 768px) { .footer-bottom .container { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cocoa-dark);
  color: var(--porcelain);
  box-shadow: 0 12px 24px rgba(43, 24, 15, 0.3);
  transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.05); }
.whatsapp-float svg { width: 24px; height: 24px; }
@media (min-width: 768px) { .whatsapp-float { right: 32px; bottom: 32px; } }

/* ---------- Empty state (cursos) ---------- */
.empty-state {
  border-radius: var(--radius-organic);
  border: 1px dashed rgba(251, 247, 242, 0.3);
  background: rgba(251, 247, 242, 0.05);
  padding: 40px;
  text-align: center;
}
.empty-state p { max-width: 30rem; margin-inline: auto; font-size: 0.9rem; line-height: 1.6; color: rgba(251, 247, 242, 0.75); }
.section--ivory .empty-state, .section--porcelain .empty-state {
  border-color: rgba(173, 133, 54, 0.4);
  background: var(--porcelain);
}
.section--ivory .empty-state p, .section--porcelain .empty-state p { color: rgba(52, 34, 24, 0.7); }

/* ---------- Trajetória (etapas numeradas) ---------- */
.steps-row { position: relative; margin-top: 80px; }
.steps-grid { display: grid; gap: 40px; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.steps-grid--5 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .steps-grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid--5 { grid-template-columns: repeat(5, 1fr); } }
.step-number { font-family: var(--font-serif); font-style: italic; font-size: 2.25rem; color: var(--aged-gold); }
.steps-row .organic-path { position: absolute; inset-inline: 0; top: 8px; height: 56px; display: none; }
@media (min-width: 1024px) { .steps-row .organic-path { display: block; } }
.steps-row .butterfly { position: absolute; right: -8px; top: 4px; display: none; }
@media (min-width: 1024px) { .steps-row .butterfly { display: block; } }

/* ---------- Chips ---------- */
.chip-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.chip { padding: 6px 16px; border-radius: 999px; border: 1px solid rgba(173, 133, 54, 0.4); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--aged-gold); }

/* ---------- Checklist (para quem são os cursos) ---------- */
.check-list { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-item .check-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(173, 133, 54, 0.1);
  color: var(--aged-gold);
}
.check-icon svg { width: 14px; height: 14px; }
.check-item p { font-size: 0.9rem; line-height: 1.6; color: rgba(52, 34, 24, 0.8); }

/* ---------- Utilitários ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 24px; }
.max-w-content { max-width: 40rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .butterfly--animated { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .organic-path path { transition: none; stroke-dashoffset: 0; }
  .tab-panel.is-active { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
