:root {
  --primary: #ccb79f;
  --primary-deep: #b8a088;
  --primary-light: #ddd0c0;
  --secondary: #4a6040;
  --secondary-deep: #354830;
  --secondary-light: #647f59;
  --bg: #f2efe6;
  --bg-warm: #f7f5ee;
  --bg-cream: #ebe7dc;
  --ink: #332c28;
  --ink-soft: #4a433e;
  --muted: #7a736d;
  --line: rgba(51, 44, 40, 0.1);
  --shadow: 0 24px 60px rgba(51, 44, 40, 0.08);

  /* Cores utilitárias / de marca */
  --white: #fff;                /* Branco puro — texto sobre foto ou fundo escuro */
  --ink-black: #1a1a1a;         /* Preto-tinta — fundos escuros mais profundos que --ink */
  --whatsapp: #25d366;          /* Verde oficial do WhatsApp (botão flutuante) */
  --rose: 150, 103, 95;         /* Rosa/mauve — cor de eyebrow. Use como rgba(var(--rose), α) */

  /* ─── Tipografia ─── */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --script: 'Great Vibes', cursive;

  /* Escala tipográfica (raiz = 17px). Use SEMPRE estes tokens em telas novas. */
  --text-display: clamp(2.8rem, 6vw, 5.6rem); /* Hero / chamada principal */
  --text-4xl: clamp(2.4rem, 4vw, 4rem);       /* Título de página/portfólio */
  --text-3xl: clamp(2rem, 3vw, 2.8rem);       /* Título de seção (padrão) */
  --text-2xl: clamp(1.6rem, 2.5vw, 2.4rem);   /* Subtítulo / título de bloco */
  --text-xl: clamp(1.3rem, 2vw, 1.6rem);      /* Título de card */
  --text-lg: clamp(1.05rem, 1.4vw, 1.15rem);  /* Texto de destaque / lead */
  --text-base: 1rem;                          /* Corpo */
  --text-sm: 0.875rem;                        /* Texto secundário */
  --text-xs: 0.78rem;                         /* Legenda / botão */
  --text-eyebrow: 0.68rem;                    /* Rótulo (eyebrow) maiúsculo */

  /* Pesos */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;

  /* Altura de linha */
  --lh-tight: 1.1;     /* Títulos grandes */
  --lh-snug: 1.3;      /* Subtítulos */
  --lh-normal: 1.6;    /* Texto compacto */
  --lh-relaxed: 1.75;  /* Corpo (padrão) */

  /* Espaçamento entre letras */
  --ls-eyebrow: 0.4em;   /* Rótulos maiúsculos */
  --ls-button: 0.12em;   /* Botões */
  --ls-tight: -0.01em;   /* Títulos serifados */

  /* ─── Layout & espaçamento ─── */
  --container: 78rem;                       /* Largura máx. do conteúdo */
  --gutter: 5vw;                            /* Recuo lateral das seções */
  --space-section: clamp(5rem, 8vw, 8rem);  /* Padding vertical de seção */

  /* Escala de espaçamento (base 0.25rem) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* ─── Bordas & raios ─── */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* ─── Transições ─── */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.25s;
  --dur-med: 0.4s;

  /* Breakpoints canônicos (referência — use estes valores nos @media):
     640px  → celular
     900px  → tablet
     1024px → desktop pequeno */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
  margin-top: 0 !important;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(circle at top left, rgba(204, 183, 159, 0.15), transparent 28%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 18%, var(--bg-cream) 100%);
  color: var(--ink);
  overflow-x: hidden;
}

main {
  display: block;
}

main,
.elementor,
.elementor-section-wrap,
.elementor-location-single,
.elementor-location-archive,
.elementor-location-header,
.elementor-location-footer {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.elementor-widget-casa-comigo-hero-banner:first-child,
.elementor-widget-casa-comigo-hero-banner:first-child>.elementor-widget-container {
  margin-top: -12px !important;
  padding-top: 0 !important;
}

body.menu-open {
  overflow: hidden;
}

body.no-hero main {
  padding-top: 0;
}

body.no-hero #faq {
  padding-top: 3rem;
}

/* Template fallback (post/página sem hero): reserva espaço pro nav fixo.
   Precisa de !important porque o reset do Elementor zera padding-top de main. */
