/* ============================================================
   AURA FLOW DUBAI — folha de estilo única
   ------------------------------------------------------------
   Cores tiradas do cartaz da marca. Mude em :root e o site
   inteiro muda junto.
   ============================================================ */

:root {
  /* ---- cores da marca ---- */
  --cream:   #FDF8F5;   /* fundo principal */
  --blush:   #F8E9ED;   /* blocos claros */
  --petal:   #F2D6DE;   /* rosa muito claro */
  --rose:    #B03A63;   /* rosa da marca — títulos e botões */
  --rose-dk: #8C2B4E;   /* rosa do hover */
  --dusty:   #C98BA0;   /* rosa suave */
  --gold:    #C2A264;   /* dourado dos detalhes */
  --ink:     #3B2530;   /* texto */
  --muted:   #8A6E78;   /* texto secundário */
  --line:    #EBD9DE;   /* linhas e bordas */

  /* ---- tipografia ---- */
  --display: "Playfair Display", Georgia, serif;
  --script:  "Parisienne", cursive;
  --body:    "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ---- medidas ---- */
  --wide: 1180px;
  --text: 660px;
  --r:    2px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ---------- tipografia ---------- */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}

h1 { font-size: clamp(44px, 7.5vw, 76px); letter-spacing: -0.01em; }
h2 { font-size: clamp(32px, 4.6vw, 46px); }
h3 { font-size: 20px; line-height: 1.3; }

.script { font-family: var(--script); color: var(--rose); font-weight: 400; }
h1 .script { font-size: 1.05em; display: inline-block; }

p { margin: 0; max-width: var(--text); }

a { color: var(--rose); text-underline-offset: 3px; }
a:hover { color: var(--rose-dk); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: var(--r);
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0;
}

.lede  { font-size: 19px; color: var(--muted); font-weight: 300; }
.small { font-size: 14px; color: var(--muted); }

/* filete dourado usado como separador, igual ao do cartaz */
.rule {
  display: flex; align-items: center; gap: 12px;
  color: var(--gold); max-width: 260px;
}
.rule::before, .rule::after {
  content: ""; flex: 1; height: 1px; background: var(--gold); opacity: .5;
}
.rule span { font-size: 9px; letter-spacing: .3em; }

/* ---------- estrutura ---------- */

.wrap { max-width: var(--wide); margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }
section.tint { background: var(--blush); }

.stack   { display: flex; flex-direction: column; gap: 24px; }
.stack-l { display: flex; flex-direction: column; gap: 48px; }
.stack.tight { gap: 14px; }

/* ---------- barra do topo ---------- */

.top {
  position: sticky; top: 0; z-index: 40;
  background: rgba(253, 248, 245, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.top .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: 72px;
}
.logo {
  display: flex; flex-direction: column; gap: 1px;
  text-decoration: none; color: var(--rose); white-space: nowrap;
}
.logo b {
  font-family: var(--display); font-weight: 500;
  font-size: 21px; letter-spacing: .16em; line-height: 1;
}
.logo i {
  font-style: normal; font-size: 7px; letter-spacing: .34em;
  color: var(--muted); text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 13px; font-weight: 400; text-decoration: none; color: var(--ink);
  letter-spacing: .1em; text-transform: uppercase;
}
.nav a:hover { color: var(--rose); }
@media (max-width: 860px) { .nav .hide-sm { display: none; } }

/* ---------- botões ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; padding: 15px 32px;
  font-family: var(--body); font-size: 12px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--rose); border-radius: var(--r);
  background: var(--rose); color: #fff;
  text-decoration: none; cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { background: var(--rose-dk); border-color: var(--rose-dk); color: #fff; }
.btn.ghost { background: transparent; color: var(--rose); }
.btn.ghost:hover { background: var(--rose); color: #fff; }
.btn.wide { width: 100%; padding: 17px 32px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.btn svg { width: 16px; height: 16px; fill: currentColor; flex: none; }

.btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- topo da home ---------- */

.hero { padding: 84px 0 96px; }
.hero .wrap {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: 70px; align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 28px; }

.tagline {
  font-family: var(--body); font-size: 14px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); line-height: 2.1; max-width: 34ch;
}

.hero-img {
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 70px -34px rgba(59, 37, 48, .45);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 920px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 44px; }
  .hero-img { max-width: 420px; margin: 0 auto; }
}

/* ---------- faixa de informações ---------- */

.facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.fact { padding: 22px 24px 22px 0; border-right: 1px solid var(--line); }
.fact:last-child { border-right: none; }
.fact dt {
  font-size: 10px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 7px;
}
.fact dd { margin: 0; font-family: var(--display); font-size: 23px; line-height: 1.15; }
.fact dd small { display: block; font-family: var(--body); font-size: 13px; color: var(--muted); margin-top: 3px; }

/* ---------- blocos de duas colunas ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.split.top { align-items: start; }
.split-media { border-radius: 4px; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media { max-width: 460px; margin: 0 auto; }
}

/* ---------- fundadora ---------- */

