/* ============ TOKENS ============ */
:root {
  --pink: #ec4899;
  --pink-dark: #db2777;
  --pink-light: #fce7f3;
  --pink-bg: #fdf2f8;
  --green: #22c55e;
  --green-dark: #16a34a;
  --text: #1f2937;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --border: #f3e8ee;
  --shadow-sm: 0 4px 14px rgba(236, 72, 153, 0.12);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(236, 72, 153, 0.2);
  --radius: 14px;
  --radius-lg: 28px;
}

/* ============ BASE ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, var(--pink-bg) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.accent { color: var(--pink); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 999px;
  cursor: pointer; border: none; transition: all .2s ease;
  text-align: center; letter-spacing: .3px;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 38px; font-size: 16px; }
.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: var(--pink-dark); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
}
.logo img { height: 42px; }

/* ============ HERO ============ */
.hero { padding: 60px 0 80px; text-align: center; }
.hero-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.hero-illustration img {
  width: 180px; height: 180px; object-fit: cover;
  border-radius: 50%; background: #fff;
  box-shadow: 0 12px 40px rgba(236,72,153,.18);
  padding: 8px;
}
.pill {
  background: var(--pink-light); color: var(--pink-dark);
  padding: 8px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
}
.hero-title {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 800; line-height: 1.1;
  color: #1f2937; letter-spacing: -1px;
}
.hero-title .accent { display: block; margin-top: 6px; }
.hero-sub { font-size: clamp(15px, 2vw, 18px); color: var(--text-muted); }
.hero-sub strong { font-weight: 700; }
.hero-note { font-size: 13px; color: var(--text-muted); margin-top: -4px; }

/* ============ SECTIONS ============ */
section { padding: 80px 0; }
.section-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  text-align: center; margin-bottom: 12px; letter-spacing: -.5px;
}
.section-sub {
  text-align: center; color: var(--text-muted);
  max-width: 640px; margin: 0 auto 50px; font-size: 16px;
}
.eyebrow {
  display: inline-block; color: var(--pink);
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ============ ABOUT ============ */
.about { background: #fff; padding: 48px 0; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-text h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 10px; line-height: 1.25; }
.about-text > p { color: var(--text-muted); margin-bottom: 18px; font-size: 15px; line-height: 1.55; }
.stats {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; margin-bottom: 20px;
}
.stats div {
  flex: 1 1 0; text-align: center;
  padding: 0; background: transparent; border-radius: 0;
}
.stat-icon {
  display: block; font-size: 18px; color: var(--pink);
  margin-bottom: 6px;
}
.stats strong { display: block; font-size: 18px; color: var(--pink); font-weight: 800; margin-bottom: 2px; }
.stats span { display: block; font-size: 12px; color: var(--text-muted); line-height: 1.3; }
.btn-about {
  display: flex;
  margin: 0 auto;
  width: clamp(200px, 60%, 240px);
  height: 44px;
  font-size: 13px;
}

/* ============ KEY ALVES ============ */
.key-alves { background: linear-gradient(135deg, var(--pink-bg) 0%, #fff 100%); }
.key-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: center;
}
.key-photo { position: relative; text-align: center; }
.key-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.key-caption {
  display: block; margin-top: 14px;
  font-weight: 700; color: var(--text);
}
.key-caption small { font-weight: 400; color: var(--text-muted); }
.key-text h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 18px; line-height: 1.2; }
.key-followers {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; padding: 14px 22px; border-radius: 999px;
  box-shadow: var(--shadow-sm); margin-bottom: 18px;
}
.key-followers strong { color: var(--pink); font-size: 26px; font-weight: 800; }
.key-text p { color: var(--text-muted); margin-bottom: 20px; }
.check-list { list-style: none; }
.check-list li {
  position: relative; padding-left: 30px; margin-bottom: 10px;
  color: var(--text); font-weight: 500;
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; background: var(--pink); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}

/* ============ TESTIMONIALS ============ */
.testimonials { background: #fff; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.testi-card {
  background: #fff; border-radius: var(--radius-lg);
  text-align: center; transition: transform .3s ease;
  border: 1px solid var(--border);
  border-top: 4px solid var(--pink);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-video { width: 100%; background: #000; }
.testi-video video {
  width: 100%; height: auto; display: block;
  aspect-ratio: 9 / 16; object-fit: cover;
}
.testi-body { padding: 22px 24px 26px; }
.testi-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.testi-card .loc { display: block; color: var(--text-muted); font-size: 13px; margin-bottom: 18px; }

/* ============ WHY ============ */
.why { background: linear-gradient(135deg, #fff 0%, var(--pink-bg) 100%); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-bottom: 48px;
}
.why-card {
  background: #fff; padding: 32px 24px; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.why-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: var(--pink-light); border-radius: 50%;
  display: grid; place-items: center; font-size: 28px;
}
.why-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: 14px; }
.why-cta {
  text-align: center; background: #fff; padding: 36px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  max-width: 720px; margin: 0 auto;
}
.why-cta p { margin-bottom: 20px; font-size: 17px; }

/* ============ STEPS ============ */
.steps { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card {
  background: var(--pink-bg); padding: 36px 28px; border-radius: var(--radius-lg);
  position: relative; border: 1px solid var(--border);
}
.step-num {
  width: 48px; height: 48px; background: var(--pink); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 22px; font-weight: 800; margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.step-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.step-card p { color: var(--text-muted); font-size: 14px; }

/* ============ FAQ ============ */
.faq { background: linear-gradient(180deg, var(--pink-bg) 0%, #fff 100%); }
.faq-list { max-width: 780px; margin: 0 auto 40px; display: grid; gap: 14px; }
.faq-list details {
  background: #fff; padding: 22px 26px; border-radius: var(--radius);
  border: 1px solid var(--border); transition: all .2s ease;
}
.faq-list details[open] { box-shadow: var(--shadow-sm); }
.faq-list summary {
  font-weight: 600; font-size: 16px; cursor: pointer;
  list-style: none; position: relative; padding-right: 30px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 0; top: -2px;
  font-size: 24px; color: var(--pink); font-weight: 300;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin-top: 14px; color: var(--text-muted); }
.faq-cta { text-align: center; }
.faq-cta p { margin-bottom: 18px; color: var(--text-muted); }

/* ============ FINAL CTA ============ */
.final-cta {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: #fff; text-align: center;
}
.final-cta h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin-bottom: 14px; }
.final-cta p { font-size: 17px; margin-bottom: 28px; opacity: .95; }
.final-cta .accent { color: #fff8dc; }

/* ============ FOOTER ============ */
.site-footer { background: #1a1a1a; color: #cbd5e1; padding: 50px 0 20px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; margin-bottom: 30px;
}
.footer-logo { height: 40px; margin-bottom: 14px; background: #fff; padding: 6px 10px; border-radius: 6px; }
.footer-cnpj { font-size: 12px; color: #94a3b8; line-height: 1.6; }
.site-footer h4 { color: #fff; font-size: 14px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid #333; padding-top: 20px;
  text-align: center; font-size: 12px; color: #94a3b8;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  section { padding: 60px 0; }
  .about-inner, .key-inner { grid-template-columns: 1fr; gap: 36px; }
  .key-photo { order: -1; }
  .testi-grid, .why-grid, .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 40px 0 60px; }
  .hero-illustration img { width: 140px; height: 140px; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .header-inner .btn { padding: 8px 14px; font-size: 12px; }
  .logo img { height: 34px; }
}

/* ============ Mobile overflow safety ============ */
html, body { overflow-x: hidden; max-width: 100%; }
* { box-sizing: border-box; }
