/* ==========================================================================
   Weds Love – CSS principal
   Medidas do desktop copiadas do Figma (frame de 1920px, conteúdo de 1300px).
   Ordem do arquivo: 1) tokens  2) base  3) componentes  4) seções  5) responsivo
   ========================================================================== */

/* 1) TOKENS ---------------------------------------------------------------
   Cores e fontes do design. Para trocar uma cor do site inteiro, mude aqui. */
:root {
  --back: #fef2e2;        /* fundo creme principal */
  --paper: #faf6f1;       /* fundo "papel" (seções claras com textura) */
  --text: #555;           /* texto padrão */
  --title: #855049;       /* títulos marrom-avermelhado */
  --red: #b34c3d;         /* vermelho principal */
  --red2: #d66450;        /* vermelho claro (fim do degradê / destaques) */
  --cream: #f7eee4;
  --sand: #ede4d6;        /* texto sobre fundo vermelho */
  --ink: #2d211d;
  --muted: #75635b;
  --line: #ded0c8;
  --grad: linear-gradient(90deg, #b34c3d, #d66450);

  --f-body: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-ui: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-btn: "Cocogoose Pro Trial", "Nunito", system-ui, sans-serif;
  --f-card: "Poppins", "Nunito", system-ui, sans-serif;

  --container: 1300px;
}

/* 2) BASE ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--back);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, hr, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--red2); outline-offset: 3px; }

/* âncoras não ficam escondidas atrás do cabeçalho fixo */
section[id], div[id] { scroll-margin-top: 110px; }

.container { width: min(var(--container), 100% - 48px); margin-inline: auto; }
.container--narrow { max-width: 760px; }

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: #fff; color: var(--red); padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.ico { width: 1em; height: 1em; flex: none; }

/* 3) COMPONENTES --------------------------------------------------------- */

/* --- Títulos --- */
.h-xl { font: 700 58px/65px var(--f-body); color: var(--title); }
.h-lg { font: 700 44px/1.1 var(--f-body); color: var(--title); }
.h-md { font: 700 42px/45px var(--f-body); color: var(--back); }
.h-sm { font: 700 34.5px/40px var(--f-body); color: var(--sand); }
.accent { color: var(--red2); }
.accent-lite { color: var(--red); }                    /* linha 1 vermelha, destaque vermelho claro */
.accent-red { color: var(--title); }                   /* linha 1 marrom, destaque vermelho */
.accent-red .accent { color: var(--red); }
.hero .accent, .person__intro .accent { font-style: italic; }

.lead { font: 500 22px/30px var(--f-body); color: var(--text); }
.lead--center { text-align: center; }
.lead--gray { color: #757575; font-size: 23px; line-height: 31.5px; }
.lead--sm { font-size: 21px; line-height: 28.8px; color: var(--sand); }

/* Rótulo com ícone (emoji) acima dos títulos */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font: 600 18px/1.2 var(--f-body); text-transform: uppercase; color: var(--text);
  margin-bottom: 14px;
}
.eyebrow__ico { display: inline-block; width: 26px; text-align: center; font-size: 22px; line-height: 1; }
.eyebrow--light { color: var(--back); }

/* Rótulo centralizado em Cocogoose */
.kicker {
  font: 300 16px/1.3 var(--f-btn); text-transform: uppercase; color: var(--text);
  display: flex; align-items: center; gap: 10px; padding: 10px;
}
.kicker--left { padding-left: 0; }
.kicker--light { color: var(--back); }

.section-head {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 25px;
}
.section-head--light .h-lg { color: var(--sand); font-size: 42px; line-height: 42px; }
.section-head--light .kicker { color: var(--back); }
.section-head--light .lead { color: var(--sand); }

/* Fundos com textura (a imagem é escolhida no Personalizar) */
.has-tex { position: relative; isolation: isolate; }
.has-tex::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: var(--tex-paper, none) center / cover no-repeat;
  opacity: .25; mix-blend-mode: multiply; border-radius: inherit;
}
.has-tex-red { position: relative; isolation: isolate; }
.has-tex-red::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: var(--tex-red, none) center / cover no-repeat;
  opacity: .05; mix-blend-mode: luminosity;
}

/* --- Botões (anel duplo do layout) ---
   HTML:  <a class="btn btn--primary"><span class="btn__in">TEXTO</span></a>
   Tamanhos: (padrão) | --lg | --md | --sm      Cores: --primary --ghost --gray --light --cream --outline */
.btn {
  --h: 60px; --fs: 17.5px; --px: 34px; --bc: var(--red);
  display: inline-flex; padding: 6px; border: 1.25px solid var(--bc); border-radius: 999px;
  line-height: 1; text-align: center; transition: transform .18s ease, box-shadow .2s ease;
}
.btn__in {
  display: flex; align-items: center; justify-content: center;
  height: var(--h); padding: 0 var(--px); border-radius: 999px;
  font: 300 var(--fs)/1 var(--f-btn); white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(179, 76, 61, .22); }

