/* ===========================
   ÁGIA — Landing Page CSS
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --laranja: #FF6B00;
  --laranja-deep: #CC5500;
  --laranja-bg: #FFF0E6;
  --laranja-border: #FFD5B3;
  --dark: #1A1523;
  --gray: #6B6480;
  --border: #EDE8F5;
  --cream: #FDFCF9;
  --peach: #FFF7F2;
  --white: #fff;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font); background: var(--cream); color: var(--dark); overflow-x: hidden; }

/* ── Utilitários ── */
.laranja { color: var(--laranja); }
.bg-cream { background: var(--cream); }
.bg-peach { background: var(--peach); }
.bg-white { background: var(--white); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 720px; }

.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(26px, 4vw, 48px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.section-sub { font-size: 17px; color: var(--gray); margin-top: 12px; }

.badge {
  display: inline-block;
  background: var(--laranja-bg);
  color: var(--laranja);
  border: 1px solid var(--laranja-border);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ── Botões ── */
.btn-l, .btn-w, .btn-o {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  padding: 10px 22px;
  font-size: 14px;
}
.btn-l { background: var(--laranja); color: #fff; }
.btn-l:hover { background: var(--laranja-deep); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,0,0.35); }
.btn-w { background: #fff; color: var(--laranja); }
.btn-w:hover { background: #f5f5f5; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.btn-o { background: transparent; color: var(--dark); border: 1.5px solid var(--border); }
.btn-o:hover { background: var(--laranja); color: #fff; border-color: var(--laranja); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; }

/* ── Nav ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,252,249,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
#navbar.scrolled { border-bottom-color: rgba(237,232,245,0.8); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 10px; }
.nav-logo span { font-size: 22px; font-weight: 900; color: var(--laranja); letter-spacing: -0.03em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--laranja); }

.nav-actions { display: flex; gap: 10px; }

/* ── Hero ── */
.hero { padding: 140px 32px 40px; background: var(--cream); }
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  margin-top: 20px;
}
.hero-text p {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }

.hero-stores { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: #fff;
  border-radius: 12px;
  padding: 10px 18px;
  text-decoration: none;
  font-family: var(--font);
  transition: opacity 0.2s;
}
.store-btn:hover { opacity: 0.8; }
.store-btn-sm { border-radius: 10px; padding: 8px 14px; }
.store-label { font-size: 10px; opacity: 0.7; line-height: 1; }
.store-name { font-size: 14px; font-weight: 700; line-height: 1.3; }
.store-btn-sm .store-label { font-size: 9px; }
.store-btn-sm .store-name { font-size: 13px; }

.hero-checks { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-checks span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
}

.hero-img { display: flex; justify-content: center; }
.hero-img img { max-width: 100%; height: auto; display: block; }

/* ── Strip ── */
.strip { background: var(--laranja); padding: 18px 0; overflow: hidden; }

.strip-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
}
.strip-item {
  text-align: center;
  padding: 0 48px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.strip-item.last { border-right: none; }
.strip-n { font-size: 16px; font-weight: 800; color: #fff; }
.strip-l { font-size: 12px; color: rgba(255,255,255,0.85); margin-top: 3px; }

.strip-mobile { display: none; overflow: hidden; width: 100%; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 14s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track .strip-item { padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.3); }
.marquee-track .strip-n { font-size: 14px; }
.marquee-track .strip-l { font-size: 11px; margin-top: 2px; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Funcionalidades ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 2px 16px rgba(26,21,35,0.04);
  transition: all 0.25s;
  cursor: default;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(26,21,35,0.1);
  border-color: var(--laranja);
}
.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--laranja-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feat-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.feat-card p { font-size: 13.5px; color: var(--gray); line-height: 1.6; }

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step { text-align: center; }
.step-icon {
  width: 64px;
  height: 64px;
  background: var(--laranja);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--gray); line-height: 1.65; }

/* ── Depoimentos ── */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dep-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.dep-card:hover { border-color: var(--laranja); }
.stars { color: #FBBF24; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.dep-card p { font-size: 14.5px; color: var(--dark); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.dep-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--laranja);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.dep-author strong { display: block; font-size: 14px; font-weight: 700; }
.dep-author span { font-size: 12px; color: #9CA3AF; }

/* ── Preços ── */
.preco-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--laranja);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(255,107,0,0.3);
}
.preco-label { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.preco-valor { display: flex; align-items: flex-start; justify-content: center; gap: 4px; margin-bottom: 4px; }
.preco-rs { font-size: 20px; font-weight: 600; color: #fff; margin-top: 10px; }
.preco-num { font-size: 72px; font-weight: 900; color: #fff; letter-spacing: -0.04em; line-height: 1; }
.preco-cents { font-size: 40px; font-weight: 900; color: #fff; margin-top: 8px; }
.preco-periodo { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.preco-items { list-style: none; text-align: left; margin-bottom: 36px; }
.preco-items li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #fff;
}
.preco-items li::before {
  content: '';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.preco-obs { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 14px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.faq-item:hover, .faq-item.open { border-color: var(--laranja); }
.faq-item.open { background: var(--peach); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-q span { font-size: 15px; font-weight: 600; }
.faq-icon {
  font-size: 24px;
  color: var(--laranja);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 14.5px; color: var(--gray); margin-top: 14px; line-height: 1.65; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── CTA Final ── */
.cta-final {
  background: var(--laranja);
  padding: 100px 32px;
  text-align: center;
}
.cta-final .container { max-width: 800px; margin: 0 auto; }
.cta-logo { width: 72px; height: 72px; border-radius: 20px; margin-bottom: 28px; }
.cta-final h2 { font-size: clamp(28px, 4vw, 54px); font-weight: 900; color: #fff; letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.1; }
.cta-final p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 40px; }

/* ── Footer ── */
footer {
  background: #fff;
  border-top: 1px solid #EBEBEB;
  padding: 48px 32px 32px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--gray); line-height: 1.75; max-width: 280px; margin: 14px 0 24px; }
.footer-stores { display: flex; gap: 10px; flex-wrap: wrap; }

.footer-col-title { font-size: 13px; font-weight: 700; color: var(--laranja); margin-bottom: 16px; }
.footer-col a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--laranja); }

.footer-copy {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #EBEBEB;
  font-size: 13px;
  color: var(--gray);
}

/* ══════════════════════════════
   ANIMAÇÕES
   ══════════════════════════════ */

/* H1 — fade up elegante linha por linha */
@keyframes h1FadeUp {
  from { opacity: 0; transform: translateY(28px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
.hero-text h1 {
  animation: h1FadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Fade-in hero elementos */
.hero-fade {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeIn 0.7s ease forwards;
}
@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero image */
.hero-img-fade {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  animation: heroImgIn 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes heroImgIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Scroll reveal — estado inicial */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal com delay escalonado */
.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; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }
.reveal-delay-7 { transition-delay: 0.56s; }
.reveal-delay-8 { transition-delay: 0.64s; }

/* Cards feat — reveal individual */
.feat-card.reveal { transform: translateY(32px); }

/* Steps — reveal da esquerda */
.step.reveal { transform: translateX(-30px) translateY(20px); }
.step.visible { transform: translateX(0) translateY(0); }

/* Depoimentos — reveal da direita alternado */
.dep-card.reveal { transform: translateY(36px); }

/* Section headers */
.section-header.reveal { transform: translateY(30px); }

/* Badge pop */
.badge.reveal {
  opacity: 0;
  transform: scale(0.85) translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.badge.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Preço card — pop */
.preco-card.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.preco-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* CTA final */
.cta-final .container > * { opacity: 0; transform: translateY(20px); }
.cta-final.visible .container > *:nth-child(1) { animation: heroFadeIn 0.6s 0.1s ease forwards; }
.cta-final.visible .container > *:nth-child(2) { animation: heroFadeIn 0.6s 0.25s ease forwards; }
.cta-final.visible .container > *:nth-child(3) { animation: heroFadeIn 0.6s 0.4s ease forwards; }
.cta-final.visible .container > *:nth-child(4) { animation: heroFadeIn 0.6s 0.55s ease forwards; }

/* Strip — sempre visível, sem animação de salto */
.strip { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links { display: none; }

  .hero { padding: 100px 20px 40px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text p { max-width: 100%; }
  .hero-btns, .hero-stores, .hero-checks { justify-content: center; }

  .feat-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .strip-desktop { display: none; }
  .strip-mobile { display: block; }
}

@media (max-width: 520px) {
  .feat-grid { grid-template-columns: 1fr; }
  .nav-actions .btn-o { display: none; }
  .preco-card { padding: 36px 24px; }
}