body.no-hero main.section-block {
  padding-top: clamp(7rem, 10vw, 9rem) !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* ════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════ */

/* ── Top bar ── */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 5vw;
  /* Transparent over hero */
  background: transparent;
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    box-shadow 0.4s ease,
    padding 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(242, 239, 230, 0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 4px 24px rgba(51, 44, 40, 0.04);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

/* ── Logo ── */
.nav-logo,
.footer-logo {
  font-family: var(--serif);
  letter-spacing: 0.03em;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-image {
  display: block;
  width: auto;
  height: 5.2rem;
  object-fit: contain;
  /* White logo when on dark hero */
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

.site-nav.scrolled .nav-logo-image {
  filter: none;
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color 0.4s ease;
}

.site-nav.scrolled .nav-logo-text {
  color: var(--ink);
}

/* ── Desktop nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

/* Individual link with animated underline */
.nav-links li {
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.25s ease;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(242, 239, 230, 0.92);
  ;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-nav.scrolled .nav-links a {
  color: var(--ink-soft);
}

.site-nav.scrolled .nav-links a:hover {
  color: var(--secondary);
}

.site-nav.scrolled .nav-links a::after {
  background: var(--primary);
}

/* CTA button inline */
.nav-cta {
  margin-left: 0.6rem;
  padding: 0.62rem 1.5rem !important;
  font-size: 0.72rem !important;
  background: rgba(255, 255, 255, 0.14) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  backdrop-filter: blur(6px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  color: var(--ink) !important;
  border-color: var(--white) !important;
  transform: translateY(-2px) !important;
}

.site-nav.scrolled .nav-cta {
  background: var(--ink) !important;
  color: var(--bg) !important;
  border-color: var(--ink) !important;
}

.site-nav.scrolled .nav-cta:hover {
  background: var(--ink-soft) !important;
  border-color: var(--ink-soft) !important;
  transform: translateY(-2px) !important;
}

/* ── Grupo à esquerda: logo + ícones sociais ── */
.nav-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

/* ── Ícones sociais no topo (Instagram / WhatsApp / Cliki) ── */
.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-social__link {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  color: var(--white);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.nav-social__link svg {
  width: 1.2rem;
  height: 1.2rem;
}

.nav-social__link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.site-nav.scrolled .nav-social__link {
  color: var(--ink-soft);
}

.site-nav.scrolled .nav-social__link:hover {
  color: var(--secondary);
  background: rgba(51, 44, 40, 0.06);
}

.nav-social__link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Ícone de contato em destaque (Cliki.me) */
.nav-social__link--cta,
.site-nav.scrolled .nav-social__link--cta {
  color: var(--white);
  background: var(--secondary);
  box-shadow: 0 0 0 0 rgba(74, 96, 64, 0.5);
  animation: nav-cta-pulse 2.6s ease-out infinite;
}

.nav-social__link--cta svg {
  width: 1.15rem;
  height: 1.15rem;
}

.nav-social__link--cta:hover,
.site-nav.scrolled .nav-social__link--cta:hover {
  color: var(--white);
  background: var(--secondary);
  transform: translateY(-2px) scale(1.08);
  animation: none;
}

@keyframes nav-cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 96, 64, 0.45);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(74, 96, 64, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 96, 64, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-social__link--cta {
    animation: none;
  }
}

/* Ícones dentro do drawer mobile */
.nav-drawer__footer .nav-social {
  margin: 1.4rem 0 0;
  gap: 1rem;
  justify-content: center;
}

.nav-drawer__footer .nav-social__link {
  width: 2.6rem;
  height: 2.6rem;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.nav-drawer__footer .nav-social__link svg {
  width: 1.35rem;
  height: 1.35rem;
}

.nav-drawer__footer .nav-social__link--cta {
  color: var(--white);
  background: var(--secondary);
  border-color: var(--secondary);
}

.nav-drawer__footer .nav-social__link--cta svg {
  width: 1.2rem;
  height: 1.2rem;
}

/* ── Focus ring (shared) ── */
.nav-links a:focus-visible,
.footer-links a:focus-visible,
.btn:focus-visible,
.faq-question:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 3px;
}

/* ════════════════════════════════════════════════════
   BUTTONS (base)
════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--ink-soft);
}

/* ════════════════════════════════════════════════════
   HAMBURGER (mobile only)
════════════════════════════════════════════════════ */
.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.menu-toggle__bar {
  width: 1.1rem;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.4s ease;
  display: block;
}

.site-nav.scrolled .menu-toggle {
  border-color: var(--line);
  background: rgba(242, 239, 230, 0.8);
}

.site-nav.scrolled .menu-toggle__bar {
  background: var(--ink);
}

/* Open state — middle bar fades, top/bottom form ✕ */
.menu-toggle.open .menu-toggle__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open .menu-toggle__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ════════════════════════════════════════════════════
   MOBILE DRAWER OVERLAY
════════════════════════════════════════════════════ */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(51, 44, 40, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ════════════════════════════════════════════════════
   MOBILE DRAWER PANEL
════════════════════════════════════════════════════ */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  width: min(88vw, 22rem);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
  box-shadow: -8px 0 48px rgba(51, 44, 40, 0.2);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 2rem 2rem 2.4rem;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer__close {
  align-self: flex-end;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
  margin-bottom: 1.4rem;
}

.nav-drawer__close:hover {
  background: var(--ink);
  color: var(--bg);
}

.nav-drawer__close svg {
  width: 1rem;
  height: 1rem;
}

.nav-drawer__logo {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.nav-drawer__logo .nav-logo-image {
  height: 4.2rem;
  filter: none;
}

.nav-drawer__logo .nav-logo-text {
  font-size: 1.35rem;
  color: var(--ink);
}

/* Drawer links list */
.nav-drawer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-drawer__links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0.5rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, padding-left 0.25s ease;
}

.nav-drawer__links a::before {
  content: '';
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.nav-drawer__links a:hover {
  color: var(--secondary);
  padding-left: 0.4rem;
}

.nav-drawer__links a:hover::before {
  transform: scale(1.5);
}

.nav-drawer__footer {
  margin-top: auto;
  padding-top: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.nav-drawer__cta {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.6rem !important;
  font-size: 0.8rem !important;
  background: var(--ink) !important;
  color: var(--bg) !important;
}

.nav-drawer__tagline {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── Elementor full-width widgets ───────────────────────────── */
.elementor-widget-casa-comigo-hero-banner,
.elementor-widget-casa-comigo-video,
.elementor-widget-casa-comigo-essence,
.elementor-widget-casa-comigo-about,
.elementor-widget-casa-comigo-services-editorial,
.elementor-widget-casa-comigo-services,
.elementor-widget-casa-comigo-team,
.elementor-widget-casa-comigo-gallery,
.elementor-widget-casa-comigo-process,
.elementor-widget-casa-comigo-testimonials,
.elementor-widget-casa-comigo-faq,
.elementor-widget-casa-comigo-journal {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.elementor-widget-casa-comigo-hero-banner>.elementor-widget-container,
.elementor-widget-casa-comigo-video>.elementor-widget-container,
.elementor-widget-casa-comigo-essence>.elementor-widget-container,
.elementor-widget-casa-comigo-about>.elementor-widget-container,
.elementor-widget-casa-comigo-services-editorial>.elementor-widget-container,
.elementor-widget-casa-comigo-services>.elementor-widget-container,
.elementor-widget-casa-comigo-team>.elementor-widget-container,
.elementor-widget-casa-comigo-gallery>.elementor-widget-container,
.elementor-widget-casa-comigo-process>.elementor-widget-container,
.elementor-widget-casa-comigo-testimonials>.elementor-widget-container,
.elementor-widget-casa-comigo-faq>.elementor-widget-container,
.elementor-widget-casa-comigo-journal>.elementor-widget-container {
  width: 100%;
}

/* ── Fullscreen Hero Banner ─────────────────────────────────── */
/* ── Hero: faixa editorial contida (foto inteira, sem corte) ── */
.hero-band {
  position: relative;
  padding: clamp(5.5rem, 7vw, 7rem) var(--gutter) var(--space-section);
  background: var(--bg);
}

.hero-band__inner {
  position: relative;
  width: 100%;
  /* Quadro 4:3, mas nunca mais alto que a viewport (menos o nav) */
  max-width: min(var(--container), calc((100svh - 9rem) * 4 / 3));
  aspect-ratio: 4 / 3;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-cream);
  box-shadow: var(--shadow);
}

.hero-band__slides {
  position: absolute;
  inset: 0;
}

.hero-band .hero-band__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transform: scale(1.045);
  transition:
    opacity 1.2s ease,
    transform 7s ease;
}

.hero-band .hero-band__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(51, 44, 40, 0.0) 45%,
      rgba(51, 44, 40, 0.34) 100%);
  pointer-events: none;
}

.hero-band__logo {
  position: absolute;
  inset: auto 0 clamp(1.6rem, 4%, 2.6rem);
  z-index: 2;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-band__logo-img {
  width: clamp(180px, 34%, 340px);
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0;
  animation: hero-logo-in 1.2s ease 0.4s forwards;
}

.hero-band__dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-band__dot {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0.3rem;
  box-sizing: content-box;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  background: rgba(242, 239, 230, 0.5);
  background-clip: content-box;
  cursor: pointer;
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.hero-band__dot:hover {
  background: rgba(242, 239, 230, 0.85);
}

.hero-band__dot:focus-visible {
  outline: 2px solid rgba(242, 239, 230, 0.95);
  outline-offset: 3px;
  border-radius: 999px;
}

.hero-band__dot.is-active {
  background: rgba(242, 239, 230, 0.98);
  transform: scale(1.25);
}

@keyframes hero-logo-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Home Intro (section right below the banner) ──────────── */
.home-intro {
  padding: 7rem 5vw 6.5rem;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(204, 183, 159, 0.12), transparent 32%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.home-intro__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
}

.home-intro__title {
  margin: 0 auto;
  max-width: 16ch;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 1.06;
  color: var(--ink);
}

.home-intro__title em {
  font-style: italic;
  color: var(--secondary);
}

.home-intro__text {
  max-width: 36rem;
  margin: 1.4rem auto 0;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}

.home-intro__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

@media (max-width: 640px) {
  .hero-band {
    padding-top: clamp(5.5rem, 22vw, 7rem);
  }

  .hero-band__inner {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
  }

  .hero-band__dots {
    bottom: 1.1rem;
    gap: 0.6rem;
  }

  .hero-band__dot {
    width: 0.6rem;
    height: 0.6rem;
  }

  .home-intro {
    padding: 5rem 1.4rem 4.5rem;
  }
}

.section-label {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  color: var(--secondary);
}

.section-description,
.section-text {
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

.btn {
  min-height: 3.2rem;
  padding: 0.95rem 1.6rem;
  font-size: var(--text-xs);
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-secondary {
  border: 1px solid rgba(51, 44, 40, 0.2);
  color: var(--ink);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════
   VIDEO FEATURE — Frame cinemático + overlay
════════════════════════════════════════════════════ */

.video-feature-section {
  padding: 5.5rem 5vw;
  background:
    radial-gradient(circle at left top, rgba(204, 183, 159, 0.1), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-cream) 100%);
}

.video-feature-frame {
  position: relative;
  width: 100%;
  min-height: clamp(24rem, 54vw, 44rem);
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(204, 183, 159, 0.12);
  box-shadow: var(--shadow);
}

/* gradiente sobre o vídeo — forte nos cantos para legibilidade */
.video-feature-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(51, 44, 40, 0.04) 0%,
      rgba(51, 44, 40, 0.12) 40%,
      rgba(51, 44, 40, 0.82) 100%),
    linear-gradient(90deg,
      rgba(51, 44, 40, 0.55) 0%,
      rgba(51, 44, 40, 0.35) 40%,
      rgba(51, 44, 40, 0.22) 100%);
}

.featured-video,
.video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.featured-video {
  object-fit: cover;
}

.video-placeholder {
  display: grid;
  place-items: center;
  gap: 0.7rem;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(145deg, var(--primary-light) 0%, var(--primary) 100%);
}

.video-placeholder strong {
  font-family: var(--serif);
  font-size: var(--text-3xl);
  font-weight: 500;
}

.video-placeholder span {
  max-width: 28rem;
  color: rgba(51, 44, 40, 0.55);
  line-height: 1.7;
}

/* ── Overlay de texto — 2 colunas dentro do vídeo ── */
.video-feature-copy {
  position: absolute;
  left: clamp(1.8rem, 4vw, 3.5rem);
  bottom: clamp(1.8rem, 4vw, 3.5rem);
  right: clamp(1.8rem, 4vw, 3.5rem);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2rem clamp(2rem, 4vw, 4rem);
}

/* Coluna esquerda */
.vfc-left {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.vfc-label {
  display: inline-block;
  font-size: 0.63rem;
  font-family: var(--sans);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.6);
  font-weight: 400;
}

.vfc-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  line-height: 1.1;
  color: var(--bg-warm);
}

.vfc-divider {
  width: 2rem;
  height: 1px;
  background: rgba(204, 183, 159, 0.5);
  border: none;
  margin: 0;
}

/* Coluna direita — frases poéticas empilhadas */
.vfc-right {
  padding: 1.4rem 1.6rem;
  background: rgba(30, 24, 20, 0.38);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid rgba(204, 183, 159, 0.16);
  border-radius: 0.875rem;
  display: flex;
  flex-direction: column;
}

.vfc-body {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.88rem, 1vw, 1rem);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(242, 239, 230, 0.88);
}

/* cada frase como uma linha separada */
.vfc-body p {
  margin: 0;
  padding: 0.8rem 0;
}

.vfc-body p + p {
  border-top: 1px solid rgba(204, 183, 159, 0.22);
}

.vfc-body p:first-child {
  padding-top: 0;
}

.vfc-body p:last-child {
  padding-bottom: 0;
}

/* ── Texto abaixo do frame ── */
.vfc-below {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem 3rem;
  align-items: start;
  margin-top: 2.2rem;
  padding: 0 0.5rem;
  max-width: 64rem;
  margin-inline: auto;
}

.vfc-below__ornament {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding-top: 0.3rem;
}

.vfc-below__dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--primary-deep);
  flex-shrink: 0;
}

.vfc-below__line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--primary-deep), transparent);
}

.vfc-below__text {
  margin: 0;
  font-size: clamp(0.93rem, 1.1vw, 1.06rem);
  line-height: 1.9;
  font-weight: 300;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 860px) {
  .video-feature-copy {
    grid-template-columns: 1fr;
    right: auto;
    max-width: 80%;
  }

  .vfc-right {
    display: none;
  }
}

@media (max-width: 640px) {
  .video-feature-section {
    padding: 3.5rem 1.25rem;
  }

  .video-feature-frame {
    border-radius: 1.25rem;
    min-height: clamp(22rem, 72vw, 30rem);
  }
}


.essence-section {
  padding: clamp(5.8rem, 8vw, 7rem) 5vw clamp(5.2rem, 7vw, 6.2rem);
  background: var(--bg);
}

.essence-inner {
  width: min(100%, 64.5rem);
  margin: 0 auto;
}

.essence-header {
  display: grid;
  grid-template-columns: minmax(17rem, 18.5rem) minmax(0, 1fr);
  gap: clamp(4.2rem, 7vw, 5.3rem);
  align-items: start;
}

.essence-heading {
  padding-left: 0;
}

.essence-label {
  display: block;
  margin: 0 0 1.45rem;
  font-size: 0.66rem;
  line-height: 1;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(var(--rose), 0.72);
}

.essence-title {
  max-width: 9.7ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.72rem, 3.05vw, 3.05rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--ink);
}

.essence-title em {
  display: block;
  color: var(--ink);
  font-style: italic;
}

.essence-description {
  max-width: 40.5rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.82;
  letter-spacing: 0.01em;
}

.essence-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.3rem, 4.7vw, 4.9rem);
  margin-top: 2.6rem;
  padding-top: 2.65rem;
  border-top: 1px solid rgba(204, 183, 159, 0.34);
}

