/* ======== DESIGN TOKENS ======== */
:root {
  --color-primary: #f43f5e;
  --color-primary-dark: #e11d48;
  --color-primary-light: #fff1f2;

  --color-accent: #0f172a;
  --color-accent-light: #1e293b;

  --color-bg: #f8fafc;
  --color-bg-alt: #ffffff;

  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-text-muted-light: #94a3b8;

  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 10px 10px -5px rgba(15, 23, 42, 0.03);
  --glass-bg: rgba(15, 23, 42, 0.9);
  --glass-border: rgba(255, 255, 255, 0.1);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======== RESET & BASE ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  font-size: 16px;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ======== TYPOGRAPHY ======== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-accent);
}

.text-center { text-align: center; }

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

section { padding: 6rem 0; }

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  font-family: var(--font-main);
}

.section-light { background-color: var(--color-bg-alt); }
.section-accent { background: linear-gradient(135deg, var(--color-primary-light) 0%, #fff 100%); }

/* ======== BUTTONS ======== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: -0.01em;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.35);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  box-shadow: 0 8px 25px rgba(225, 29, 72, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
}

.btn-small { padding: 0.5rem 1.25rem; font-size: 0.9rem; }
.btn-large { padding: 1rem 2.25rem; font-size: 1.1rem; }
.btn-full { width: 100%; padding: 0.9rem 1rem; }

/* ======== HEADER / NAVBAR ======== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  transition: padding 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  padding: 0.7rem 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.5px;
}

.navbar .logo-text { color: #ffffff; }

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted-light);
}

.nav-links a:hover { color: var(--color-primary); }

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ======== 1. HERO ======== */
.hero {
  padding-top: 8rem;
  padding-bottom: 6rem;
  overflow: hidden;
  position: relative;
  background-color: var(--color-accent);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(244,63,94,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 20%, rgba(244,63,94,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: rgba(244, 63, 94, 0.12);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
  border: 1px solid rgba(244, 63, 94, 0.25);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 1.25rem;
  line-height: 1.05;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(148,163,184,0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 520px;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  color: #f1f5f9;
}

.icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-small {
  width: 14px;
  height: 14px;
  margin-right: 0.35rem;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.microcopy {
  display: flex;
  align-items: center;
  font-size: 0.83rem;
  color: var(--color-text-muted-light);
}

.hero-image-wrapper {
  flex: 1;
  position: relative;
  perspective: 1000px;
}

.glass-panel {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-image-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
  background-color: var(--color-bg);
}

.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-image-placeholder:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.hero-image-caption, .image-caption {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: rgba(148,163,184,0.75);
  line-height: 1.55;
  font-style: italic;
  text-align: center;
}

.image-caption { color: var(--color-text-muted); }

.shape-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.15) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(40px);
}

.shape-2 {
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(148, 163, 184, 0.05) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  /* Mobile order: intro → imagem → bullets+CTA */
  .hero-content { display: contents; } /* dissolve o wrapper, filhos entram no flex do container */
  .hero-intro   { order: 1; text-align: center; width: 100%; }
  .hero-image-wrapper { order: 2; width: 100%; }
  .hero-bottom  { order: 3; width: 100%; text-align: center; }

  .hero-bullets { display: inline-flex; text-align: left; }
  .hero-bullets li { justify-content: flex-start; }
  .hero-cta-group { align-items: center; width: 100%; }

  /* Remove 3D tilt on mobile — fica pesado e corta a imagem */
  .hero-image-placeholder {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  .hero-title { font-size: 2.25rem; letter-spacing: -1px; }
  .hero-subtitle { font-size: 1rem; }
  .hero-container { gap: 2rem; }
  .hero-image-caption { font-size: 0.82rem; }
}

/* ======== 2. EMPATHY ======== */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.situation-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.situation-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.situation-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.situation-card p {
  color: var(--color-text-muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.empathy-message {
  margin-top: 3.5rem;
  padding: 2rem 2.5rem;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  font-size: 1.125rem;
  color: var(--color-accent);
  border: 1px solid rgba(244,63,94,0.15);
}

/* ======== 3 & 4. SOLUTION ======== */
.solution-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.solution-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-image-wrapper { position: relative; }

.solution-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lead-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  font-family: var(--font-main);
}

.solution-text p:not(.lead-text) {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
  border-left: 3px solid transparent;
}

.feature-item:hover {
  transform: translateX(6px);
  border-left-color: var(--color-primary);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  flex-shrink: 0;
  color: var(--color-primary-dark);
}

.feature-icon-wrapper svg { width: 22px; height: 22px; }

.feature-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.feature-content p {
  font-size: 0.93rem;
  color: var(--color-text-muted);
}

@media (max-width: 992px) {
  .solution-intro { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .solution-container { gap: 2rem; }
}

/* ======== 5. HOW IT WORKS ======== */
.how-it-works { background-color: var(--color-bg); }

.how-it-works .section-title { margin-bottom: 0.5rem; }

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}

.step-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  transition: var(--transition-normal);
  text-align: center;
}

.step-card:hover { transform: translateY(-10px); }

.step-number {
  width: 44px;
  height: 44px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.4);
  font-family: var(--font-main);
}

.step-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .steps-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .steps-container { grid-template-columns: 1fr; }
}

/* ======== GESTÃO DE PEDIDOS ======== */
.pedidos-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.pedidos-text .badge {
  margin-bottom: 1.5rem;
  background-color: rgba(244, 63, 94, 0.1);
  border-color: rgba(244,63,94,0.2);
  color: var(--color-primary);
}

.pedidos-text .section-title {
  margin-bottom: 1.25rem;
}

.pedidos-text > p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.pedidos-features {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2rem;
}

.pedido-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,23,42,0.05);
  transition: transform 0.2s ease;
}

.pedido-feat:hover {
  transform: translateX(5px);
}

.pedido-feat-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.pedido-feat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 0.15rem;
}

