/* ---------------------------------------------------------
   TOKENS
--------------------------------------------------------- */
:root {
  --creme: #FDF8F0;
  --creme-2: #F7EEDD;
  --terracota: #BE4632;
  --terracota-light: #D97B62;
  --vinho: #5A0A1E;
  --vinho-dark: #3D0714;
  --dourado: #C9A227;
  --dourado-light: #E8C766;
  --ink: #2A1410;
  --muted: #7A695F;
  --border: #EADFCE;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--ink);
  font-family: 'Work Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--vinho);
  margin: 0;
  line-height: 1.12;
}

a { color: inherit; }

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

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dourado);
  background: linear-gradient(135deg, #FFF7DF, var(--creme-2));
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section {
  padding: 84px 0;
}
.section--tight { padding: 56px 0; }
.section--bleed { padding: 0; }

.center { text-align: center; }

.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
}
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------
   BOTÕES
--------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 14px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--vinho), var(--vinho-dark));
  color: #FBEAEA;
  font-size: 18px;
  padding: 20px 40px;
  box-shadow: 0 10px 30px rgba(90, 10, 30, 0.35);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 16px 36px rgba(90, 10, 30, 0.45);
}
.btn--primary:active { transform: translateY(0) scale(0.99); }

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--vinho);
  color: var(--vinho);
  font-size: 15px;
  padding: 13px 26px;
}
.btn--ghost:hover { background: var(--vinho); color: #fff; }

.reassure {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.reassure b { color: var(--terracota); }

/* ---------------------------------------------------------
   TOPO / LOGO
--------------------------------------------------------- */
.topbar {
  display: flex;
  justify-content: center;
  padding: 30px 0 6px;
}
.topbar img { height: 96px; width: auto; }

/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */
.hero {
  position: relative;
  padding: 30px 0 70px;
  overflow: hidden;
}

.hero-wheels {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  max-width: 160vw;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.hero-wheels svg { width: 100%; height: auto; }
.wheel-slow { animation: spin 90s linear infinite; transform-origin: center; }
.wheel-slow.reverse { animation-direction: reverse; animation-duration: 120s; }

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracota);
}

/* ---------------------------------------------------------
   MOSTRUÁRIO (imagens grandes)
--------------------------------------------------------- */
.showcase-card {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(90, 10, 30, 0.28);
  border: 1px solid var(--border);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}
.two-col.reverse .col-media { order: 2; }
@media (max-width: 800px) {
  .two-col.reverse .col-media { order: 0; }
}

.col-media img {
  border-radius: 22px;
  box-shadow: 0 24px 50px -18px rgba(90, 10, 30, 0.25);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-list .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--terracota);
  margin-top: 8px;
  flex-shrink: 0;
}
.feature-list b { color: var(--vinho); }
.feature-list span { color: var(--muted); font-size: 15px; }

/* ---------------------------------------------------------
   HISTÓRIA (fundadores)
--------------------------------------------------------- */
.story {
  background: var(--creme-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.story-inner {
  max-width: 680px;
  margin: 0 auto;
}
.story p {
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 18px;
}
.story .sign {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--terracota);
  font-size: 18px;
  margin-top: 26px;
}

/* ---------------------------------------------------------
   FOTO DE ESTILO DE VIDA (full-bleed)
--------------------------------------------------------- */
.lifestyle {
  position: relative;
}
.lifestyle img { width: 100%; height: auto; }
.lifestyle-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 24px 32px;
  background: linear-gradient(180deg, rgba(61,7,20,0) 0%, rgba(61,7,20,0.82) 100%);
  text-align: center;
}
.lifestyle-caption p {
  color: #FBEFE4;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 3vw, 26px);
  margin: 0;
}

/* ---------------------------------------------------------
   VÍDEO
--------------------------------------------------------- */
.video-section { text-align: center; }
.video-frame {
  position: relative;
  max-width: 300px;
  margin: 36px auto 0;
  border-radius: 34px;
  overflow: hidden;
  border: 8px solid var(--vinho-dark);
  box-shadow: 0 30px 60px -18px rgba(90,10,30,0.35);
}
.video-frame video { width: 100%; display: block; }

/* ---------------------------------------------------------
   GRID DE FUNCIONALIDADES
--------------------------------------------------------- */
.grid5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .grid5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .grid5 { grid-template-columns: 1fr; }
}
.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 18px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 18px 30px -14px rgba(90,10,30,0.25); }
.feat-icon {
  width: 52px; height: 52px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: #fff;
}
.feat-card h3 { font-size: 16px; margin-bottom: 6px; }
.feat-card p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ---------------------------------------------------------
   DIA 1 / CTA final
--------------------------------------------------------- */
.day1-banner img {
  width: 100%;
  border-radius: 0;
}

/* ---------------------------------------------------------
   PREÇO
--------------------------------------------------------- */
.price-card {
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(155deg, #fff, var(--creme-2));
  border: 1.5px solid var(--dourado);
  border-radius: 28px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 30px 60px -24px rgba(90,10,30,0.3);
}
.price-card .eyebrow { margin-bottom: 14px; }
.price-tag {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 56px;
  color: var(--vinho);
  margin: 6px 0 2px;
}
.price-tag sup { font-size: 22px; top: -22px; }
.price-period { color: var(--muted); font-size: 14px; margin-bottom: 26px; }

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
}
.price-list li::before {
  content: "✓";
  color: var(--terracota);
  font-weight: 700;
  flex-shrink: 0;
}

.guarantee {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ---------------------------------------------------------
   FAQ
--------------------------------------------------------- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--vinho);
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--terracota);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

/* ---------------------------------------------------------
   RODAPÉ
--------------------------------------------------------- */
footer {
  padding: 46px 0 60px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
footer img { height: 34px; margin: 0 auto 14px; opacity: 0.85; }

/* ---------------------------------------------------------
   SPARKLE DECORATIVO
--------------------------------------------------------- */
.sparkle {
  position: absolute;
  color: var(--dourado);
  font-size: 22px;
  animation: bob 4.5s ease-in-out infinite;
  opacity: 0.8;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(8deg); }
}

/* ---------------------------------------------------------
   MOTION / REVEAL
--------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wheel-slow, .sparkle { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn--primary:hover { transform: none; }
}