.essence-feature {
  min-width: 0;
  padding: 1.8rem 1.6rem 1.9rem;
  background: var(--bg-warm);
  border: 1px solid rgba(204, 183, 159, 0.35);
  border-radius: 1.25rem;
  box-shadow: 0 4px 18px rgba(51, 44, 40, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.essence-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(51, 44, 40, 0.11);
  border-color: rgba(204, 183, 159, 0.7);
  background: var(--white);
}

.essence-feature__symbol {
  display: block;
  min-height: 1.55rem;
  margin-bottom: 1rem;
  color: var(--primary-deep);
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.essence-feature:hover .essence-feature__symbol {
  transform: scale(1.25);
  color: var(--secondary);
}

.essence-feature h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.essence-feature p {
  max-width: 100%;
  margin: 0.6rem 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
}

.section-block,
.about-section {
  padding: 6rem 5vw;
}

.section-block {
  position: relative;
}

.section-title {
  max-width: 12ch;
  margin-inline: auto;
  font-size: clamp(2.3rem, 4vw, 4rem);
  text-align: center;
}

.section-description {
  max-width: 38rem;
  margin: 1.2rem auto 0;
  text-align: center;
  font-size: 0.96rem;
}

.section-cream,
.about-section {
  background: linear-gradient(180deg, rgba(235, 231, 220, 0.88), rgba(242, 239, 230, 0.5));
}

.about-section {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 4.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 40rem;
}

.about-image {
  position: absolute;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(247, 245, 238, 0.12), transparent 35%),
    linear-gradient(0deg, rgba(51, 44, 40, 0.03), rgba(51, 44, 40, 0.03));
}

.about-image-main {
  inset: 0 18% 5% 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(204, 183, 159, 0.3), transparent 22%),
    linear-gradient(145deg, var(--primary-light) 0%, var(--primary) 45%, var(--primary-deep) 100%);
}

.about-image-floating {
  right: 0;
  bottom: 0;
  width: 43%;
  aspect-ratio: 1;
  border: 0.45rem solid rgba(247, 245, 238, 0.95);
  background:
    radial-gradient(circle at 30% 30%, rgba(149, 166, 138, 0.25), transparent 20%),
    linear-gradient(145deg, var(--secondary-light) 0%, var(--secondary) 55%, var(--secondary-deep) 100%);
}

.about-badge {
  position: absolute;
  left: -1.2rem;
  top: 2rem;
  width: 10rem;
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow);
}

.about-badge strong {
  font-size: 3rem;
  line-height: 0.95;
}