.founder-img {
  border-radius: 4px; overflow: hidden; background: var(--blush);
  width: 100%; aspect-ratio: 3 / 4;
  box-shadow: 0 26px 60px -34px rgba(59, 37, 48, .4);
}
.founder-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 12%;
}
.sig {
  font-family: var(--script); font-size: 32px; color: var(--rose); line-height: 1;
}
.role {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted);
}
.ig {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; letter-spacing: .06em; text-decoration: none;
}
.ig svg { width: 17px; height: 17px; fill: currentColor; }
.quote {
  font-family: var(--display); font-size: 22px; line-height: 1.5;
  font-style: italic; color: var(--ink);
  padding-left: 22px; border-left: 2px solid var(--dusty);
  max-width: 30ch;
}
@media (max-width: 880px) { .founder-img { max-width: 420px; margin: 0 auto; } }

/* ---------- o que está incluído ---------- */

.incl {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.incl-item { background: var(--cream); padding: 30px 26px; display: flex; flex-direction: column; gap: 10px; }
section.tint .incl-item { background: var(--blush); }
.incl-item h3 { font-size: 19px; color: var(--rose); }
.incl-item p { font-size: 15px; color: var(--muted); }

/* ---------- datas ---------- */

.dates { border-top: 1px solid var(--line); }
.date {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 26px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.date-when { display: flex; flex-direction: column; gap: 4px; }
.date-when strong { font-family: var(--display); font-size: 23px; font-weight: 400; }
.date-when span { font-size: 13px; color: var(--muted); letter-spacing: .08em; }
.spots {
  font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}
.spots.low  { color: var(--rose); }
.spots.none { color: var(--muted); }
@media (max-width: 660px) {
  .date { grid-template-columns: 1fr; gap: 14px; }
  .date .btn { width: 100%; }
}

/* ---------- preço ---------- */

.price-card {
  border: 1px solid var(--line); border-radius: 4px;
  background: var(--cream); padding: 38px 34px;
  display: flex; flex-direction: column; gap: 20px;
}
.price-big {
  font-family: var(--display); font-size: 52px; line-height: 1; color: var(--rose);
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.price-big small {
  font-family: var(--body); font-size: 14px; color: var(--muted);
  font-weight: 300; letter-spacing: .06em;
}

/* ---------- cartaz ---------- */

.poster {
  max-width: 460px; margin: 0 auto; border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 70px -36px rgba(59, 37, 48, .45);
}

/* ---------- perguntas ---------- */

.faq { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 22px 0; }
summary {
  cursor: pointer; list-style: none;
  font-family: var(--display); font-size: 20px;
  display: flex; justify-content: space-between; gap: 24px; align-items: baseline;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--rose); font-size: 24px; line-height: 1; font-family: var(--body); }
details[open] summary::after { content: "–"; }
details p { margin-top: 14px; color: var(--muted); font-size: 16px; }

/* ---------- formulário ---------- */

.form { display: flex; flex-direction: column; gap: 24px; max-width: 620px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
}
.field .hint { color: var(--muted); letter-spacing: .1em; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 16px; font-weight: 300; color: var(--ink);
  padding: 13px 15px;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--cream); width: 100%;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rose); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 580px) { .row2 { grid-template-columns: 1fr; } }

.check { display: flex; gap: 12px; align-items: flex-start; }
.check input { width: 18px; height: 18px; margin-top: 4px; flex: none; accent-color: var(--rose); }
.check label {
  font-size: 14px; font-weight: 300; line-height: 1.6;
  letter-spacing: 0; text-transform: none;
}

/* honeypot: invisível para gente, preenchido por robô */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.msg { padding: 17px 20px; border-radius: var(--r); font-size: 15px; display: none; }
.msg.ok  { display: block; background: #EDF4EF; border: 1px solid #C6DBCD; color: #2A5C43; }
.msg.err { display: block; background: #FBEDF1; border: 1px solid #EFCCD7; color: #8C2B4E; }

/* ---------- botão flutuante do WhatsApp ---------- */

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; text-decoration: none;
  padding: 14px 20px; border-radius: 100px;
  font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, .6);
  transition: transform .18s ease;
}
.wa-float:hover { transform: translateY(-2px); color: #fff; }
.wa-float svg { width: 20px; height: 20px; fill: currentColor; flex: none; }
@media (max-width: 560px) {
  .wa-float { right: 14px; bottom: 14px; padding: 14px; }
  .wa-float span { display: none; }
}

/* ---------- rodapé ---------- */

.foot { background: var(--ink); color: #E4D6DB; padding: 70px 0 44px; }
.foot a { color: var(--dusty); }
.foot a:hover { color: #fff; }
.foot .logo { color: var(--petal); }
.foot .logo i { color: #9C848D; }
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px;
  padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.foot h4 {
  margin: 0 0 14px; font-family: var(--body);
  font-size: 10px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: #9C848D;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot ul a { font-size: 15px; text-decoration: none; }
.foot p { font-size: 15px; color: #B39FA7; }
.foot-base {
  padding-top: 28px; display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: space-between; font-size: 13px; color: #9C848D;
}
@media (max-width: 780px) { .foot-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- utilitários ---------- */

.center { text-align: center; align-items: center; }
.center p, .center .rule { margin-left: auto; margin-right: auto; }
.narrow { max-width: 780px; margin: 0 auto; }

/* ---------- os dois Instagram da fundadora ---------- */

.igs { display: flex; flex-direction: column; gap: 12px; }
.igs .ig em {
  font-style: normal; font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); margin-left: 4px;
}
