/*
Theme Name: ImgBot Híbrido
Theme URI: https://imgbot.com.br
Author: Allison & Jarvis
Author URI: https://imgbot.com.br
Description: Tema híbrido focado em serviços de tecnologia e venda de serviços, estilo bigtech.
Version: 1.0
Text Domain: imgbot-hibrido
*/

:root {
  --bg-body: #020617;
  --bg-section: #020617;
  --bg-elevated: #020617;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.12);
  --accent-strong: #0ea5e9;
  --accent-gradient: linear-gradient(135deg, #0ea5e9, #6366f1, #f97316);
  --text-main: #e5e7eb;
  --text-muted: #94a3b8;
  --text-strong: #f9fafb;
  --danger: #f97373;
  --success: #22c55e;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.7);
  --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.65);
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1120 0, #020617 45%, #020617 100%);
  color: var(--text-main);
  line-height: 1.6;
}

/* UTILIDADES BÁSICAS */

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.section {
  padding: 5rem 0 4rem;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.15), rgba(15, 23, 42, 0.9));
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-title {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-strong);
}

.section-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* HEADER + NAV */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(18px);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.07), rgba(15, 23, 42, 0.96));
}

.header-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  display: block;
  max-height: 40px;
  width: auto;
}

.site-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.site-title-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-strong);
}

.site-tagline {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* NAV MENU */

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-nav .menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.primary-nav .menu-item a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.18s ease;
}

.primary-nav .menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-gradient);
  transition: width 0.22s ease;
}

.primary-nav .menu-item a:hover {
  color: var(--text-strong);
}

.primary-nav .menu-item a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.28), rgba(15, 23, 42, 0.95));
  font-size: 0.85rem;
  color: var(--text-strong);
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9), var(--shadow-subtle);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.22s ease, border-color 0.22s ease;
}

.nav-cta span {
  font-size: 0.75rem;
  color: #e0f2fe;
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(56, 189, 248, 0.9);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.4), rgba(15, 23, 42, 0.98));
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5), var(--shadow-soft);
}

/* BOTÃO MOBILE */

.menu-toggle {
  display: none;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  color: var(--text-main);
  font-size: 0.8rem;
  align-items: center;
  gap: 0.35rem;
}

.menu-toggle-icon {
  display: inline-block;
  width: 16px;
  height: 12px;
  position: relative;
}

.menu-toggle-icon span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease, bottom 0.18s ease;
}

.menu-toggle-icon span:nth-child(1) {
  top: 0;
}

.menu-toggle-icon span:nth-child(2) {
  top: 5px;
}

.menu-toggle-icon span:nth-child(3) {
  bottom: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
  bottom: 5px;
  transform: rotate(-45deg);
}

/* HERO */

.hero {
  padding: 4.5rem 0 4.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 55%),
    radial-gradient(circle at top right, rgba(129, 140, 248, 0.16), transparent 55%),
    radial-gradient(circle at bottom, #020617, #020617 70%, #000 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.75);
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-title {
  margin: 1.1rem 0 0.75rem;
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.hero-title span {
  background-image: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background-image: var(--accent-gradient);
  color: #0b1220;
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(30, 64, 175, 0.9);
}

.btn-outline {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(148, 163, 184, 0.9);
  transform: translateY(-1px);
  box-shadow: var(--shadow-subtle);
}

.hero-metrics {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.metric-card {
  flex: 1 1 120px;
  min-width: 120px;
  max-width: 180px;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.99));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-subtle);
}

.metric-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 0.35rem;
}

.metric-value {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-strong);
}

.metric-tag {
  font-size: 0.72rem;
  margin-top: 0.15rem;
  color: #a5b4fc;
}

/* HERO VISUAL */

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.55);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), rgba(15, 23, 42, 0.98)),
    radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.18), rgba(15, 23, 42, 0.98));
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow-soft);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.hero-card-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-strong);
}

.hero-card-badge {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--accent);
}

.hero-card-body {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(30, 64, 175, 0.8);
  padding: 0.7rem;
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.4rem;
  border-radius: 0.75rem;
}

.hero-card-row + .hero-card-row {
  margin-top: 0.3rem;
}

.hero-card-row:nth-child(1) {
  background: radial-gradient(circle at left, rgba(34, 197, 94, 0.22), transparent);
}

.hero-card-row:nth-child(2) {
  background: radial-gradient(circle at left, rgba(56, 189, 248, 0.22), transparent);
}

.hero-card-row:nth-child(3) {
  background: radial-gradient(circle at left, rgba(249, 115, 22, 0.22), transparent);
}

.hero-card-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-card-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-strong);
}

/* SEÇÃO SERVIÇOS / CATEGORIAS */

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

.card {
  position: relative;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5b4fc;
  margin-bottom: 0.4rem;
}

.card-title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-strong);
}

.card-text {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.card-tag {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.7rem;
  color: #cbd5f5;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* COMO FUNCIONA */

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

.step-card {
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.77rem;
  color: #e0f2fe;
  margin-bottom: 0.5rem;
}

.step-title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--text-strong);
}

.step-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* PLANOS */

.section-plans {
  padding-top: 4.5rem;
}

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

.plan-card {
  position: relative;
  padding: 1.6rem 1.6rem 1.5rem;
  border-radius: 28px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.99));
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
}

.plan-card.highlight {
  border-color: rgba(56, 189, 248, 0.8);
  box-shadow: 0 24px 60px rgba(30, 64, 175, 0.8);
}

.plan-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5b4fc;
}

.plan-name {
  margin: 0.4rem 0 0.3rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-strong);
}