.about-badge span,
.about-stats span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-copy .section-label,
.about-copy .section-title {
  text-align: left;
}

.about-copy .section-title {
  margin-inline: 0;
  max-width: 12ch;
}

.section-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--ink-soft);
}

.section-text+.section-text {
  margin-top: 1.1rem;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin: 2rem 0 2.2rem;
}

.about-stats strong {
  font-size: 2.5rem;
  color: var(--secondary);
  line-height: 1;
}

/* ── Quem Somos – Vídeo + Texto ─────────────────────────── */
.vws-section {
  padding: clamp(5rem, 8vw, 7rem) 5vw;
  background: var(--bg);
}

.vws-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 4rem 5rem;
  align-items: center;
}

.vws-media {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  height: clamp(28rem, 55vh, 42rem);
  box-shadow: 0 12px 40px rgba(51, 44, 40, 0.18);
}

.vws-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vws-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--bg-warm);
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}

.vws-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.vws-label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(var(--rose), 0.72);
  margin-bottom: 1.4rem;
}

.vws-title {
  font-size: clamp(1.9rem, 2.6vw, 2.9rem);
  line-height: 1.18;
  max-width: 14ch;
  margin: 0 0 1.6rem;
}

.vws-title::after {
  content: '';
  display: block;
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
  margin: 1.6rem auto 0;
}

.vws-body {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
  max-width: 36ch;
}

/* ── O que fazemos ──────────────────────────────────────── */
.wwd-section {
  padding: clamp(5rem, 8vw, 8rem) 5vw;
  background: var(--ink);
  color: var(--bg);
}

.wwd-inner {
  max-width: 78rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem 8rem;
  align-items: start;
}

.wwd-header {
  position: sticky;
  top: 7rem;
}

.wwd-label {
  display: block;
  margin-bottom: 1.6rem;
  font-family: var(--sans);
  font-size: 0.63rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--primary);
}

.wwd-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
  color: var(--white);
}

.wwd-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--primary-light);
}

.wwd-header-divider {
  width: 2.4rem;
  height: 1px;
  background: var(--primary);
  opacity: 0.5;
  margin-bottom: 2rem;
}

.wwd-subtitle {
  font-family: var(--sans);
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(242, 239, 230, 0.55);
  margin: 0;
  max-width: 28ch;
}

/* accordion */
.wwd-grid {
  display: flex;
  flex-direction: column;
  padding-top: 0.5rem;
}

.wwd-item {
  border-top: 1px solid rgba(242, 239, 230, 0.1);
  cursor: pointer;
  transition: background 0.3s ease;
}

.wwd-item:last-child {
  border-bottom: 1px solid rgba(242, 239, 230, 0.1);
}

.wwd-item-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.2rem 0;
  gap: 2rem;
  user-select: none;
  cursor: pointer;
}


.wwd-item-heading {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.wwd-item-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.1;
  color: rgba(242, 239, 230, 0.9);
  transition: color 0.35s ease;
}

.wwd-item.is-open .wwd-item-title {
  font-style: normal;
  font-weight: 400;
  color: var(--white);
}

.wwd-item-subtitle {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.22);
  transition: color 0.35s ease;
}

.wwd-item.is-open .wwd-item-subtitle {
  color: rgba(242, 239, 230, 0.55);
}

.wwd-item-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(242, 239, 230, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 300;
  font-family: var(--sans);
  color: rgba(242, 239, 230, 0.35);
  transition: transform 0.35s ease, color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  line-height: 1;
}

.wwd-item.is-open .wwd-item-icon {
  transform: rotate(45deg);
  background: var(--primary);
  border-color: var(--primary);
  color: var(--ink);
}

.wwd-item-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-item.is-open .wwd-item-body {
  grid-template-rows: 1fr;
}

.wwd-item-body-inner {
  overflow: hidden;
}

.wwd-item-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.92;
  color: rgba(242, 239, 230, 0.6);
  margin: 0;
  padding-bottom: 2.2rem;
  max-width: 52ch;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.wwd-item.is-open .wwd-item-text {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.28s ease 0.2s, transform 0.28s ease 0.2s;
}


/* ── Services Tiers ─────────────────────────────────────── */
.services-tiers-section {
  padding: clamp(5rem, 8vw, 7rem) 5vw;
  background: var(--bg-warm);
}

.services-tiers-inner {
  max-width: 78rem;
  margin: 0 auto;
}

.services-tiers-eyebrow {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 0.66rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(var(--rose), 0.72);
}

.services-tiers-title {
  margin: 0 0 3.5rem;
  font-family: var(--serif);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  max-width: 28ch;
}

.services-tiers-title em {
  font-style: italic;
  color: var(--secondary);
}

.services-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

/* ── Each tier card ── */
.services-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--bg-warm);
  border: 1px solid rgba(204, 183, 159, 0.3);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.services-tier:hover {
  box-shadow: 0 24px 64px rgba(51, 44, 40, 0.1);
  transform: translateY(-4px);
}

.services-tier--featured {
  background: var(--ink);
  border-color: transparent;
}

.services-tier--featured:hover {
  box-shadow: 0 24px 64px rgba(51, 44, 40, 0.25);
}

/* Badge */
.services-tier__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.28rem 0.75rem;
  background: var(--primary);
  color: var(--ink);
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* Header */
.services-tier__header {
  padding: 2rem 1.75rem 1.4rem;
  border-bottom: 1px solid rgba(204, 183, 159, 0.22);
}

.services-tier--featured .services-tier__header {
  border-color: rgba(255, 255, 255, 0.1);
}

.services-tier__name {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}

.services-tier--featured .services-tier__name {
  color: var(--bg-warm);
}

.services-tier__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

.services-tier--featured .services-tier__desc {
  color: rgba(242, 239, 230, 0.55);
}

/* Feature list */
.services-tier__body {
  padding: 1.4rem 1.75rem;
  flex: 1;
}

.services-tier__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.services-tier__list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: var(--ink-soft);
}

.services-tier__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--primary-deep);
  font-size: 0.62rem;
  line-height: 1.6;
}

.services-tier--featured .services-tier__list li {
  color: rgba(242, 239, 230, 0.75);
}

.services-tier--featured .services-tier__list li::before {
  color: var(--primary);
}

/* Expand / collapse — unified container */
.services-tier__expandable {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.55s ease;
}

/* Ceremony sub-section (inside expandable) */
.services-tier__ceremony {
  padding: 1.2rem 1.75rem 1.5rem;
  border-top: 1px solid rgba(204, 183, 159, 0.2);
  background: rgba(51, 44, 40, 0.025);
}

.services-tier--featured .services-tier__ceremony {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
}

.services-tier__section-label {
  margin: 0 0 0.6rem;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.6;
}

.services-tier--featured .services-tier__section-label {
  color: var(--bg);
}

.services-tier__ceremony-label {
  margin: 0 0 0.15rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary-deep);
}

.services-tier--featured .services-tier__ceremony-label {
  color: var(--primary);
}

.services-tier__ceremony-sub {
  margin: 0 0 0.9rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--muted);
}

.services-tier--featured .services-tier__ceremony-sub {
  color: rgba(242, 239, 230, 0.45);
}


/* Staircase animation — items slide in sequentially */
.services-tier__expandable li {
  opacity: 0;
  transform: translateX(-6px);
}

.tier-expanded .services-tier__expandable li {
  animation: tier-item-in 0.38s ease both;
  animation-delay: calc(var(--i, 0) * 0.055s);
}

@keyframes tier-item-in {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.services-tier__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--primary-deep);
  transition: color 0.2s ease;
}

.services-tier--featured .services-tier__toggle {
  color: var(--primary);
}

