@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400..700;1,9..40,400&family=Fraunces:ital,opsz,wght@0,9..144,500..800;1,9..144,500&display=swap");

:root {
  --bg: #faf9f7;
  --bg-elevated: #ffffff;
  --ink: #161412;
  --ink-soft: #4a4540;
  --muted: #7a736b;
  --line: rgba(22, 20, 18, 0.08);
  --gold: #d4a853;
  --gold-deep: #b8893a;
  --gold-glow: rgba(212, 168, 83, 0.35);
  --forest: #1e3d32;
  --forest-soft: #2d5a4a;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 20px rgba(22, 20, 18, 0.06);
  --shadow-md: 0 16px 48px rgba(22, 20, 18, 0.1);
  --shadow-lg: 0 28px 80px rgba(22, 20, 18, 0.14);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: var(--forest-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ink);
}

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

/* —— Animações globais —— */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 var(--gold-glow);
  }
  70% {
    box-shadow: 0 0 0 14px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* Marquee */
.marquee-wrap {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 0;
  overflow: hidden;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee-seg {
  flex: 0 0 auto;
  padding-right: 4rem;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* FAQ em fundo escuro */
.section-dark .faq-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section-dark .faq-q {
  color: #fff;
}

.section-dark .faq-q:hover {
  background: rgba(255, 255, 255, 0.08);
}

.section-dark .faq-a {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .faq-icon {
  background: rgba(212, 168, 83, 0.25);
  color: #f0d78c;
}

/* Top bar */
.top-bar {
  background: linear-gradient(90deg, var(--forest) 0%, #152a24 40%, var(--forest-soft) 100%);
  background-size: 200% auto;
  animation: shimmer 14s linear infinite;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.top-bar strong {
  color: #fff;
  font-weight: 600;
}

.top-bar .timer {
  font-variant-numeric: tabular-nums;
  margin-top: 6px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.logo:hover {
  color: var(--gold-deep);
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
  font-weight: 500;
}

.nav-main a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease-out);
}

.nav-main a:hover {
  color: var(--ink);
}

.nav-main a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #e8c56e 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: var(--ink);
  box-shadow: 0 8px 28px var(--gold-glow);
  animation: pulse-ring 3.5s ease-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(212, 168, 83, 0.45);
  color: var(--ink);
}

.btn-block {
  width: 100%;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
  animation: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
  animation: none;
}

.btn-secondary:hover {
  background: #2c2926;
  color: #fff;
  transform: translateY(-2px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Hero */
.hero {
  position: relative;
  padding: 56px 0 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 85%;
  background:
    radial-gradient(ellipse 70% 55% at 70% 0%, rgba(212, 168, 83, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 30%, rgba(30, 61, 50, 0.08), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
  padding: 8px 14px;
  background: var(--bg-elevated);
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--gold);
  letter-spacing: 1px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 34rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.price-current {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.price-rrp {
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
}

.save-pill {
  background: linear-gradient(135deg, #e8f4ef, #d4ebe0);
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
}

.hero-cta-wrap {
  margin-bottom: 18px;
}

.hero-note {
  font-size: 14px;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.55;
}

.hero-note a {
  font-weight: 600;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, #fff, #f3f0eb);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.hero-visual {
  animation: float-y 5.5s ease-in-out infinite;
}

.hero-media img {
  width: 100%;
  vertical-align: middle;
}

/* Badges row — sempre horizontal, texto normal */
.badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  padding: 22px 0 8px;
}

.badge-item {
  flex: 1 1 200px;
  max-width: 360px;
  min-width: 0;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s var(--ease-out),
    border-color 0.25s ease;
}

.badge-item:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 83, 0.45);
}

.badge-item strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 4px;
}

/* Sections */
.section {
  padding: 64px 0;
  position: relative;
}

.section-tight {
  padding: 48px 0;
}

.section-dark {
  background: linear-gradient(165deg, #1a2520 0%, #121c19 100%);
  color: rgba(255, 255, 255, 0.88);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  text-align: center;
  margin: 0 0 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-dark .section-title {
  color: #fff;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: 1.05rem;
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.benefit-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
  line-height: 1;
}

.benefit-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: var(--ink);
}

.benefit-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* Split — corrigir texto “vertical”: minmax(0) + prosa legível */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

@media (max-width: 880px) {
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  min-width: 0;
}

.split-media img {
  width: 100%;
}

.split-copy {
  min-width: 0;
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  margin: 0 0 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}

.section-dark .split-copy h2 {
  color: #fff;
}

.prose {
  max-width: 38rem;
}

.prose p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.section-dark .prose p {
  color: rgba(255, 255, 255, 0.78);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose-small {
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.section-dark .prose-small {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Bento mosaic */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 14px;
}

.bento-cell {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 0;
  min-width: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.bento-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.bento-cell:hover img {
  transform: scale(1.04);
}

.bento-a {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 280px;
}

.bento-b {
  grid-column: span 5;
  grid-row: span 1;
  min-height: 160px;
}

.bento-c {
  grid-column: span 5;
  grid-row: span 1;
  min-height: 160px;
}

.bento-d {
  grid-column: span 12;
  grid-row: span 1;
  min-height: 200px;
}

@media (max-width: 768px) {
  .bento-a,
  .bento-b,
  .bento-c,
  .bento-d {
    grid-column: span 12;
    grid-row: span 1;
    min-height: 220px;
  }
}

.bento-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.section-dark .bento-label {
  background: rgba(22, 20, 18, 0.75);
  color: #fff;
}

/* Lifestyle strip */
.lifestyle-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .lifestyle-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .lifestyle-strip {
    grid-template-columns: 1fr;
  }
}

.lifestyle-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.lifestyle-card:hover img {
  transform: scale(1.06);
}

.lifestyle-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
}

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.check-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4ebe0, #b8dcc8);
}

.check-list li::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 800;
  color: var(--forest);
}

/* Specs */
.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.spec-table th,
.spec-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.spec-table th {
  width: 38%;
  background: rgba(250, 249, 247, 0.9);
  font-weight: 600;
  color: var(--muted);
  font-size: 14px;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  background: var(--bg-elevated);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  color: var(--ink);
}

.faq-q:hover {
  background: rgba(250, 249, 247, 0.8);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.2);
  color: var(--gold-deep);
  font-size: 1.2rem;
  transition: transform 0.3s var(--ease-out);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.is-open .faq-a {
  display: block;
}

/* Reviews simplified */
.rating-hero {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(180deg, var(--bg-elevated), #f5f2ed);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  max-width: 520px;
  margin: 0 auto 28px;
}

.rating-hero .big {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.rating-hero .sub {
  margin-top: 10px;
  font-size: 16px;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 56px 22px;
  background: linear-gradient(145deg, #1e3d32 0%, #15221d 50%, #0f1815 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212, 168, 83, 0.15), transparent 45%);
  pointer-events: none;
}

.cta-band .wrap {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin: 0 0 12px;
  font-weight: 600;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* Footer */
.site-footer {
  background: #0c0f0e;
  color: #8a8580;
  padding: 44px 0 32px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 22px;
}

.footer-links a {
  color: #c9c4be;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  text-align: center;
  font-size: 15px;
  margin: 0;
  padding-top: 8px;
}

.footer-contact a {
  color: #e8dfd4;
  text-decoration: none;
  font-weight: 500;
}

.footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Legal pages */
.page-hero {
  padding: 40px 0 28px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 8px;
  color: var(--ink);
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 22px 72px;
}

.page-content h2 {
  font-size: 1.2rem;
  margin-top: 28px;
  color: var(--ink);
}

.page-content h2:first-child {
  margin-top: 0;
}

.disclaimer-box {
  background: #fff8ec;
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 15px;
  margin: 24px 0;
}

.contact-box {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}

.contact-box dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.contact-box dt {
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-box dd {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}