.plan-desc {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-price {
  margin: 0.2rem 0 0.1rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-strong);
}

.plan-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.plan-benefits {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-benefits li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  margin-bottom: 0.35rem;
}

.plan-benefits li::before {
  content: "✓";
  font-size: 0.75rem;
  margin-top: 0.1rem;
  color: #4ade80;
}

/* CTA FINAL / CONTATO */

.section-cta {
  padding-bottom: 5rem;
}

.cta-card {
  border-radius: 32px;
  padding: 2.3rem 2rem;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.3), transparent 55%),
    radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.45), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: center;
}

.cta-title {
  margin: 0 0 0.6rem;
  font-size: 1.6rem;
  color: var(--text-strong);
}

.cta-text {
  margin: 0 0 1.2rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: #e0f2fe;
}

.cta-badge {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  background: rgba(15, 23, 42, 0.75);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* FAQ */

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

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.96);
  padding: 1rem 1rem;
}

.faq-question {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-strong);
  margin-bottom: 0.35rem;
}

.faq-answer {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.6rem 0 1.8rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), #020617);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: var(--text-strong);
}

/* RESPONSIVO */

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

  .hero-visual {
    order: -1;
  }

  .cta-card {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 768px) {
  .header-inner {
    height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: calc(var(--nav-height) - 6px);
    left: 0;
    right: 0;
    padding: 0.75rem 1.5rem 1rem;
    background: rgba(15, 23, 42, 0.97);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    display: none;
    flex-direction: column;
    gap: 0.9rem;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .section {
    padding: 3.5rem 0 3rem;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .hero-metrics {
    flex-direction: column;
  }
}
/* GRIDS ESPECÍFICOS DE PACKS E PLANOS DE MÍDIA */

.packs-section,
.media-section {
  margin-top: 2.5rem;
}

.packs-header,
.media-header {
  margin-bottom: 1.7rem;
}

.packs-grid,
.media-grid {
  display: grid;
  gap: 1.5rem;
}

/* 4 cards na linha para packs de criativos (desktop) */
.packs-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* 2 cards na linha para planos de mídia (desktop) */
.media-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .packs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .packs-grid,
  .media-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* Esconder título/texto ao lado da logo no header */
.site-brand-text {
  display: none;
}
.site-brand-text,
.site-title-text,
.site-tagline {
  display: none !important;
}
/* Centralizar os 3 cards de métricas no mobile */
@media (max-width: 768px) {
  .hero-metrics {
    flex-direction: column;
    align-items: center; /* centraliza horizontalmente */
  }

  .metric-card {
    width: 100%;
    max-width: 260px;   /* largura máxima do card */
  }
}
/* Ilustração da seção "O que a ImgBot faz por você" */
.section-illustration-servicos {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.section-illustration-servicos img {
  width: 100%;
  max-width: 720px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  display: block;
}
/* Centralizar ilustração da seção "O que a ImgBot faz por você" em todas as telas */
.section-illustration-servicos {
  width: 100%;
  margin: 0 auto 2rem auto;
  display: flex;
  justify-content: center;   /* centraliza no desktop */
  align-items: center;
  text-align: center;
}

.section-illustration-servicos img {
  display: block;
  width: 100%;
  max-width: 720px;          /* controla o tamanho máximo no desktop */
  margin: 0 auto;            /* garante centralizado */
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
}
/* Ilustração no topo da seção "Fluxo de contratação" – mobile e desktop sem frestas */
#como-funciona .container::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 2rem auto;

  /* controla o “tamanho do retângulo” */
  aspect-ratio: 16 / 9;
  height: auto;

  background-image: url("https://imgbot.com.br/wp-content/uploads/2025/12/como-funciona-3-entrega.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; /* preenche tudo, sem sobrar lado */

  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
}

/* No desktop deixamos um pouco mais estreito, mas com o mesmo comportamento */
@media (min-width: 1024px) {
  #como-funciona .container::before {
    max-width: 640px;
  }
}
/* PROVAS REAIS / PERFIS MODELO */

.section-provas {
  position: relative;
}

.section-provas .proofs-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* desktop: 3 cards por linha */
@media (min-width: 1024px) {
  .section-provas .proofs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* tablet: 2 por linha */
@media (min-width: 640px) and (max-width: 1023px) {
  .section-provas .proofs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.proof-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-subtle);
}

.proof-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
}

.proof-handle {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e5e7eb;
}

.proof-desc {
  font-size: 0.9rem;
  color: #9ca3af;
}

.proof-points {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #a1a1aa;
}

.proof-points li::before {
  content: "• ";
  color: #38bdf8;
}

.proof-link {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.9rem;
}

.proofs-note {
  margin-top: 1.8rem;
  font-size: 0.85rem;
  color: #6b7280;
  max-width: 720px;
}
/* PROVAS REAIS / PERFIS MODELO */

.section-provas {
  position: relative;
}

.section-provas .proofs-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* desktop: 3 cards por linha */
@media (min-width: 1024px) {
  .section-provas .proofs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* tablet: 2 por linha */
@media (min-width: 640px) and (max-width: 1023px) {
  .section-provas .proofs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.proof-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-subtle);
}

.proof-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
}

.proof-handle {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e5e7eb;
}

.proof-desc {
  font-size: 0.9rem;
  color: #9ca3af;
}

.proof-points {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #a1a1aa;
}

.proof-points li::before {
  content: "• ";
  color: #38bdf8;
}

.proof-link {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.9rem;
}

.proofs-note {
  margin-top: 1.8rem;
  font-size: 0.85rem;
  color: #6b7280;
  max-width: 720px;
}