.services-tier--featured .services-tier__toggle:hover {
  color: rgba(255, 255, 255, 0.82);
}

.services-tier__toggle::after {
  content: '↓';
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.tier-expanded .services-tier__toggle::after {
  transform: rotate(180deg);
}

.services-tier__toggle:hover {
  color: var(--secondary);
}

/* CTA */
.services-tier__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.75rem 1.75rem;
  border-top: 1px solid rgba(204, 183, 159, 0.18);
}

.services-tier--featured .services-tier__footer {
  border-color: rgba(255, 255, 255, 0.09);
}

.services-tier__cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(51, 44, 40, 0.22);
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.services-tier__cta:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.services-tier--featured .services-tier__cta {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--ink);
}

.services-tier--featured .services-tier__cta:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .services-tiers-grid {
    grid-template-columns: 1fr;
    max-width: 36rem;
    margin: 0 auto;
  }
}

/* kept for backward compatibility */
.services-editorial-section {
  padding: clamp(4.8rem, 7vw, 6.4rem) 5vw clamp(5rem, 7vw, 6.8rem);
  background: var(--bg);
}

.services-editorial-inner {
  width: min(100%, 43rem);
  margin: 0 auto;
}

.services-editorial-header {
  margin-bottom: clamp(3rem, 5vw, 3.9rem);
}

.services-editorial-label {
  display: block;
  margin: 0 0 1.5rem;
  color: rgba(var(--rose), 0.72);
  font-size: 0.66rem;
  line-height: 1;
  letter-spacing: 0.44em;
  text-transform: uppercase;
}

.services-editorial-title {
  max-width: 9.6ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(3.05rem, 4.2vw, 4.18rem);
  font-weight: 400;
  line-height: 0.97;
}

.services-editorial-title em {
  display: block;
  color: var(--ink);
  font-style: italic;
}

.services-editorial-list {
  border-top: 1px solid rgba(204, 183, 159, 0.4);
}

.services-editorial-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 7.5rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid rgba(204, 183, 159, 0.24);
}

.services-editorial-item.is-active {
  margin-top: -1px;
  padding: 1.55rem 0;
  border: 1px solid rgba(var(--rose), 0.52);
}

.services-editorial-copy {
  min-width: 0;
}

.services-editorial-number {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(var(--rose), 0.58);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.22em;
}

.services-editorial-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 2.8vw, 2.55rem);
  font-weight: 400;
  line-height: 1;
}

.services-editorial-copy p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
}

.services-editorial-plus {
  flex: 0 0 auto;
  color: rgba(var(--rose), 0.78);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
}

/* Services Accordion */
.services-accordion-section {
  max-width: 80rem;
  margin-inline: auto;
}

.services-accordion-header {
  max-width: 36rem;
  margin-bottom: 3.5rem;
}

.services-accordion-title {
  margin: 0.5rem 0 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.05;
  color: var(--ink);
}

.services-accordion-title em {
  font-style: italic;
  color: var(--secondary);
}

.services-accordion-desc {
  margin: 1rem 0 0;
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.8;
  font-weight: 400;
}

.services-accordion {
  border-top: 1px solid var(--line);
}

.services-accordion-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.services-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.services-accordion-info {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}

.services-accordion-num {
  font-family: var(--serif);
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  min-width: 2.2rem;
  padding-top: 0.55rem;
  flex: 0 0 auto;
}

.services-accordion-titles h3 {
  margin: 0 0 0.25rem;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
  transition: color 0.2s ease;
  line-height: 1.1;
}

.services-accordion-sub {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  font-style: italic;
}

.services-accordion-plus {
  font-size: 2rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
  flex: 0 0 auto;
  user-select: none;
  transition: transform 0.35s ease, color 0.2s ease;
}

.services-accordion-item.open .services-accordion-plus {
  transform: rotate(45deg);
  color: var(--secondary);
}

.services-accordion-item.open .services-accordion-titles h3 {
  color: var(--secondary);
}

.services-accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.services-accordion-body-inner {
  overflow: hidden;
}

.services-accordion-item.open .services-accordion-body {
  grid-template-rows: 1fr;
}

.services-accordion-body-inner p {
  max-width: 52rem;
  padding: 0 0 1.6rem 3.8rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  font-size: 0.96rem;
}

.services-accordion-body-inner .btn {
  margin: 0 0 2.2rem 3.8rem;
  display: inline-flex;
}

/* Featured item (Destination Wedding) */
.services-accordion-item.featured .services-accordion-num {
  color: var(--secondary);
  font-weight: 600;
}

.services-accordion-item.featured .services-accordion-sub {
  color: var(--primary-deep);
}

@media (max-width: 760px) {

  .services-accordion-body-inner p,
  .services-accordion-body-inner .btn {
    padding-left: 0;
    margin-left: 0;
  }

  .services-accordion-titles h3 {
    font-size: 1.55rem;
  }
}

/* Legacy service card (kept for Elementor back-compat) */
.services-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 3.5rem auto 0;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: rgba(247, 245, 238, 0.82);
  box-shadow: 0 12px 30px rgba(51, 44, 40, 0.03);
}

.service-card {
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 0.3rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(204, 183, 159, 0.3);
  background: linear-gradient(135deg, rgba(204, 183, 159, 0.2), rgba(247, 245, 238, 0.85));
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--secondary);
}

.service-card h3,
.process-step h3 {
  margin: 1.3rem 0 0.7rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.service-card p,
.process-step p,
.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.service-link {
  display: inline-flex;
  margin-top: 1.2rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  transition: color 0.2s ease;
}

.service-link:hover {
  color: var(--secondary-deep);
}

/* ── Sobre Nós / Team ───────────────────────────────────────── */
.team-section {
  padding: clamp(5rem, 8vw, 8rem) 5vw;
  background: var(--bg-warm);
}

.team-inner {
  max-width: 82rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

/* ── Cards ── */
.team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.team-card--second {
  margin-top: 4rem;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 1.4rem;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.65s ease;
}

.team-card:hover .team-card__photo img {
  transform: scale(1.04);
}

.team-card__body {
  padding-left: 0.1rem;
}

.team-card__name {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.team-card__firstname {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.team-card__surname {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--primary-deep);
  letter-spacing: 0.02em;
}

.team-card__role {
  margin: 0 0 0.75rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--muted);
}

.team-card__divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 0 0.9rem;
}

.team-card__text {
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0;
}

/* ── Content column ── */
.team-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.8rem, 3vw, 2.4rem);
}

.team-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.63rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--primary-deep);
  margin-bottom: 1.2rem;
}

.team-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

.team-title em {
  font-style: italic;
  color: var(--ink);
}

.team-body p {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.88;
  color: var(--ink-soft);
  margin: 0 0 1.1em;
}

.team-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .team-inner {
    grid-template-columns: 1fr;
  }

  .team-content {
    order: -1;
  }
}

@media (max-width: 520px) {
  .team-cards {
    grid-template-columns: 1fr;
  }

  .team-card--second {
    margin-top: 0;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 15rem);
  gap: 1rem;
  max-width: 72rem;
  margin: 3.5rem auto 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  min-height: 14rem;
}

.gallery-fill {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.45s ease;
}

.gallery-item:hover .gallery-fill {
  transform: scale(1.04);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(51, 44, 40, 0.55) 100%);
}

.gallery-label {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.3rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--bg);
}

.g1 {
  grid-column: 1 / 6;
  grid-row: 1 / 2;
}

.g2 {
  grid-column: 6 / 9;
  grid-row: 1 / 2;
}

.g3 {
  grid-column: 9 / 13;
  grid-row: 1 / 3;
}

