*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #7c3aed;
  --color-primary-soft: #a855f7;
  --color-primary-dark: #5b21b6;
  --color-secondary: #ec4899;
  --color-bg: #050816;
  --color-bg-alt: #0b1020;
  --color-surface: #0f172a;
  --color-surface-soft: #111827;
  --color-text: #e5e7eb;
  --color-muted: #9ca3af;
  --color-border: #1f2937;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.65);
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-full: 999px;
  --transition-fast: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(129, 140, 248, 0.3), transparent 55%),
    radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.25), transparent 50%),
    var(--color-bg);
  line-height: 1.5;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section--alt {
  background-color: rgba(15, 23, 42, 0.7);
}

.section__header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 2.5rem;
}

.section__header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section__header p {
  color: var(--color-muted);
  font-size: 0.98rem;
}

/* Topbar */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 20, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(55, 65, 81, 0.7);
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.4rem;
  gap: 1rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.topbar__link {
  font-size: 0.92rem;
  color: var(--color-muted);
  text-decoration: none;
  position: relative;
}

.topbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  transition: width var(--transition-fast);
}

.topbar__link:hover {
  color: #f9fafb;
}

.topbar__link:hover::after {
  width: 100%;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  border: none;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #f9fafb;
  box-shadow: 0 18px 40px rgba(129, 140, 248, 0.55);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(129, 140, 248, 0.85);
}

.btn--secondary {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #f9fafb;
}

.btn--secondary:hover {
  border-color: var(--color-secondary);
  color: #fdf2f8;
  box-shadow: 0 18px 40px rgba(236, 72, 153, 0.55);
}

.btn--outline {
  background: transparent;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--color-muted);
}

.btn--outline:hover {
  border-color: var(--color-primary-soft);
  color: #f9fafb;
  background: rgba(129, 140, 248, 0.08);
}

.btn--small {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}

.hero__bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(129, 140, 248, 0.35), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.32), transparent 65%);
  opacity: 0.8;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.7rem;
  align-items: center;
}

.hero__text h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  max-width: 620px;
  margin-bottom: 1rem;
}

.hero__text h1 span {
  background: linear-gradient(135deg, #c4b5fd, #f9a8d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  color: var(--color-muted);
  max-width: 560px;
  margin-bottom: 1.2rem;
  font-size: 0.98rem;
}

.hero__bullets {
  list-style: none;
  margin-bottom: 1.4rem;
  color: #d1d5db;
  font-size: 0.93rem;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.hero__bullets li::before {
  content: "•";
  color: #f9a8d4;
  font-size: 1.2rem;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meta-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-full);
  background: radial-gradient(circle at 0% 0%, rgba(129, 140, 248, 0.25), transparent);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.85rem;
}

.meta-pill__label {
  color: var(--color-muted);
}

.meta-pill strong {
  font-size: 0.95rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.badge {
  background: rgba(15, 23, 42, 0.85);
  border-radius: var(--radius-full);
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.badge strong {
  font-size: 0.95rem;
}

/* Hero form */

.hero__form-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.hero__form-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.hero__form-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lead-form label {
  font-size: 0.85rem;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lead-form input,
.lead-form select {
  border-radius: 999px;
  border: 1px solid var(--color-border);
  padding: 0.6rem 0.9rem;
  font-size: 0.88rem;
  outline: none;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.lead-form input::placeholder,
.lead-form select::placeholder {
  color: #6b7280;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--color-primary-soft);
  background: #020617;
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.4);
}

.lead-form__note {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.form-status {
  margin-top: 0.6rem;
  font-size: 0.8rem;
}

.form-status--sending {
  color: #fbbf24;
}

.form-status--success {
  color: #22c55e;
}

.form-status--error {
  color: #fb7185;
}

/* Hero image */

/* Hero image como fundo da seção inteira */
.hero__image {
  position: absolute;
  inset: 0;              /* ocupa toda a área do .hero */
  max-width: none;       /* remove limite de 420px */
  opacity: 0.35;         /* ajusta a força da foto */
  pointer-events: none;
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* preenche toda a área sem distorcer */
  border-radius: 0;      /* fundo reto */
}



/* Trust strip */

.trust-strip {
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
  color: #e5e7eb;
  padding: 0.9rem 0;
}

.trust-strip__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.trust-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.86rem;
  color: var(--color-muted);
}

.trust-strip__items span::before {
  content: "• ";
  color: #a855f7;
}

/* Cards grid */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  background: rgba(15, 23, 42, 0.94);
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.card__content {
  padding: 1rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  height: 100%;
}

.card__content h3 {
  font-size: 1rem;
}

.card__content p {
  font-size: 0.9rem;
  color: var(--color-muted);
  flex: 1;
}

.cards-grid--results .card img {
  height: 180px;
}

.section__cta-center {
  margin-top: 2rem;
  text-align: center;
}

/* Dual grid */

.dual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.dual-grid__block {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.2rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(55, 65, 81, 0.95);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.dual-grid__block--accent {
  background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.4), rgba(15, 23, 42, 0.98));
  border-color: rgba(168, 85, 247, 0.9);
}

.dual-grid__block h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.icon-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.icon-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}

.icon-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #a855f7;
  font-size: 0.85rem;
}

/* Steps */

.section--steps {
  background: transparent;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.step {
  background: rgba(15, 23, 42, 0.94);
  border-radius: 1.1rem;
  padding: 1.2rem 1.1rem 1.4rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.step__number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(129, 140, 248, 0.25);
  color: #e5e7eb;
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Testimonials */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.testimonial {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 1.1rem;
  padding: 1.2rem 1.1rem 1.5rem;
  border: 1px solid rgba(55, 65, 81, 0.95);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.98);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
}

.testimonial__header h3 {
  font-size: 0.98rem;
}

.testimonial__header span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.testimonial__rating {
  font-size: 0.9rem;
}

.testimonial p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Who section */

.section--who {
  background: radial-gradient(circle at top, rgba(124, 58, 237, 0.16), transparent 55%);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.who-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.1rem;
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.95);
}

.who-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.who-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Location / Maps */

.location {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 1.8rem;
  align-items: stretch;
}

.location__text h2 {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}

.location__text p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.location__map {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.95);
  min-height: 260px;
}