.pedido-feat p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

.pedidos-image-wrapper {
  position: relative;
}

.pedidos-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -10px rgba(15,23,42,0.18), 0 0 0 1px rgba(15,23,42,0.06);
  transition: transform 0.5s ease;
}

.pedidos-img:hover {
  transform: scale(1.015);
}

@media (max-width: 992px) {
  .pedidos-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ======== 6 & 7. MARKETPLACES & TRUST ======== */
.marketplaces-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.box-channels, .box-trust {
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}

.box-channels {
  border-top: 4px solid var(--color-primary);
}

.box-channels p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.box-trust {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffeef1 100%);
  color: var(--color-accent);
}

.box-trust p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.trust-icon {
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.box-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.channel-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.pill {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(244,63,94,0.2);
}

@media (max-width: 768px) {
  .marketplaces-container { grid-template-columns: 1fr; }
}

/* ======== 8. PRICING ======== */
.pricing-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 4rem auto;
  text-align: left;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: white;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,23,42,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pf-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-feature-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.2rem;
}

.pricing-feature-item p {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .pricing-features-grid { grid-template-columns: 1fr; }
}

.plan-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.price-anual-equiv {
  font-size: 0.9rem;
  color: var(--color-success);
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
  text-align: center;
}

.pricing-card:hover { transform: translateY(-8px); }

.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  font-family: var(--font-main);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  letter-spacing: -2px;
}

.price span {
  font-size: 1.4rem;
  margin-right: 0.2rem;
  font-weight: 600;
  margin-top: 0.6rem;
  letter-spacing: 0;
}

.period {
  font-size: 1rem !important;
  color: var(--color-text-muted);
  font-weight: 400 !important;
  align-self: flex-end;
  margin-bottom: 0.85rem;
  letter-spacing: 0;
  font-family: var(--font-main);
}

.price-desc {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.55;
}

.highlighted {
  border: 2px solid var(--color-primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-primary);
}