.btn--primary .btn__in { background: var(--grad); color: var(--cream); }
.btn--ghost { --bc: var(--text); }
.btn--ghost .btn__in { background: var(--back); color: var(--text); }
.btn--gray { --bc: #adadad; border-width: 1px; }
.btn--gray .btn__in { color: var(--text); }
.btn--light { --bc: var(--back); border-width: 1.07px; }
.btn--light .btn__in { background: var(--back); color: var(--red); }
.btn--cream { --bc: var(--back); border-width: 1.1px; }
.btn--cream .btn__in { background: var(--back); color: var(--red); }
.btn--outline { --bc: var(--back); border-width: 1px; }
.btn--outline .btn__in { color: var(--back); }

.btn--lg { --h: 67px; --fs: 19.65px; --px: 81px; padding: 7px; }
.btn--md { --h: 53.5px; --fs: 15.6px; --px: 30px; padding: 5.6px; }
.btn--sm { --h: 48px; --fs: 14px; --px: 51px; padding: 3px 5px; }
.btn--sq { border-radius: 6.4px; }
.btn--sq .btn__in { border-radius: 5.6px; }

/* botão que ocupa a largura do card de plano */
.btn--block { display: flex; width: 100%; padding: 5.85px; border-width: 1.17px; background: var(--grad); }
.btn--block .btn__in { flex: 1; --h: 56px; --fs: 16.4px; --px: 12px; background: none; color: var(--back); }
.btn--block.btn--light { background: #fff; --bc: var(--red); }
.btn--block.btn--light .btn__in { color: #6a3125; background: none; }

/* --- Cabeçalho fixo (pílula branca) --- */
.site-header { position: fixed; top: 33px; left: 0; right: 0; z-index: 50; pointer-events: none; }
.site-header__bar {
  pointer-events: auto; position: relative;
  width: min(1300px, 100% - 32px); height: 75px; margin-inline: auto; padding: 0 20px 0 49px;
  display: flex; align-items: center;
  background: #fff; border-radius: 100px; box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}
.site-header__logo { display: block; width: 113.5px; flex: none; }
.logo__img { width: 113.5px; height: auto; }
.logo__text { display: block; font: italic 700 28px/1 var(--f-body); color: var(--red); }
.logo__text em { font-weight: 400; }
.site-nav { display: flex; align-items: center; justify-content: space-between; flex: 1; margin-left: 62px; }
.site-nav__list { display: flex; gap: 50px; font: 400 18px/1 var(--f-body); }
.site-nav__list a { color: var(--text); transition: color .2s; }
.site-nav__list a:hover { color: var(--red); }
.site-nav__ctas { display: flex; gap: 15px; }
.site-header__toggle { display: none; }
/* barra do WordPress (quando logado) */
.admin-bar .site-header { top: 65px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 62px; } }

/* 4) SEÇÕES -------------------------------------------------------------- */

/* --- HERO --- */
.hero {
  position: relative; overflow: hidden;
  background: var(--back); border-bottom: 1px solid var(--red);
  padding: 198px 0 70px;
}
.hero__col { width: 680px; max-width: 100%; position: relative; z-index: 2; }
.hero__title { margin: 0 0 20px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 18.7px; margin-top: 36px; }
.hero__line { width: 650px; max-width: 100%; border: 0; border-top: 1px solid #dfcdb9; margin: 45px 0; }
.hero__benefits { display: flex; justify-content: space-between; gap: 8px; width: 650px; max-width: 100%; }
.hero__benefits li { width: 211px; display: flex; flex-direction: column; gap: 5px; }
.hero__benefit-ico { display: block; width: 22px; height: 22px; margin-bottom: 6px; color: var(--red); }
.hero__benefit-ico .ico { width: 22px; height: 22px; }
.hero__benefits strong {
  font: 600 16px/18px var(--f-body);
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__benefits li > span:last-child { font: 600 12px/15px var(--f-body); color: var(--text); }
.hero__media {
  position: absolute; z-index: 1; top: 226px; left: calc(50% - 5px);
  width: min(866px, 50vw + 5px); aspect-ratio: 866 / 581.5;
}
.hero__img { position: relative; width: 100%; height: 100%; object-fit: contain; }
.hero__glow {
  position: absolute; left: 13.5%; top: 71%; width: 46%; height: 17%;
  background: radial-gradient(closest-side, rgba(45, 33, 29, .38), rgba(45, 33, 29, 0));
  filter: blur(8px);
}

/* --- TIPOS DE EVENTO --- */
.eventos { background: var(--paper); padding: 104px 0; }
.eventos .section-head { max-width: 812px; margin: 0 auto 50px; gap: 20px; }
.eventos .h-xl { text-align: center; }
.cards { display: flex; gap: 13.6px; }
.card-ev {
  flex: 1; min-width: 0; height: 421px; display: flex; flex-direction: column;
  padding: 12.8px 14.4px; border-radius: 16px;
  background: var(--back); border: 1px solid var(--red); color: var(--text);
}
.card-ev:nth-child(odd) { background: var(--grad); border-color: transparent; color: var(--back); }
.card-ev__img { flex: none; height: 222px; border-radius: 16px; overflow: hidden; background: #785b5b; }
.card-ev__img img { width: 100%; height: 100%; object-fit: cover; }
.card-ev__title { margin-top: 39px; font: 600 24px/1.2 var(--f-body); }
.card-ev__text { margin-top: 14px; font: 400 16px/24px var(--f-card); }
.section-cta { display: flex; justify-content: center; margin-top: 50px; }

/* --- PERSONALIZAÇÃO EM AÇÃO --- */
.person {
  position: relative; overflow: hidden;
  background: var(--back); border-top: 1px solid var(--red2);
  padding: 161px 0 163px;
}
.person__marks {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    var(--watermark, none) no-repeat right -159px top -142px / 953px 1436px,
    var(--watermark, none) no-repeat right -159px top 1299px / 953px 1436px;
}
.person .container { position: relative; }
.person__intro { width: 513px; max-width: 100%; }
.person__intro .h-xl { line-height: 55px; margin: 6px 0 20px; }

.demo {
  --pv-bg: #f6efe8; --pv-ink: #392b26; --pv-accent: #a45b48;
  margin-top: 85px; padding: 38px 28px;
  display: grid; grid-template-columns: 440px minmax(0, 1fr); gap: 22px;
  background: var(--grad); border-radius: 25px;
}
.demo[data-style="botanico"] { --pv-bg: #edf2e9; --pv-ink: #2f3a2c; --pv-accent: #51634d; }
.demo[data-style="noturno"] { --pv-bg: #2d211d; --pv-ink: #f6efe8; --pv-accent: #e7ad9c; }

.demo__panel {
  background: #fff; border: .93px solid var(--line); border-radius: 29.6px;
  padding: 29.6px 29.6px 40px; font-family: var(--f-ui); color: var(--ink);
}
.demo__panel-head {
  display: flex; align-items: center; gap: 11px;
  padding-bottom: 18.5px; margin-bottom: 26px; border-bottom: .93px solid var(--line);
  font: 600 14.7px/22px var(--f-ui);
}
.demo__panel-ico { width: 18.5px; height: 18.5px; color: #b85e49; }
.demo__badge {
  margin-left: auto; padding: 3.7px 11px; border-radius: 999px; background: #f1e5df;
  font: 400 9.26px/13.9px var(--f-ui); letter-spacing: .93px; text-transform: uppercase;
}
.demo__group { margin-bottom: 26px; }
.demo__group:last-child { margin-bottom: 0; }
.demo__label {
  margin-bottom: 11px; font: 700 11.1px/15px var(--f-ui); letter-spacing: 1.78px;
  text-transform: uppercase; color: var(--muted);
}
.demo__styles { display: flex; gap: 7.4px; }
.demo__style {
  flex: 1; padding: 11px 0; border: .93px solid var(--line); border-radius: 20.7px;
  font: 400 12.3px/18.5px var(--f-ui); color: var(--ink); transition: background .2s, border-color .2s, color .2s;
}
.demo__style:hover { border-color: #b85e49; }
.demo__style.is-active { background: #f8eee9; border-color: #b85e49; color: #8d4435; }
.demo__palette { display: flex; gap: 11px; }
.demo__dot { width: 37px; height: 37px; border-radius: 50%; flex: none; transition: background .35s; }
.demo__dot--1 { background: var(--pv-bg); border: .93px solid rgba(0, 0, 0, .12); }
.demo__dot--2 { background: var(--pv-ink); }
.demo__dot--3 { background: var(--pv-accent); }
.demo__dot--add { display: grid; place-items: center; border: .93px dashed var(--line); color: var(--muted); font: 400 18.5px/1 var(--f-ui); }
.demo__chips { display: grid; grid-template-columns: 1fr 1fr; gap: 7.4px; }
.demo__chips li {
  display: flex; align-items: center; gap: 7.4px; height: 40.7px; padding: 0 11px;
  background: #faf5f1; border-radius: 20.7px; font: 400 13px/1 var(--f-ui); color: var(--ink);
}
.demo__chips .ico { width: 14.8px; height: 14.8px; color: #b85e49; }

.demo__preview {
  display: flex; flex-direction: column; align-items: center; overflow: hidden;
  padding: 29.6px; min-height: 615px;
  background: var(--pv-bg); color: var(--pv-ink);
  border: .93px solid rgba(0, 0, 0, .1); border-radius: 29.6px;
  font-family: var(--f-ui); transition: background .35s ease, color .35s ease;
}
.demo__note { font: 400 9.26px/13.9px var(--f-ui); letter-spacing: 2.6px; text-transform: uppercase; opacity: .6; }
.demo__arch {
  position: relative; width: min(533px, 100%); height: 285px; margin-top: 0; overflow: hidden;
  background: rgba(255, 255, 255, .2); border-radius: 148px 148px 0 0; transition: border-radius .35s;
}
.demo[data-style="botanico"] .demo__arch { border-radius: 24px; }
.demo[data-style="noturno"] .demo__arch { border-radius: 148px 148px 24px 24px; background: rgba(255, 255, 255, .08); }
.demo__arch-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.demo__hero { width: min(533px, 100%); padding: 29.6px 22px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 11px; }
.demo__date { font: italic 400 12px/18.5px var(--f-ui); color: var(--pv-accent); transition: color .35s; }
.demo__names { font: 400 55px/55.5px var(--f-ui); transition: font-family .2s; }
.demo[data-style="botanico"] .demo__names { font-family: Georgia, "Times New Roman", serif; font-style: italic; }
.demo[data-style="noturno"] .demo__names { font-size: 46px; letter-spacing: .08em; text-transform: uppercase; }
.demo__desc { max-width: 415px; padding-bottom: 8px; font: 400 12.3px/21px var(--f-ui); opacity: .7; }
.demo__cta {
  padding: 11px 22px; border: .93px solid var(--pv-accent); border-radius: 999px;
  font: 400 11.1px/14.8px var(--f-ui); letter-spacing: 2px; text-transform: uppercase; color: var(--pv-accent);
  transition: color .35s, border-color .35s;
}

/* --- VÍDEO --- */
.video-card {
  margin-top: 85px; min-height: 506px; padding: 50px 39px 50px 59px;
  display: grid; grid-template-columns: 449px minmax(0, 1fr); gap: 34px; align-items: center;
  background: var(--grad); border: .97px solid var(--line); border-radius: 31px;
}
.video-card .eyebrow { color: var(--back); }
.video-card .h-md { margin: 6px 0 20px; }
.video-card .lead { color: var(--back); }
.video-card__box {
  position: relative; isolation: isolate; overflow: hidden;
  aspect-ratio: 740.55 / 416.55; background: var(--ink); border-radius: 24.8px;
  box-shadow: 0 23px 68px rgba(65, 40, 31, .18);
}
.video-card__poster { position: absolute; inset: 0; opacity: .55; }
.video-card__img { width: 100%; height: 100%; object-fit: cover; }
.video-card__shade {
  position: absolute; inset: 0;
  background: linear-gradient(29.4deg, rgba(45, 33, 29, .85) 0%, rgba(45, 33, 29, .25) 50%, rgba(45, 33, 29, 0) 100%);
}
.video-card__center {
  position: absolute; inset: 0; padding: 0 31px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  color: #fff; font-family: var(--f-ui);
}
.video-card__play {
  width: 77px; height: 77px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255, 255, 255, .15); border: .97px solid rgba(255, 255, 255, .5);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); color: #fff; transition: transform .2s, background .2s;
}
.video-card__play:hover { transform: scale(1.06); background: rgba(255, 255, 255, .25); }
.video-card__play .ico { width: 27px; height: 27px; fill: #fff; margin-left: 3px; }
.video-card__label { margin-top: 23px; font: 700 11.6px/15.5px var(--f-ui); letter-spacing: 2.55px; text-transform: uppercase; color: rgba(255, 255, 255, .7); }
.video-card__headline { margin-top: 11.6px; font: 400 32.7px/38.7px var(--f-ui); }
.video-card__note { margin-top: 11.6px; max-width: 380px; font: 400 12.8px/19.3px var(--f-ui); color: rgba(255, 255, 255, .65); }
.video-card__player { position: absolute; inset: 0; z-index: 5; background: #000; }
.video-card__player iframe, .video-card__player video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --- TUDO CONECTADO (bento) --- */
.conectado { position: relative; isolation: isolate; background: var(--grad); padding: 143px 0 325px; color: var(--sand); }
.conectado .section-head { max-width: 812px; margin: 0 auto; gap: 25px; }
.conectado .lead { max-width: 776px; }
.bento { margin-top: 80px; display: flex; flex-direction: column; gap: 28px; }
.bento__row { display: flex; gap: 21px; }
.bcard { position: relative; overflow: hidden; border-radius: 32px; font-family: var(--f-ui); }
.bcard--site { flex: 781 1 0; min-width: 0; min-height: 633px; padding: 37px; background: #f1e4db; border-radius: 29.7px; }
.bcard--guests { flex: 498 1 0; min-width: 0; min-height: 633px; padding: 40px 40px 60px; background: var(--title); }
.bcard--notes { flex: 538 1 0; min-width: 0; min-height: 317px; padding: 36px; background: var(--title); border: 1px solid rgba(255, 255, 255, .15); }
.bcard--gifts { flex: 746 1 0; min-width: 0; min-height: 317px; padding: 36px; background: #f8f0e9; }

.bcard__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.micro { font: 400 11.2px/15px var(--f-ui); letter-spacing: 2.23px; text-transform: uppercase; color: #8d4435; }
.micro--light { font-size: 12px; letter-spacing: 2.4px; color: rgba(255, 255, 255, .65); }
.bcard__title { font: 400 31px/37px var(--f-ui); color: var(--ink); margin-top: 13px; max-width: 560px; }
.bcard__title--light { color: #fff; font-size: 33.8px; line-height: 40px; max-width: 384px; margin-top: 20px; }
.bcard__title--sm { font-size: 28px; line-height: 36px; margin-top: 15px; }
.bcard--notes .bcard__title--sm { font-size: 27.1px; }
.bcard--gifts .bcard__title { max-width: none; }
.bcard__text { margin-top: 15px; font: 400 13.2px/22.75px var(--f-ui); color: var(--muted); }
.bcard__text--light { color: rgba(255, 255, 255, .6); max-width: 470px; }
.bcard__arrow .ico, .bcard__ico { width: 22px; height: 22px; color: var(--ink); }
.bcard--guests .bcard__ico { color: rgba(255, 255, 255, .8); width: 24px; height: 24px; }
.bcard__ico--lead { width: 24px; height: 24px; }
.bcard--notes .bcard__ico--lead { color: #fff; }
.bcard--gifts .bcard__ico--lead { color: #b85e49; }

.chips3 { margin-top: 30px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7.4px; }
.chips3 li {
  display: flex; align-items: center; gap: 11px; min-height: 59.5px; padding: 11px 15px;
  background: rgba(255, 255, 255, .65); border-radius: 14.9px; font: 400 12.6px/18.6px var(--f-ui); color: var(--ink);
}
.chips3 .ico { width: 14.9px; height: 14.9px; color: #b85e49; }

.phone {
  width: min(531px, 100%); margin: 30px auto 0; padding: 11px;
  background: #fff9f4; border: 7.4px solid #322620; border-radius: 37px;
  box-shadow: 0 23px 46px -11px rgba(0, 0, 0, .25);
}
.phone__photo { position: relative; height: 148.7px; border-radius: 26.8px; overflow: hidden; background: #f4e9df; }
.phone__img { width: 100%; height: 100%; object-fit: cover; }
.phone__info { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 11px; padding: 18.6px; }
.phone__info li { display: flex; align-items: center; gap: 7.4px; font: 400 10.8px/14.9px var(--f-ui); color: var(--ink); }
.phone__info .ico { width: 14.9px; height: 14.9px; color: #b85e49; }

.panel { margin-top: 20px; padding: 32px 20px 20px; background: #fff; border-radius: 24px; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1); color: var(--ink); }
.panel__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.panel__head strong { font: 600 15.9px/24px var(--f-ui); }
.panel__head span { font: 400 11.3px/16px var(--f-ui); color: var(--muted); }
.panel__stats { display: flex; gap: 8px; }
.panel__stats li { flex: 1; padding: 12px 12px 13.5px; text-align: center; border-radius: 22.4px; display: flex; flex-direction: column; gap: 2.5px; }
.panel__stats li:nth-child(1) { background: #edf2e9; }
.panel__stats li:nth-child(2) { background: #f7eee4; }
.panel__stats li:nth-child(3) { background: #f4e5e3; }
.panel__stats strong { font: 700 20px/28px var(--f-ui); }
.panel__stats span { font: 400 12.4px/19.2px var(--f-ui); }
.panel__list { margin-top: 20px; }
.panel__list li { display: flex; align-items: center; gap: 12px; padding-top: 12px; margin-top: 12px; border-top: 1px solid #eee3dc; }
.panel__avatar { width: 32px; height: 32px; flex: none; display: grid; place-items: center; border-radius: 50%; background: #f3e8e1; font: 400 12px/1 var(--f-ui); }
.panel__name { font: 400 13.5px/20px var(--f-ui); }
.pill { margin-left: auto; padding: 3px 8px 4.3px; border-radius: 999px; font: 400 9.6px/14.3px var(--f-ui); white-space: nowrap; }
.pill--ok { background: #edf2e9; }
.pill--wait { background: #f7eee4; }

.balance { margin-top: 15px; display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: #fff; border-radius: 16px; }
.balance span { font: 400 12px/16px var(--f-ui); letter-spacing: 1.92px; text-transform: uppercase; color: var(--muted); }
.balance strong { font: 700 30px/36px var(--f-ui); color: var(--ink); }

/* --- COMO FUNCIONA --- */
.como {
  position: relative; overflow: hidden;
  width: min(1745px, 100% - 48px); height: 681px; margin: 146px auto 0;
  padding-left: 222px; display: grid; grid-template-columns: 513px 670px; column-gap: 116px; align-items: center;
  background: var(--paper); border-radius: 50px;
}
.como__text .h-xl { line-height: 55px; margin: 6px 0 25px; }
.como__text .lead { margin-bottom: 25px; }
.como__text .btn__in { min-width: 333px; }
.como__steps { position: relative; width: 670px; height: 499px; }
.step { position: absolute; overflow: hidden; background: #000; color: var(--sand); }
.step::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, #000 .7%, rgba(0, 0, 0, 0) 42%); }
.step__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.step__tag {
  position: absolute; z-index: 2; display: block;
  background: var(--grad); border-radius: 999px; color: var(--sand);
  writing-mode: vertical-rl; transform: rotate(180deg); white-space: nowrap; font-weight: 700;
}
.step__tag span { display: block; }
.step__text { position: absolute; z-index: 2; font: 400 16px/23px var(--f-body); color: var(--sand); }

.step--1 { z-index: 3; left: 0; top: 0; width: 412px; height: 499px; border-radius: 20px; }
.step--1 .step__tag { top: 39px; right: 28px; padding: 10px; font-size: 24px; line-height: 28px; }
.step--1 .step__text { left: 31px; top: 427px; width: 351px; transform: translateY(-50%); font-size: 19px; }
.step--2 { z-index: 2; left: 206px; top: 35px; width: 354px; height: 429px; border-radius: 17px; }
.step--2::after { background: linear-gradient(to top, #000 .2%, rgba(0, 0, 0, 0) 29.5%); }
.step--2 .step__tag { top: 26px; right: 25px; padding: 6.8px; font-size: 16.3px; line-height: 19px; }
.step--2 .step__text { left: 59px; top: 379px; width: 286px; transform: translateY(-50%); }
.step--3 { z-index: 1; left: 375px; top: 71px; width: 296px; height: 358px; border-radius: 14px; }
.step--3::after { background: linear-gradient(to top, #000 1.4%, rgba(0, 0, 0, 0) 99%); }
.step--3 .step__tag { top: 20px; right: 22px; padding: 5px; font-size: 12.3px; line-height: 14px; }
.step--3 .step__text { left: 1px; top: 313px; width: 286px; transform: translateY(-50%); line-height: 17px; }

/* --- Zona creme (Planos + FAQ + Profissionais) --- */
.cream-zone { display: flow-root; background: var(--back); padding-bottom: 138px; }

/* --- PLANOS --- */
.planos {
  position: relative; z-index: 2; overflow: hidden;
  width: min(1745px, 100% - 48px); margin: -146px auto 0; padding: 108px 40px;
  background: var(--paper); border: 1px solid var(--red2); border-radius: 105px;
}
.planos .section-head { max-width: 852px; margin: 0 auto; gap: 26px; }
.planos .kicker { font-size: 16.8px; }
.planos .h-lg { font-size: 44px; line-height: 44px; }
.planos .lead { max-width: 815px; }
.planos__grid { display: flex; gap: 21px; max-width: 1312px; margin: 68px auto 0; }
.plano {
  flex: 1; min-width: 0; min-height: 428px; padding: 42px 21px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
  background: #fff; border: 1.05px solid var(--red); border-radius: 21px;
}
.plano--destaque { background: var(--grad); color: var(--sand); }
.plano__badge {
  display: inline-block; padding: 6.6px; border-radius: 6.6px; background: var(--grad);
  font: 300 10.5px/14px var(--f-btn); color: var(--sand);
}
.plano--destaque .plano__badge { background: var(--sand); color: var(--red); }
.plano__price { margin-top: 11.5px; display: flex; align-items: flex-end; gap: 11.5px; }
.plano__amount {
  font: 700 44px/50px var(--f-body);
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.plano--destaque .plano__amount { background: none; color: var(--sand); }
.plano__price small { font: 400 12.6px/1.6 var(--f-body); color: var(--red); }
.plano--destaque .plano__price small { color: var(--sand); }
.plano__list { display: flex; flex-direction: column; gap: 15.7px; }
.plano__list li { display: flex; align-items: center; gap: 5.2px; font: 300 14.7px/1.3 var(--f-btn); color: #5b5b5b; }
.plano--destaque .plano__list li { color: var(--sand); }
.tick { flex: none; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: #fff; }
.tick .ico { width: 13px; height: 13px; stroke-width: 3; }
.plano--destaque .tick { background: var(--sand); color: var(--red); }
.planos__note { margin-top: 68px; text-align: center; font: 500 23px/31.5px var(--f-body); color: #757575; }

/* --- FAQ --- */
.faq { padding: 113px 0 0; }
.faq__grid { display: grid; grid-template-columns: 646px minmax(0, 1fr); column-gap: 12px; align-items: start; }
.faq__intro { padding-top: 13px; }
.faq__intro .h-lg { font-size: 43.7px; line-height: 52px; margin-top: 15px; }
.faq__photo { margin-top: 40px; width: 613px; max-width: 100%; height: 179px; border-radius: 20px; overflow: hidden; background: rgba(179, 76, 61, .08); }
.faq__photo:empty { display: none; }
.faq__img { width: 100%; height: 100%; object-fit: cover; }
.faq__list { display: flex; flex-direction: column; gap: 10.4px; }
.faq__item { background: var(--back); border: 1px solid var(--red); border-radius: 10px; overflow: hidden; }
.faq__item:first-child { border-color: var(--red2); }
.faq__item summary {
  min-height: 58px; padding: 10px 52px 10px 25px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  list-style: none; cursor: pointer;
  font: 400 14.55px/1.3 var(--f-ui); letter-spacing: .29px; color: var(--red2);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { flex: none; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 2px; background: var(--red2); color: var(--back); transition: transform .25s; }
.faq__chev .ico { width: 15px; height: 15px; stroke-width: 2.4; }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__answer { padding: 0 52px 20px 25px; font: 400 14px/1.65 var(--f-ui); color: var(--text); }
.faq__answer p { margin: 0 0 .8em; }
.faq__answer p:last-child { margin-bottom: 0; }

/* --- PROFISSIONAIS --- */
.pros { padding-top: 138px; }
.pros__card {
  display: grid; grid-template-columns: 591px 543px; column-gap: 41px; align-items: center;
  min-height: 510px; padding: 0 92px 0 33px;
  background: var(--grad); border-radius: 20.7px;
}
.pros__panel {
  padding: 23px; min-height: 359px; background: #fff; border-radius: 23px;
  font-family: var(--f-ui); color: var(--ink); filter: drop-shadow(0 23px 29px rgba(71, 43, 33, .16));
}
.pros__panel-head { display: flex; align-items: center; gap: 11.6px; padding-bottom: 19px; margin-bottom: 19px; border-bottom: .97px solid var(--line); }
.pros__panel-head > div { display: flex; flex-direction: column; }
.pros__panel-head strong { font: 600 15.45px/23px var(--f-ui); }
.pros__panel-head div span { font: 400 11.2px/15.5px var(--f-ui); color: var(--muted); }
.pros__panel-ico { width: 38.6px; height: 38.6px; display: grid; place-items: center; border-radius: 50%; background: #f2ded7; color: #b85e49; flex: none; }
.pros__panel-ico .ico { width: 19px; height: 19px; }
.pros__badge { margin-left: auto; padding: 3.9px 11.6px; border-radius: 999px; background: #e8efe5; color: #51634d; font: 400 11px/15.5px var(--f-ui); }
.pros__rows { display: flex; flex-direction: column; gap: 11.6px; }
.pros__row { display: flex; align-items: center; gap: 11.6px; padding: 11.6px; border: .97px solid #eadbd2; border-radius: 15.5px; }
.pros__row-ico { flex: none; width: 34.8px; height: 34.8px; display: grid; place-items: center; border-radius: 50%; color: #4c3b35; }
.pros__row-ico .ico { width: 15.5px; height: 15.5px; }
.pros__row--1 .pros__row-ico { background: #f2ded7; }
.pros__row--2 .pros__row-ico { background: #e7e1ef; }
.pros__row--3 .pros__row-ico { background: #dce7df; }
.pros__row-text { flex: 1; display: flex; flex-direction: column; gap: 3.9px; }
.pros__row-text strong { font: 600 13.3px/19.3px var(--f-ui); }
.pros__row-text small { font: 400 10.7px/15.5px var(--f-ui); color: var(--muted); }
.pros__row-date { font: 600 11.6px/15.5px var(--f-ui); color: #8d4435; }
.pros__text .h-sm { margin: 14px 0 24px; }
.pros__text .lead { margin-bottom: 25px; }
.pros__text .btn__in { min-width: 303px; }

/* --- CHAMADA FINAL --- */
.final { position: relative; overflow: hidden; height: 648px; display: flex; align-items: center; background: var(--grad); }
.final__inner { width: min(1250px, 100% - 48px); display: flex; flex-direction: column; align-items: center; text-align: center; color: var(--back); }
.final .h-xl { max-width: 881px; color: var(--back); }
.final__text { margin-top: 10px; font: 500 26px/30px var(--f-body); }
.final__ctas { margin-top: 38px; display: flex; gap: 15px; }
.final__ctas .btn__in { min-width: 254px; }
.final__line { width: 100%; margin: 38px 0; border: 0; border-top: 1px solid rgba(254, 242, 226, .35); }
.final__trust { display: flex; justify-content: space-between; width: min(899px, 100%); font: 500 16px/30px var(--f-body); }
.final__trust li { display: flex; align-items: center; gap: 16px; }
.final__trust-ico { width: 30px; height: 30px; flex: none; display: grid; place-items: center; border-radius: 5px; background: var(--back); color: var(--red); }
.final__trust-ico .ico { width: 17px; height: 17px; }

/* --- RODAPÉ --- */
.site-footer { background: var(--paper); padding: 64px 0 40px; font-family: var(--f-ui); }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(0, 0, 0, .05); }
.site-footer__brand { max-width: 320px; }
.site-footer__logo { display: block; width: 128px; }
.site-footer__logo .logo__img { width: 128px; }
.site-footer__brand p { margin-top: 26px; font: 400 13.2px/22.75px var(--f-ui); color: var(--text); }
.site-footer__title {
  margin-bottom: 20px; font: 700 12px/16px var(--f-ui); letter-spacing: 2.16px; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; width: fit-content;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.site-footer__col a { font: 400 13.3px/20px var(--f-ui); color: var(--text); transition: color .2s; }
.site-footer__col a:hover, .site-footer__bottom a:hover { color: var(--red); }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font: 400 11.3px/16px var(--f-ui); color: var(--text); }
.site-footer__bottom ul { display: flex; gap: 20px; }
.site-footer__bottom a { font-size: 11.6px; }

/* --- Páginas internas (Privacidade, Termos...) --- */
.page-plain { padding: 170px 0 100px; min-height: 60vh; }
.entry__title { margin-bottom: 24px; font: 700 40px/1.2 var(--f-body); color: var(--title); }
.entry__title a:hover { color: var(--red); }
.entry__content { font-size: 18px; line-height: 1.7; }
.entry__content > * + * { margin-top: 1em; }
.entry__content a { color: var(--red); text-decoration: underline; }
.entry { margin-bottom: 48px; }

/* 5) RESPONSIVO ---------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Telas médias (até 1600px): o painel "Como funciona" fica mais compacto */
@media (max-width: 1600px) {
  .como { padding-left: 96px; grid-template-columns: 500px 670px; column-gap: 40px; }
}

/* Notebook (até 1360px): o layout de 1300px encosta nas bordas */
@media (max-width: 1360px) {
  .container { width: min(var(--container), 100% - 64px); }
  .site-nav__list { gap: 34px; }
  .site-nav { margin-left: 40px; }
  .hero__col { width: 620px; }
  .person__intro, .como__text { max-width: 100%; }
  .pros__card { grid-template-columns: 1fr 1fr; padding: 0 60px 0 33px; column-gap: 40px; }
  .video-card { grid-template-columns: 400px minmax(0, 1fr); }
  .final__ctas .btn__in { min-width: 220px; }
  .como { padding-left: 56px; grid-template-columns: minmax(0, 1fr) 540px; column-gap: 32px; }
  .como__steps { transform: scale(.806); transform-origin: left center; }
}

/* Tablet largo / notebook pequeno (até 1200px) */
@media (max-width: 1200px) {
  .h-xl { font-size: 48px; line-height: 54px; }
  .demo { grid-template-columns: 380px minmax(0, 1fr); padding: 28px 22px; }
  .demo__names { font-size: 46px; line-height: 50px; }
  .como__text .btn__in { min-width: 0; }
  .plano__badge { font-size: 10px; }
  .site-footer__grid { gap: 32px; }
}

/* Cabeçalho vira menu hambúrguer (até 1180px) */
@media (max-width: 1180px) {
  .site-header { top: 16px; }
  .site-header__bar { height: 64px; padding: 0 12px 0 24px; }
  .site-header__logo, .logo__img { width: 96px; }
  .site-header__toggle {
    display: grid; place-items: center; width: 44px; height: 44px; margin-left: auto;
    border-radius: 50%; color: var(--red); background: #fdf1ee;
  }
  .site-header__toggle .ico { width: 22px; height: 22px; }
  .site-header__toggle-close { display: none; }
  .site-header.is-open .site-header__toggle-open { display: none; }
  .site-header.is-open .site-header__toggle-close { display: block; }
  .site-nav {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0; margin: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 20px; padding: 22px;
    background: #fff; border-radius: 28px; box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
  }
  .site-header.is-open .site-nav { display: flex; }
  .site-nav__list { flex-direction: column; gap: 2px; }
  .site-nav__list a { display: block; padding: 12px 8px; font-size: 18px; border-radius: 10px; }
  .site-nav__list a:hover { background: #fdf1ee; }
  .site-nav__ctas { flex-direction: column; gap: 10px; }
  .site-nav__ctas .btn { display: flex; }
  .site-nav__ctas .btn__in { flex: 1; --px: 20px; }
}

/* Tablet (até 1100px): colunas empilham */
@media (max-width: 1100px) {
  .hero { padding: 132px 0 56px; }
  .hero__col { width: 100%; }
  .hero__media { position: relative; top: auto; left: auto; width: min(866px, 100% - 48px); margin: 40px auto 0; }
  .hero__line { margin: 36px 0; }

  .eventos { padding: 80px 0; }
  .cards { flex-wrap: wrap; }
  .card-ev { flex: 1 1 calc(50% - 7px); height: auto; min-height: 400px; }

  .person { padding: 100px 0; }
  .person__marks { opacity: .25; }
  .demo { grid-template-columns: 1fr; }
  .demo__panel { padding-bottom: 30px; }
  .demo__preview { min-height: 0; }
  .video-card { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; }

  .conectado { padding: 100px 0 180px; }
  .bento__row { flex-direction: column; }
  .bcard--site, .bcard--guests, .bcard--notes, .bcard--gifts { flex: none; min-height: 0; }
  .bcard--guests { padding-bottom: 40px; }
  .bcard--notes { padding-bottom: 40px; }
  .bcard__title { font-size: 26px; line-height: 32px; }
  .bcard__title--light { font-size: 28px; line-height: 34px; }

  .como { height: auto; padding: 56px 32px 64px; display: flex; flex-direction: column; align-items: flex-start; gap: 40px; margin-top: 90px; border-radius: 36px; }
  .como__text { width: 100%; }
  .como__steps {
    width: 100%; height: auto; transform: none; margin: 0;
    display: flex; gap: 14px; overflow-x: auto; padding-bottom: 12px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  }
  .step, .step--1, .step--2, .step--3 {
    position: relative; left: auto; top: auto; flex: 0 0 min(78%, 300px); width: auto; height: 400px;
    border-radius: 18px; scroll-snap-align: start;
  }
  .step .step__tag, .step--1 .step__tag, .step--2 .step__tag, .step--3 .step__tag { top: 16px; right: 16px; padding: 8px; font-size: 15px; line-height: 17px; }
  .step .step__text, .step--1 .step__text, .step--2 .step__text, .step--3 .step__text {
    left: 18px; right: 18px; top: auto; bottom: 22px; width: auto; transform: none; font-size: 16px; line-height: 21px;
  }
  .step--2::after, .step--3::after { background: linear-gradient(to top, #000 .7%, rgba(0, 0, 0, 0) 55%); }

  .cream-zone { padding-bottom: 96px; }
  .planos { margin-top: -90px; padding: 64px 24px; border-radius: 48px; }
  .planos__grid { flex-direction: column; margin-top: 44px; }
  .planos__note { margin-top: 40px; font-size: 18px; line-height: 26px; }
  .lead--gray { font-size: 19px; line-height: 27px; }

  .faq { padding-top: 80px; }
  .faq__grid { grid-template-columns: 1fr; row-gap: 32px; }
  .faq__photo { width: 100%; }

  .pros { padding-top: 80px; }
  .pros__card { grid-template-columns: 1fr; padding: 28px; row-gap: 32px; min-height: 0; }
  .pros__text .btn__in { min-width: 0; }

  .final { height: auto; padding: 96px 0; }
  .final__ctas { flex-direction: column; align-items: center; }
  .final__trust { flex-direction: column; align-items: flex-start; gap: 14px; }

  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

/* Celular (até 640px) */
@media (max-width: 640px) {
  .container { width: calc(100% - 40px); }
  .h-xl { font-size: 36px; line-height: 42px; }
  .h-lg, .planos .h-lg, .section-head--light .h-lg { font-size: 32px; line-height: 38px; }
  .h-md { font-size: 30px; line-height: 36px; }
  .h-sm { font-size: 28px; line-height: 34px; }
  .faq__intro .h-lg { font-size: 34px; line-height: 40px; }
  .lead, .lead--sm { font-size: 18px; line-height: 26px; }
  .eyebrow { font-size: 15px; }
  .person__intro .h-xl, .como__text .h-xl { line-height: 42px; }

  .hero { padding-top: 116px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { display: flex; }
  .hero__ctas .btn__in { flex: 1; --px: 16px; --fs: 15px; }
  .hero__benefits { flex-direction: column; gap: 22px; }
  .hero__benefits li { width: 100%; }

  .card-ev { flex: 1 1 100%; min-height: 0; }
  .card-ev__img { height: 200px; }
  .btn--lg .btn__in { --px: 28px; --fs: 16px; }
  .btn--lg { padding: 6px; }

  .demo { padding: 14px; border-radius: 20px; }
  .demo__panel { padding: 22px 18px 24px; border-radius: 22px; }
  .demo__style { font-size: 11.5px; }
  .demo__preview { padding: 20px 14px; border-radius: 22px; }
  .demo__arch { height: 190px; border-radius: 100px 100px 0 0; }
  .demo__names { font-size: 34px; line-height: 40px; }
  .demo[data-style="noturno"] .demo__names { font-size: 28px; }
  .demo__hero { padding: 22px 6px 6px; }

  .video-card { padding: 26px 20px; border-radius: 24px; }
  .video-card__play { width: 60px; height: 60px; }
  .video-card__play .ico { width: 22px; height: 22px; }
  .video-card__headline { font-size: 22px; line-height: 28px; }
  .video-card__note, .video-card__label { display: none; }

  .chips3 { grid-template-columns: 1fr 1fr; }
  .phone { border-width: 5px; border-radius: 26px; }
  .phone__photo { height: 110px; border-radius: 18px; }
  .phone__info { grid-template-columns: 1fr; }
  .bcard--site, .bcard--guests, .bcard--notes, .bcard--gifts { padding: 26px 20px; }
  .balance strong { font-size: 24px; }
  .panel { padding: 24px 14px 14px; }

  .como { width: calc(100% - 24px); padding: 40px 20px 48px; border-radius: 28px; }
  .como__text .btn { display: flex; }
  .como__text .btn__in { flex: 1; --px: 12px; --fs: 15px; }

  .planos { width: calc(100% - 24px); padding: 48px 16px; border-radius: 34px; }
  .plano { padding: 32px 18px; }
  .plano__amount { font-size: 38px; }

  .faq__item summary { padding: 10px 14px 10px 18px; }
  .faq__answer { padding: 0 18px 18px; }

  .pros__card { padding: 16px; border-radius: 18px; }
  .pros__panel { padding: 16px; }

  .final__text { font-size: 20px; line-height: 26px; }
  .final__ctas .btn { display: flex; }

  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