.g4 {
  grid-column: 1 / 4;
  grid-row: 2 / 3;
}

.g5 {
  grid-column: 4 / 6;
  grid-row: 2 / 3;
}

.g6 {
  grid-column: 6 / 9;
  grid-row: 2 / 3;
}

.g1 .gallery-fill {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 55%, var(--primary-deep) 100%);
}

.g2 .gallery-fill {
  background: linear-gradient(145deg, var(--secondary-light) 0%, var(--secondary) 65%, var(--secondary-deep) 100%);
}

.g3 .gallery-fill {
  background: linear-gradient(160deg, var(--primary-light) 0%, var(--primary-deep) 50%, var(--ink-soft) 100%);
}

.g4 .gallery-fill {
  background: linear-gradient(140deg, var(--bg-cream) 0%, var(--primary) 100%);
}

.g5 .gallery-fill {
  background: linear-gradient(145deg, var(--secondary) 0%, var(--secondary-deep) 100%);
}

.g6 .gallery-fill {
  background: linear-gradient(145deg, var(--primary-light) 0%, var(--primary-deep) 100%);
}

.process-section {
  background: var(--ink-black);
}

.process-section .section-label {
  color: var(--primary);
}

.process-section .section-title {
  color: var(--bg);
}

.process-section .section-title em {
  color: var(--primary);
}

.process-section .section-description {
  color: rgba(242, 239, 230, 0.55);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 76rem;
  margin: 3.5rem auto 0;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, rgba(204, 183, 159, 0.15), rgba(204, 183, 159, 0.35), rgba(204, 183, 159, 0.15));
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 0.6rem;
  text-align: center;
}

.process-number {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  border: 1px solid rgba(204, 183, 159, 0.25);
  background: #3d3530;
  color: var(--primary);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.process-step h3 {
  color: var(--bg);
  margin-top: 0;
}

.process-step p {
  color: rgba(242, 239, 230, 0.5);
}

/* ── Depoimentos carousel ── */
.testi-section {
  background: var(--bg);
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.testi-header {
  text-align: center;
  padding: 0 1.5rem 3rem;
}

.testi-brand {
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--primary-deep);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.testi-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.06em;
  line-height: 1;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.testi-subtitle {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.testi-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.testi-divider__line {
  width: 4rem;
  height: 1px;
  background: var(--primary);
}

.testi-divider__diamond {
  color: var(--primary);
  font-size: 0.45rem;
}

.testi-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testi-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  transition: min-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.testi-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 70%;
  max-width: 740px;
  transform: translateX(-50%) scale(0.82);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
  display: flex;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(51, 44, 40, 0.1);
  /* garante texto escuro independente do fundo da seção */
  --ink: #332c28;
  --ink-soft: #4a433e;
  --muted: rgba(51, 44, 40, 0.45);
  --bg-cream: #ebe7dc;
  color: var(--ink);
}

.testi-card.is-active {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

.testi-card.is-prev {
  transform: translateX(calc(-50% - 54%)) scale(0.88);
  opacity: 0.45;
  z-index: 2;
  pointer-events: none;
}

.testi-card.is-next {
  transform: translateX(calc(-50% + 54%)) scale(0.88);
  opacity: 0.45;
  z-index: 2;
  pointer-events: none;
}

.testi-card.is-far {
  transform: translateX(-50%) scale(0.75);
  opacity: 0;
  z-index: 1;
}

.testi-card__photo {
  flex: 0 0 42%;
  position: relative;
  overflow: hidden;
  background: var(--bg-cream);
  min-height: 360px;
}

.testi-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-card__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.testi-card__photo-placeholder svg {
  width: 4rem;
  height: 4rem;
  opacity: 0.25;
}

.testi-card__body {
  flex: 1;
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testi-quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--primary);
  line-height: 0.9;
  margin-bottom: 0.75rem;
  opacity: 0.55;
}

.testi-quote-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 2rem;
  font-style: italic;
  max-height: 11rem;
  overflow-y: auto;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}

.testi-quote-text::-webkit-scrollbar {
  width: 4px;
}

.testi-quote-text::-webkit-scrollbar-track {
  background: transparent;
}

.testi-quote-text::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 2px;
}

.testi-card__author {
  border-top: 1px solid var(--bg-cream);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testi-card__author strong {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.testi-card__meta {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.testi-arrow {
  flex: 0 0 auto;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--primary-light);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 10;
}

.testi-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.testi-arrow svg {
  width: 1.1rem;
  height: 1.1rem;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
}

.testi-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  border: none;
  background: var(--primary-light);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.testi-dot.is-active {
  background: var(--primary-deep);
  transform: scale(1.4);
}

.faq-list {
  max-width: 48rem;
  margin: 3rem auto 0;
}

#faq .section-label {
  display: block;
  width: fit-content;
  margin: 0 auto 0.9rem;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-family: var(--serif);
  font-size: 1.25rem;
}

.faq-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--secondary);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  flex: 0 0 auto;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer p {
  overflow: hidden;
  padding-right: 2rem;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 1.5rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--secondary);
  color: var(--white);
}

/* Journal */
.journal-section {
  padding: 6rem 5vw;
  background: var(--bg-warm);
}

.journal-inner {
  width: min(100%, 70rem);
  margin: 0 auto;
}

.journal-header {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.journal-label,
.journal-category {
  display: inline-block;
  font-size: var(--text-eyebrow);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(184, 160, 136, 0.78);
}

.journal-label {
  margin-bottom: 1rem;
}

.journal-header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.journal-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.95;
  color: var(--ink);
}

.journal-title em {
  font-style: italic;
}

.journal-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  font-size: var(--text-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.journal-view-all:hover {
  color: var(--ink);
  transform: translateX(0.2rem);
}

.journal-list {
  display: grid;
}

.journal-item {
  display: grid;
  grid-template-columns: minmax(8rem, 13rem) minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
}

.journal-list--no-image .journal-item {
  grid-template-columns: minmax(0, 1fr) auto;
}

.journal-list--no-arrow .journal-item {
  grid-template-columns: minmax(8rem, 13rem) minmax(0, 1fr);
}

.journal-list--no-image.journal-list--no-arrow .journal-item {
  grid-template-columns: 1fr;
}

.journal-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1.65;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light), var(--bg-cream));
}

.journal-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-thumb span {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 1rem;
  color: var(--muted);
  line-height: 1.45;
}

.journal-copy h3 {
  margin: 0.65rem 0 0;
  max-width: 44rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
  color: var(--ink);
}

.journal-copy p {
  max-width: 46rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  font-weight: 300;
}

.journal-arrow {
  color: rgba(51, 44, 40, 0.28);
  font-size: 1.45rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.journal-item:hover .journal-arrow {
  color: var(--ink);
  transform: translateX(0.35rem);
}

.journal-empty {
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

/* ════════════════════════════════════════════════════
   HOME SIGNATURE SECTION
════════════════════════════════════════════════════ */
.home-signature {
  background: var(--ink-black) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 5vw;
  gap: 1.6rem;
}

.home-signature__label {
  font-size: var(--text-eyebrow);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(204, 183, 159, 0.4);
}

.home-signature__phrase {
  margin: 0;
  font-family: var(--script);
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: rgba(242, 239, 230, 0.88);
  letter-spacing: 0.01em;
}

@media (max-width: 760px) {
  .home-signature {
    padding: 6rem 1.4rem;
  }
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink-black);
  color: rgba(242, 239, 230, 0.38);
  font-family: var(--sans);
  overflow: hidden;
}

/* ── Top bar: logo + socials ── */
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 3.2rem 6vw 3rem;
  border-bottom: 1px solid rgba(204, 183, 159, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

.footer-logo-img {
  display: block;
  height: 4.2rem;
  width: auto;
  object-fit: contain;
  /* Invert to white on dark bg; remove if logo is already light */
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-logo-img:hover {
  opacity: 1;
}

.footer-logo-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(242, 239, 230, 0.9);
  letter-spacing: 0.02em;
}

.footer-tagline {
  margin: 0;
  font-size: var(--text-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(204, 183, 159, 0.5);
}

/* Social links */
.footer-social {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding-top: 0.3rem;
}

.footer-social a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.45);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 0.15rem;
}

.footer-social a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-social a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* ── Central phrase ── */
.footer-phrase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 5rem 6vw 5.5rem;
  text-align: center;
}

