/* ============================================================
   SEÇÕES — Hero, Benefícios, Produtos, Passos, Sobre,
            Depoimentos, CTA
   ============================================================ */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(4.5rem, 9vw, 7rem);
  background:
    radial-gradient(55% 75% at 88% 8%, rgba(0, 0, 128, 0.5), transparent 62%),
    radial-gradient(45% 60% at 6% 95%, rgba(158, 42, 58, 0.32), transparent 60%),
    linear-gradient(165deg, #100b26 0%, var(--bg) 72%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__copy h1 {
  font-size: clamp(2.35rem, 5.2vw, 3.75rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.hero__copy > p {
  max-width: 34rem;
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__visual {
  position: relative;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  background: radial-gradient(closest-side, rgba(158, 42, 58, 0.28), transparent);
  filter: blur(30px);
  animation: orbFloat 9s ease-in-out infinite alternate;
}

.hero__card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.hero__card h2 {
  font-size: 1.35rem;
  margin: 1rem 0 0.4rem;
}

.hero__card p {
  color: var(--muted);
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(158, 42, 58, 0.4);
  color: #f0aab5;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero__pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--highlight);
  box-shadow: 0 0 10px var(--highlight);
}

/* ---------- Benefícios ---------- */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

.info-card {
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease-spring), border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(158, 42, 58, 0.5);
  box-shadow: var(--glow);
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(158, 42, 58, 0.3), rgba(255, 0, 0, 0.12));
  border: 1px solid rgba(158, 42, 58, 0.35);
  color: var(--highlight);
}

.icon-chip svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--muted);
  font-size: 0.97rem;
}

/* ---------- Produtos ---------- */
.product-grid {
  display: grid;
  gap: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-spring), border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(158, 42, 58, 0.55);
  box-shadow: var(--glow);
}

.product-card__media {
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-spring);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 1.2rem;
  padding-inline: 0.35rem;
}

.product-card p {
  flex-grow: 1;
  padding-inline: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-card__actions {
  display: flex;
  padding-inline: 0.35rem 0.35rem;
}

.product-card__actions .btn {
  flex: 1;
}

/* ---------- Como funciona ---------- */
.steps-grid {
  display: grid;
  gap: 1.25rem;
}

.step-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), border-color 0.35s ease;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--highlight), var(--accent));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(158, 42, 58, 0.5);
}

.step-card:hover::after {
  opacity: 1;
}

.step-card__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--highlight), var(--c-maroon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.9rem;
}

.step-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
}

.step-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Sobre + Estatísticas ---------- */
.about-section {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  margin: 0.9rem 0;
}

.about-content p {
  color: var(--muted);
  max-width: 32rem;
}

.stats-grid {
  display: grid;
  gap: 1.25rem;
}

.stat-card {
  padding: 1.6rem 1.25rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease-spring), border-color 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(158, 42, 58, 0.5);
}

.stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--highlight), var(--accent-hover));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Depoimentos ---------- */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 1.6rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease-spring), border-color 0.35s ease;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.35rem;
  right: 1.2rem;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--accent-soft);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(158, 42, 58, 0.5);
}

.testimonial-card > p {
  font-size: 1rem;
  color: var(--text);
}

.testimonial-card h3 {
  font-size: 1rem;
  color: #f0aab5;
}

.testimonial-card span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---------- CTA ---------- */
.cta-section {
  padding: clamp(3rem, 7vw, 5rem) 1.5rem;
  text-align: center;
  border-radius: calc(var(--radius-lg) + 8px);
  background:
    radial-gradient(70% 120% at 80% 0%, rgba(0, 0, 128, 0.55), transparent 60%),
    radial-gradient(50% 90% at 15% 100%, rgba(255, 0, 0, 0.18), transparent 60%),
    linear-gradient(150deg, var(--surface-2), var(--bg-soft));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
}

.cta-section h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  max-width: 22ch;
  margin: 0 auto 0.9rem;
}

.cta-section p {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto;
}

.cta-section .btn {
  margin-top: 2rem;
}
