/* Estilos base - CORES CROCHÊ */
:root {
  /* Paleta amarelo palha crochê */
  --bg: #fef7e0;
  --card: #ffffff;
  --muted: #8b7355;
  --text: #2d1b0e;
  --brand: #d4a574;
  --brand-2: #b8860b;
  --accent: #daa520;
  --success: #8b7355;
  --gradient-1: linear-gradient(135deg, #d4a574, #b8860b);
  --gradient-2: linear-gradient(135deg, #b8860b, #daa520);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: radial-gradient(ellipse at top, rgba(212, 165, 116, 0.08), transparent),
              radial-gradient(ellipse at bottom, rgba(218, 165, 32, 0.05), transparent),
              var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-weight: 400;
}

/* Ticker topo */
.ticker { position: sticky; top: 0; z-index: 60; background: #d4a574; color: #ffffff; border-bottom: 1px solid rgba(0,0,0,.06); overflow: hidden; }
.ticker-track { display: inline-flex; gap: 32px; padding: 6px 12px; white-space: nowrap; animation: tickerMove 20s linear infinite; font-weight: 800; letter-spacing: .02em; }
.ticker-item { opacity: .95; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-10%); } }

.container {
  width: 100%;
  max-width: 480px; /* mobile-only */
  padding: 0 16px;
  margin: 0 auto;
  text-align: center;
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 12px; padding: 10px 16px; text-decoration: none; font-weight: 600; border: 1px solid transparent; }
.btn-primary { background: #daa520; color: #ffffff; box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4); border: none; }
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost { color: var(--text); border-color: rgba(218, 165, 32, 0.3); background: transparent; }
.btn-ghost:hover { border-color: rgba(218, 165, 32, 0.6); background: rgba(218, 165, 32, 0.05); }
.btn-lg { padding: 14px 22px; border-radius: 14px; }
.btn-xl { padding: 18px 26px; border-radius: 16px; font-size: 18px; }

/* Layout */
.hero { padding: 5px 0 4px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 4px; align-items: center; }
.hero h1 { font-size: 28px; line-height: 1.2; margin: 0 0 2px; font-weight: 800; }
.hero h1:nth-of-type(2) { color: #b8860b; }
.hero h1.text-smaller { font-size: 22px; }
.cta-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 2px 0 2px; }

section { padding: 5px 0; }
h2 { font-size: 24px; margin: 0 0 12px; font-weight: 700; }
h3 { font-size: 20px; margin: 0 0 8px; font-weight: 600; }

/* Typography */
.lead { font-size: 16px; color: var(--muted); margin: 0 0 16px; line-height: 1.6; }
.sub { font-size: 14px; color: var(--muted); margin: 0 0 12px; }
.eyebrow { color: #b8860b; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 8px; }
.eyebrow-after { margin-top: 8px; }

/* Trust indicators */
.trust { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; }
.trust-row { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: var(--muted); margin-top: 8px; }
.dot { width: 4px; height: 4px; background: var(--muted); border-radius: 50%; }

/* Cards */
.card { background: var(--card); border-radius: 16px; padding: 20px; box-shadow: 0 4px 20px rgba(212, 165, 116, 0.1); border: 1px solid rgba(212, 165, 116, 0.1); }

/* Carousel */
.carousel-container { width: 100%; overflow: hidden; margin: 12px 0; position: relative; }
.carousel-track { display: flex; gap: 16px; transition: transform 0.1s linear; }
.carousel-item { flex-shrink: 0; width: 160px; height: 240px; border-radius: 8px; box-shadow: 0 6px 16px rgba(212, 165, 116, 0.4); transition: transform 0.3s ease; }
.story-img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 8px; }
/* vídeo no carrossel com a mesma aparência */
.story-video { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 8px; background: #000; }

/* Video container */
.video-container { 
  width: 100%; 
  margin: 20px 0; 
  position: relative; 
  background: transparent;
  border: none;
  outline: none;
}
.video-container iframe { 
  width: 100%; 
  height: 250px; 
  border: none;
  outline: none;
  background: transparent;
  display: block;
}
@media (min-width: 480px) {
  .video-container iframe { height: 400px; }
}

/* Social proof carousel */
.proof-carousel { position: relative; margin-top: 6px; }
.proof-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.proof-track::-webkit-scrollbar { display: none; }
.proof-slide { scroll-snap-align: start; display: grid; place-items: center; }
.proof-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(212, 165, 116, 0.15);
  box-shadow: 0 6px 16px rgba(212, 165, 116, 0.12);
}
.proof-dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.proof-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(212, 165, 116, 0.35); }
.proof-dot.active { background: #d4a574; }

/* Info boxes */
.info-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 16px; }
.info-box { background: var(--card); border-radius: 16px; padding: 20px; box-shadow: 0 4px 20px rgba(212, 165, 116, 0.1); border: 1px solid rgba(212, 165, 116, 0.1); }
.box-title { color: #b8860b; font-weight: 700; margin-bottom: 12px; }

/* Check lists */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 24px; margin-bottom: 8px; font-size: 14px; line-height: 1.5; }
.check-list li:before { content: '✓'; position: absolute; left: 0; top: 0; color: #d4a574; font-weight: bold; background: rgba(212, 165, 116, 0.1); width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; }

/* Features list */
.features { list-style: none; padding: 0; margin: 0; }
.features li { position: relative; padding-left: 24px; margin-bottom: 12px; font-size: 16px; line-height: 1.5; border-left: 2px solid rgba(212, 165, 116, 0.2); padding-left: 20px; }
.features li:before { content: '✓'; position: absolute; left: -8px; top: 0; color: #d4a574; font-weight: bold; background: rgba(212, 165, 116, 0.1); width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; }

/* Pricing */
.pricing { background: var(--card); border-radius: 20px; padding: 24px; margin: 20px 0; box-shadow: 0 8px 32px rgba(212, 165, 116, 0.15); border: 1px solid rgba(212, 165, 116, 0.1); }
.price-wrap { max-width: 400px; margin: 0 auto; }
.price-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.price-badge { background: #d4a574; color: white; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.price-amount { font-size: 32px; font-weight: 800; color: #b8860b; margin-bottom: 8px; }
.price-amount small { font-size: 16px; color: var(--muted); font-weight: 500; }
.installments { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.bullets { list-style: none; padding: 0; margin: 16px 0; }
.bullets li { padding: 8px 0; border-bottom: 1px solid rgba(212, 165, 116, 0.1); font-size: 14px; }
.bullets li:last-child { border-bottom: none; }
.guarantee { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* FAQ */
.faq { margin: 20px 0; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.item { background: var(--card); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(212, 165, 116, 0.1); border: 1px solid rgba(212, 165, 116, 0.1); }
.question { width: 100%; padding: 16px; background: none; border: none; text-align: left; font-size: 16px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.question:hover { background: rgba(212, 165, 116, 0.05); }
.icon { font-size: 20px; color: #b8860b; transition: transform 0.2s; }
.question[aria-expanded="true"] .icon { transform: rotate(45deg); }
.answer { padding: 0 16px 16px; font-size: 14px; line-height: 1.6; color: var(--muted); }

/* Footer */
.site-footer { background: var(--card); border-top: 1px solid rgba(212, 165, 116, 0.1); margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 20px; padding: 24px 0; }
.foot-brand { font-size: 18px; font-weight: 700; color: #b8860b; }
.disclaimer { font-size: 12px; color: var(--muted); line-height: 1.5; }
.copyright { background: rgba(212, 165, 116, 0.05); padding: 12px 0; font-size: 12px; color: var(--muted); text-align: center; }

/* Responsive */
@media (min-width: 480px) {
  .container { max-width: 480px; }
  .hero h1 { font-size: 32px; }
  .hero h1.text-smaller { font-size: 24px; }
  h2 { font-size: 28px; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .carousel-item { width: 180px; height: 270px; }
}