.footer-phrase__label {
  font-size: var(--text-eyebrow);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(204, 183, 159, 0.45);
}

.footer-phrase__text {
  margin: 0;
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  line-height: 1.15;
  color: rgba(242, 239, 230, 0.85);
  letter-spacing: 0.01em;
}

.footer-phrase__text em {
  display: block;
  font-style: normal;
  font-size: 1.2em;
  color: rgba(242, 239, 230, 0.92);
  line-height: 1;
}

/* ── Bottom bar: copyright + CTA ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.6rem 6vw 2rem;
  border-top: 1px solid rgba(204, 183, 159, 0.1);
}

.footer-copy {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(242, 239, 230, 0.28);
}

.footer-cta {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.footer-cta:hover {
  color: var(--primary-light);
  letter-spacing: 0.28em;
}

/* ── Footer responsive ── */
@media (max-width: 640px) {
  .footer-top {
    flex-direction: column;
    gap: 1.6rem;
    padding: 2.4rem 1.4rem 2rem;
  }

  .footer-social {
    gap: 1.6rem;
  }

  .footer-phrase {
    padding: 3.5rem 1.4rem 4rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.4rem 1.4rem 1.8rem;
  }
}

/* WhatsApp floating button */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.elementor-editor-active .reveal,
.elementor-editor-preview .reveal,
.elementor-element-edit-mode .reveal {
  opacity: 1;
  transform: none;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {

  .about-section,
  .essence-header,
  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testi-card {
    width: 84%;
    flex-direction: column;
  }

  .testi-card__photo {
    flex: 0 0 220px;
    min-height: 220px;
  }

  .testi-track-wrap {
    min-height: 300px;
  }

  .testi-card.is-prev {
    transform: translateX(calc(-50% - 76%)) scale(0.88);
  }

  .testi-card.is-next {
    transform: translateX(calc(-50% + 76%)) scale(0.88);
  }

  .vws-inner {
    gap: 3rem 3.5rem;
  }

  .wwd-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .wwd-header {
    position: static;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .gallery-item,
  .g1,
  .g2,
  .g3,
  .g4,
  .g5,
  .g6 {
    grid-column: auto;
    grid-row: auto;
    min-height: 15rem;
  }

  .process-grid::before {
    display: none;
  }

  .about-visual {
    min-height: 32rem;
    max-width: 30rem;
  }

  .journal-item {
    grid-template-columns: minmax(7rem, 10rem) minmax(0, 1fr) auto;
    gap: 1.5rem;
  }
}

@media (max-width: 760px) {

  /* ── Show hamburger, hide desktop nav ── */
  .menu-toggle {
    display: inline-flex;
    background: rgba(51, 44, 40, 0.28);
    border-color: rgba(255, 255, 255, 0.58);
    box-shadow: 0 8px 24px rgba(51, 44, 40, 0.16);
  }

  .nav-links {
    display: none;
  }

  /* Ícones no topo só no desktop; no mobile ficam no drawer */
  .nav-left .nav-social {
    display: none;
  }

  .nav-logo-image {
    height: 4.4rem;
  }

  .about-section,
  .services-grid,
  .process-grid,
  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .testi-carousel {
    padding: 0 0.5rem;
  }

  .testi-arrow {
    width: 2.2rem;
    height: 2.2rem;
  }

  .testi-card {
    width: 90%;
  }

  .vws-section {
    padding-inline: 1.3rem;
  }

  .vws-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vws-media {
    height: clamp(22rem, 50vw, 32rem);
  }

  .vws-title {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }

  .video-feature-section,
  .essence-section,
  .section-block,
  .about-section {
    padding-inline: 1.3rem;
  }

  .essence-section {
    padding-block: 4.2rem;
  }

  .essence-header,
  .essence-features {
    grid-template-columns: 1fr;
  }

  .essence-header {
    gap: 2rem;
  }

  .essence-title {
    max-width: 11ch;
  }

  .essence-features {
    gap: 2rem;
    margin-top: 2.7rem;
    padding-top: 2.3rem;
  }

  .essence-feature p {
    max-width: 100%;
  }

  .services-editorial-section {
    padding: 4.2rem 1.3rem 4.8rem;
  }

  .services-editorial-inner {
    width: min(100%, 34rem);
  }

  .services-editorial-header {
    margin-bottom: 2.6rem;
  }

  .services-editorial-title {
    font-size: clamp(2.55rem, 10vw, 3.2rem);
  }

  .services-editorial-item {
    min-height: 6.6rem;
    gap: 1.2rem;
    padding-block: 1.35rem;
  }

  .services-editorial-item.is-active {
    padding-block: 1.35rem;
  }

  .services-editorial-copy h3 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .about-visual {
    min-height: 24rem;
  }

  .about-image-main {
    inset: 0 12% 3rem 0;
  }

  .about-badge {
    left: 0;
    top: 1rem;
  }

  .faq-question span:first-child {
    font-size: 1.08rem;
  }

  .journal-section {
    padding: 5rem 1.4rem;
  }

  .journal-header-row,
  .journal-item {
    grid-template-columns: 1fr;
  }

  .journal-header {
    padding-bottom: 2.2rem;
  }

  .journal-view-all {
    margin-bottom: 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .portfolio-featured {
    grid-row: auto;
    min-height: 420px;
  }

  .portfolio-grid--all {
    grid-template-columns: repeat(2, 1fr);
  }

  .journal-item {
    gap: 1rem;
    padding: 1.8rem 0;
  }

  .journal-thumb {
    max-width: 12rem;
  }

  .journal-arrow {
    justify-self: start;
  }
}

/* ── Portfólio ─────────────────────────────────── */
.portfolio-section {
  padding: clamp(5rem, 8vw, 7rem) 5vw;
}

.portfolio-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.portfolio-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.portfolio-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-deep);
  display: block;
  margin-bottom: 0.75rem;
}

.portfolio-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  line-height: 1;
}

.portfolio-subtitle {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.portfolio-featured {
  grid-row: 1 / 3;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}

.portfolio-featured__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-featured:hover .portfolio-featured__img {
  transform: scale(1.03);
}

.portfolio-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 15, 12, 0.82) 0%, rgba(20, 15, 12, 0.08) 55%, transparent 100%);
}

.portfolio-featured__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(204, 183, 159, 0.9);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

.portfolio-featured__body {
  position: relative;
  z-index: 1;
  padding: 2rem 1.75rem 1.75rem;
}

.portfolio-featured__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 400;
  color: var(--white);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.portfolio-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.portfolio-featured__desc {
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.25rem;
}

.portfolio-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: var(--text-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1rem;
  transition: background 0.2s, border-color 0.2s;
}

.portfolio-featured:hover .portfolio-featured__link {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.9);
}

.portfolio-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-cream);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

.portfolio-card:hover {
  box-shadow: 0 8px 32px rgba(51, 44, 40, 0.14);
}

.portfolio-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.portfolio-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card__img {
  transform: scale(1.04);
}

.portfolio-card__body {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex: 1;
}

