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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #faf5ff;
  color: #1f1235;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  color: #fff;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.topbar-whatsapp {
  background: #22c55e;
  color: #0f172a;
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.topbar-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15, 118, 110, 0.35);
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.1);
  color: #6d28d9;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: #2e1065;
}

.hero h1 span {
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
  margin-top: 0.35rem;
  color: #6d28d9;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #4c1d95;
}

.hero-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.hero-list li {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #f9f5ff;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(147, 51, 234, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(147, 51, 234, 0.45);
}

.hero-contact {
  font-size: 0.9rem;
}

.hero-contact a {
  color: #6d28d9;
  font-weight: 600;
  text-decoration: none;
}

.hero-contact a:hover {
  text-decoration: underline;
}

/* Hero image card */
.hero-image-card {
  background: radial-gradient(circle at top, #f5f3ff 0, #ede9fe 45%, #f9a8d4 120%);
  border-radius: 1.5rem;
  padding: 0.75rem;
  box-shadow: 0 18px 45px rgba(79, 70, 229, 0.22);
}

.hero-image-card img {
  width: 100%;
  display: block;
  border-radius: 1.25rem;
  object-fit: cover;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-alt {
  background: #f3e8ff;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: #2e1065;
}

.section-intro {
  max-width: 640px;
  margin-top: 0.25rem;
  margin-bottom: 1.75rem;
  color: #4c1d95;
}

.section p {
  margin-bottom: 0.75rem;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

/* Cards / highlights */
.highlight-card {
  background: linear-gradient(145deg, #faf5ff, #e9d5ff);
  border-radius: 1.2rem;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(129, 140, 248, 0.25);
  border: 1px solid rgba(129, 140, 248, 0.5);
}

.highlight-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #4c1d95;
}

.highlight-card ul {
  list-style: none;
  margin-top: 0.5rem;
}

.highlight-card li {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fdfcff;
  border-radius: 1.1rem;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 10px 30px rgba(148, 163, 184, 0.25);
  border: 1px solid rgba(196, 181, 253, 0.7);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #4c1d95;
}

.card p {
  font-size: 0.96rem;
}

/* Steps */
.steps-list {
  list-style: decimal;
  margin-left: 1.25rem;
  font-size: 0.98rem;
}

.steps-list li {
  margin-bottom: 0.7rem;
}

.steps-list strong {
  color: #4c1d95;
}

/* Testimonials */
.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial p {
  font-style: italic;
}

.testimonial span {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #4b5563;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.faq-item h3 {
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
  color: #4c1d95;
}

.faq-item p {
  font-size: 0.95rem;
}

/* CTA final */
.cta-final {
  text-align: center;
  background: radial-gradient(circle at top, #e9d5ff, #fdf2ff 50%, #f5d0fe);
}

.cta-content h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #2e1065;
}

.cta-content p {
  max-width: 640px;
  margin: 0 auto 1.25rem;
  color: #4c1d95;
}

.cta-phone {
  font-size: 0.96rem;
}

.cta-phone a {
  color: #6d28d9;
  text-decoration: none;
  font-weight: 600;
}

.cta-phone a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #1e1035;
  color: #e5e7eb;
  padding: 1.5rem 0;
  margin-top: 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.footer-dev span {
  font-weight: 600;
  color: #f9a8d4;
}

.footer-dev a {
  color: #a5b4fc;
  text-decoration: none;
}

.footer-dev a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .section-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h1 span {
    font-size: 1.35rem;
  }

  .hero-image-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .cards-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cards-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding: 2rem 0 2.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h1 span {
    font-size: 1.2rem;
  }

  .hero-badge {
    font-size: 0.78rem;
  }
}