/* CTA final */

.section--cta-final {
  background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.35), transparent 60%);
}

.section--cta-final__content {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 1.8rem;
  align-items: center;
}

.section--cta-final__content h2 {
  font-size: 1.9rem;
  margin-bottom: 0.7rem;
}

.section--cta-final__content p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.section--cta-final__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.section--cta-final__side {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 1.2rem;
  padding: 1.5rem 1.3rem;
  border: 1px solid rgba(55, 65, 81, 0.95);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 1);
  font-size: 0.92rem;
  color: var(--color-muted);
}

.section--cta-final__side strong {
  color: #e5e7eb;
}

/* Footer */

.footer {
  background: #020617;
  color: #9ca3af;
}

.footer__content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
  gap: 2rem;
  padding: 2.6rem 0 2rem;
}

.footer__logo {
  height: 34px;
  margin-bottom: 0.6rem;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.footer__column h3 {
  font-size: 0.94rem;
  color: #e5e7eb;
  margin-bottom: 0.5rem;
}

.footer__column ul {
  list-style: none;
  font-size: 0.86rem;
}

.footer__column li + li {
  margin-top: 0.2rem;
}

.footer__column a {
  text-decoration: none;
  color: #9ca3af;
}

.footer__column a:hover {
  color: #f9fafb;
}

.footer__bottom {
  border-top: 1px solid rgba(31, 41, 55, 0.98);
  padding: 0.9rem 0;
  font-size: 0.8rem;
}

.footer__bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer__link {
  color: #9ca3af;
  text-decoration: none;
}

.footer__link:hover {
  color: #f9fafb;
}

/* Responsivo */

@media (max-width: 1040px) {
  .hero__content {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .who-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section--cta-final__content,
  .location,
  .footer__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero__image {
    position: static;
    display: block;
    max-width: 100%;
    opacity: 1.35;      /* aumenta/diminui pra mais ou menos destaque */
    margin-top: 5.5rem; /* espaçamento abaixo do formulário */
  }

  .hero__image img {
    border-radius: 1.5rem;
  }
}

@media (max-width: 820px) {
  .hero__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.1rem;
  }

  .hero__text h1 {
    font-size: 2.2rem;
  }

  .cards-grid,
  .steps,
  .testimonials,
  .who-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar__nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.5rem 0;
  }

  .section__header h2 {
    font-size: 1.6rem;
  }

  .footer__columns {
    grid-template-columns: minmax(0, 1fr);
  }
}