.portfolio-card__info {
  flex: 1;
  min-width: 0;
}

.portfolio-card__title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.75rem;
  font-family: var(--sans);
  font-size: 0.67rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.portfolio-card__arrow {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.85rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.portfolio-card:hover .portfolio-card__arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.portfolio-grid--all {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}

.portfolio-footer {
  text-align: center;
}

.portfolio-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--primary-light);
  padding: 0.75rem 2rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.portfolio-view-all:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.portfolio-empty {
  text-align: center;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 3rem 0;
}

.section-bg-dark .portfolio-card {
  background: var(--bg-warm);
}

/* ── Single Portfolio ───────────────────────────── */
.single-portfolio__hero {
  position: relative;
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
}

.single-portfolio__hero img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
}

.single-portfolio__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 15, 12, 0.45) 0%, transparent 60%);
}

.single-portfolio__body {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 5vw 5rem;
}

.single-portfolio__back {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.single-portfolio__back:hover {
  color: var(--ink);
}

.single-portfolio__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.single-portfolio__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  font-family: var(--sans);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-cream);
}

.single-portfolio__excerpt {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink);
  font-style: italic;
  margin: 0;
}

.single-portfolio__gallery {
  columns: 2;
  column-gap: 0.5rem;
  padding: 3rem 5vw 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .single-portfolio__gallery {
    columns: 3;
  }
}

.single-portfolio__gallery-item {
  break-inside: avoid;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.single-portfolio__gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.single-portfolio__gallery-item:hover img {
  transform: scale(1.03);
}

/* ── Alternância clara / escura entre seções ── */
.section-bg-light {
  background: var(--bg);
}

.section-bg-dark {
  --bg: #332c28;
  --bg-warm: #2a2420;
  --bg-cream: #241e1a;
  --ink: #f2efe6;
  --ink-soft: #e0d8cf;
  --muted: rgba(242, 239, 230, 0.45);
  background: #332c28;
  color: var(--ink);
}

/* Gradiente da galeria não sobrescreve o fundo escuro */
.section-bg-dark.section-cream,
.section-bg-dark .section-cream {
  background: #332c28;
}

/* Label/eyebrow fica dourado nas seções escuras */
.section-bg-dark .section-label,
.section-bg-dark .testi-brand,
.section-bg-dark .journal-label,
.section-bg-dark .essence-label,
.section-bg-dark .wwd-label,
.section-bg-dark .services-tiers-eyebrow,
.section-bg-dark .team-label {
  color: var(--primary-light);
}

/* Divisor O que fazemos */
.section-bg-dark .wwd-header-divider {
  background: rgba(242, 239, 230, 0.15);
}

/* Cards de serviço na seção escura */
.section-bg-dark .services-tier {
  border-color: rgba(242, 239, 230, 0.1);
}

.section-bg-dark .services-tier--featured {
  background: rgba(204, 183, 159, 0.12);
  border-color: rgba(204, 183, 159, 0.35);
}

/* Legenda da galeria */
.section-bg-dark .gallery-label {
  background: rgba(51, 44, 40, 0.75);
  color: var(--ink);
}

/* Journal items ficam com fundo um tom mais claro que o fundo escuro */
.section-bg-dark .journal-item {
  border-color: rgba(242, 239, 230, 0.1);
}

.section-bg-dark .journal-thumb {
  background: var(--bg-warm);
}

.section-bg-dark .journal-arrow {
  border-color: rgba(242, 239, 230, 0.2);
  color: var(--ink);
}

.section-bg-dark .journal-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ── Fundos fixos — prevalecem sobre a alternância ── */
.team-section.section-bg-light,
.team-section.section-bg-dark,
.team-section {
  background: var(--bg-warm);
  color: var(--ink);
}

.vws-section.section-bg-light,
.vws-section.section-bg-dark,
.vws-section {
  background: var(--bg);
  color: var(--ink);
}

/* ══════════════════════════════════════════════════════════
   DESTINATION WEDDING
══════════════════════════════════════════════════════════ */

.dw-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dw-bg {
  position: absolute;
  inset: 0;
}

.dw-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dw-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 7, 5, 0.55) 0%, rgba(10, 7, 5, 0.72) 100%);
}

.dw-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 8rem 5vw;
  display: flex;
  justify-content: center;
}

.dw-inner {
  max-width: 680px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dw-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
}

.dw-rule {
  width: 44px;
  height: 1px;
  background: var(--primary);
  margin-bottom: 2rem;
  opacity: 0.7;
}

.dw-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: #f5f0e8;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 1.75rem;
}

.dw-lead {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-style: italic;
  color: rgba(242, 239, 230, 0.78);
  line-height: 1.75;
  margin: 0 0 2.5rem;
}

.dw-body {
  font-family: var(--sans);
  font-size: var(--text-sm);
  line-height: 1.9;
  color: rgba(242, 239, 230, 0.58);
  text-align: left;
  margin: 0 0 3rem;
}

.dw-body p {
  margin: 0 0 0.9em;
}

.dw-body p:last-child {
  margin-bottom: 0;
}

.dw-closing {
  width: 100%;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(204, 183, 159, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.dw-closing__diamond {
  font-size: 0.55rem;
  color: var(--primary);
  letter-spacing: 0;
  margin-bottom: 1rem;
  display: block;
}

.dw-closing__line {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  color: #f5f0e8;
  line-height: 1.4;
  margin: 0;
}

/* ════════════════════════════════════════════════════
   BLOG — post individual (single.php)
   Coluna de leitura centralizada, texto alinhado à esquerda.
════════════════════════════════════════════════════ */
.post-single {
  padding: 0 5vw clamp(4rem, 8vw, 6rem);
  background: var(--bg);
}

/* padding-top no article (não no <main>, que o reset do Elementor zera com !important) */
.post-article {
  max-width: 46rem;
  margin: 0 auto;
  padding-top: clamp(7rem, 11vw, 9.5rem);
}

.post-article__back {
  display: inline-block;
  margin-bottom: 2.2rem;
  font-family: var(--sans);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

.post-article__back:hover {
  color: var(--secondary);
}

.post-article__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-family: var(--sans);
  font-size: var(--text-eyebrow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.post-article__cat {
  color: var(--secondary);
}

.post-article__eyebrow time::before {
  content: '·';
  margin-right: 0.8rem;
  color: var(--primary-deep);
}

.post-article__title {
  margin: 0 0 2.4rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: var(--ls-tight);
  color: var(--ink);
}

.post-article__cover {
  margin: 0 0 2.8rem;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.post-article__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-article__content {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 400;
  color: var(--ink-soft);
}

.post-article__content > * {
  margin: 0 0 1.5rem;
}

.post-article__content > *:last-child {
  margin-bottom: 0;
}

.post-article__content h2 {
  margin: 2.8rem 0 1rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: var(--ls-tight);
  color: var(--ink);
}

.post-article__content a {
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.post-article__content a:hover {
  color: var(--secondary-deep);
}

.post-article__content ul,
.post-article__content ol {
  padding-left: 1.3rem;
}

.post-article__content li {
  margin-bottom: 0.6rem;
}

.post-article__content li::marker {
  color: var(--primary-deep);
}

.post-article__content blockquote {
  margin: 2.4rem 0;
  padding: 1.3rem 1.7rem;
  border-left: 2px solid var(--primary);
  background: var(--bg-warm);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.post-article__content blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--ink);
}

/* Vídeo do YouTube (auto-embed) responsivo */
.post-article__content iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 2rem 0;
  border: 0;
  border-radius: var(--radius-md);
}

@media (max-width: 640px) {
  .post-article__content {
    font-size: 1rem;
  }
}
