* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: #1a1a1a; background: #f5f6fa; line-height: 1.5; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* HEADER / HERO */
.hero {
  background: #3a4cff;
  color: #fff;
  border-radius: 16px;
  padding: 24px 5% 48px;
  margin: 16px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 32px;
  max-width: 1100px;
  padding-top: 8px;
}
.logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav ul { display: flex; gap: 32px; list-style: none; font-size: 15px; }
.nav a { opacity: 0.85; padding-bottom: 6px; }
.nav a.active { opacity: 1; border-bottom: 3px solid #ffd84d; font-weight: 600; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 420px;
  line-height: 1.6;
}
.stores { display: flex; gap: 12px; flex-wrap: wrap; }
.stores img { height: 52px; width: auto; }

.hero-visual {
  position: relative;
  height: 380px;
}
.phones-group {
  position: absolute;
  height: 380px;
  width: auto;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.25));
}
.emoji {
  position: absolute;
  font-size: 38px;
  z-index: 4;
}
.emoji-sun { right: 0; top: 70px; }
.emoji-lol { left: 38%; bottom: 0; }

/* SECTIONS */
section { padding: 64px 5%; max-width: 1100px; margin: 0 auto; }
.eyebrow {
  color: #3a4cff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  margin-bottom: 8px;
}
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: center;
}
.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  object-fit: contain;
}
.step h3 { font-size: 15px; margin-bottom: 8px; }
.step p { font-size: 13px; color: #666; }

/* TESTIMONIAL */
.testimonial {
  background: #3a4cff;
  color: #fff;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  position: relative;
}
.quote-mark {
  font-size: 60px;
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.9;
}
.testimonial .quotes {
  display: flex;
  justify-content: space-between;
  margin-bottom: -20px;
}
.testimonial-text {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 24px;
}
.testimonial-author { font-weight: 700; margin-bottom: 24px; }
.testimonial-nav {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.testimonial-nav span { cursor: pointer; opacity: 0.9; }

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.faq-side .eyebrow { text-align: left; }
.faq-side h2 { font-size: 22px; margin-bottom: 20px; }
.faq-side .question-img { max-width: 180px; margin-bottom: 16px; }
.faq-side .email-label { font-size: 12px; color: #666; margin-bottom: 4px; }
.faq-side .email { font-size: 13px; margin-bottom: 16px; }
.faq-side .social-label { font-size: 12px; color: #666; margin-bottom: 8px; }
.socials { display: flex; gap: 8px; }
.social-icon {
  width: 32px;
  height: 32px;
  background: #3a4cff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
}
.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "+";
  color: #3a4cff;
  font-weight: 700;
  font-size: 18px;
}
.faq-item[open] summary::before { content: "−"; }
.faq-item .answer {
  margin-top: 12px;
  font-size: 13px;
  color: #666;
  padding-left: 24px;
}

/* FOOTER CTA */
.footer-cta {
  background: #3a4cff;
  color: #fff;
  border-radius: 16px;
  margin: 0 5% 32px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1100px;
}
@media (min-width: 1100px) {
  .footer-cta { margin-left: auto; margin-right: auto; }
}
.footer-cta h2 { font-size: 22px; max-width: 400px; }
.footer-cta .stores { flex-direction: column; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .hero-visual { height: 320px; }
  .phones-group { height: 300px; }
  .nav ul { gap: 16px; font-size: 13px; }
  .steps { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .section-title { font-size: 22px; }
  .footer-cta { flex-direction: column; text-align: center; }
  .footer-cta .stores { flex-direction: row; justify-content: center; }

  /* Garantir que qualquer .stores no mobile fique horizontal */
  .stores { flex-direction: row; justify-content: center; }
}