.highlighted:hover { transform: scale(1.05) translateY(-8px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: white;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.pricing-guarantee {
  margin-top: 4rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.guarantee-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pricing-guarantee h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.pricing-guarantee p {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  font-size: 0.97rem;
  line-height: 1.6;
}

.guarantee-note {
  font-size: 0.82rem !important;
  color: var(--color-text-muted) !important;
  margin-top: 0.75rem !important;
  letter-spacing: 0.02em;
}

.cta-bump {
  margin-top: 1.5rem;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.4); }
  70% { box-shadow: 0 0 0 16px rgba(225, 29, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

@media (max-width: 768px) {
  .pricing-cards { flex-direction: column; }
  .highlighted { transform: none; }
  .highlighted:hover { transform: translateY(-8px); }
}

/* ======== 9. FAQ ======== */
.faq-container { max-width: 760px; margin: 0 auto; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(244,63,94,0.15);
}

.faq-item summary {
  padding: 1.35rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-accent);
  cursor: pointer;
  list-style: none;
  position: relative;
  border-bottom: 1px solid transparent;
  transition: background-color 0.2s;
  font-family: var(--font-display);
}

.faq-item summary:hover { background-color: var(--color-bg); }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s;
  font-family: var(--font-main);
  font-weight: 300;
}

.faq-item[open] summary { border-bottom-color: var(--color-bg); }

.faq-item[open] summary::after {
  content: '−';
  color: var(--color-accent);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  animation: slideDown 0.25s ease-out;
  font-size: 0.97rem;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======== 10. FINAL CTA ======== */
.final-cta { padding: 7rem 0; }

.final-cta-container { max-width: 680px; }

.final-cta-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: rgba(244, 63, 94, 0.12);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(244, 63, 94, 0.25);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.final-cta .section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.bounce-anim { margin: 1.5rem 0; }

.bounce-anim:hover {
  animation: bounce 0.5s ease infinite alternate;
}

@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}

.final-microcopy {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* ======== FOOTER ======== */
.footer {
  background-color: var(--color-accent);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.footer-logo {
  color: #ffffff;
  font-family: var(--font-display);
}

.footer .logo-icon { color: var(--color-primary); }

.footer p {
  color: rgba(148,163,184,0.7);
  font-size: 0.88rem;
}

/* ======== OTIMIZAÇÕES GLOBAIS MOBILE ======== */
@media (max-width: 768px) {
  section { padding: 4rem 0; }

  .section-title { font-size: 1.65rem; }

  .container { padding: 0 1.25rem; }

  /* Empathy */
  .situations-grid { grid-template-columns: 1fr; gap: 1rem; }
  .empathy-message { padding: 1.5rem; font-size: 1rem; }

  /* Solution */
  .solution-intro { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .solution-container { gap: 2.5rem; }
  .feature-item { flex-direction: row; }

  /* Steps */
  .steps-container { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
  .step-card { padding: 1.75rem 1.25rem; }

  /* Marketplaces */
  .marketplaces-container { grid-template-columns: 1fr; }
  .box-channels, .box-trust { padding: 2rem 1.5rem; }

  /* Pedidos */
  .pedidos-container { grid-template-columns: 1fr; gap: 2rem; }

  /* Pricing features */
  .pricing-features-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .pricing-feature-item { padding: 1rem 1.1rem; }

  /* Pricing cards */
  .pricing-cards { flex-direction: column; gap: 1.25rem; }
  .highlighted { transform: none; }
  .highlighted:hover { transform: translateY(-6px); }
  .pricing-card { padding: 2rem 1.5rem; }
  .price { font-size: 2.75rem; }
  .pricing-guarantee { padding: 2rem 1.5rem; }

  /* FAQ */
  .faq-container { max-width: 100%; }
  .faq-item summary { font-size: 0.97rem; padding: 1.15rem 1.25rem; }

  /* Final CTA */
  .final-cta { padding: 5rem 0; }
  .final-cta .section-title { font-size: 1.75rem; }

  /* Navbar */
  .nav-actions .btn-small { padding: 0.45rem 1rem; font-size: 0.82rem; }
}
