/* =========================================================
   Pharma Super — Landing page estática
   Identidade visual: vermelho, azul-marinho, branco, cinza-claro
   ========================================================= */

:root {
  --brand-red: oklch(0.577 0.223 27.5);
  --brand-red-dark: oklch(0.505 0.2 27.5);
  --brand-navy: oklch(0.32 0.07 255);
  --brand-navy-dark: oklch(0.25 0.06 255);
  --brand-yellow: oklch(0.83 0.16 85);
  --brand-gray: oklch(0.968 0.004 250);
  --background: oklch(1 0 0);
  --foreground: oklch(0.28 0.05 255);
  --card: oklch(1 0 0);
  --muted: oklch(0.968 0.004 250);
  --muted-foreground: oklch(0.5 0.03 255);
  --border: oklch(0.918 0.006 250);
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--background);
}

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 84px;
  /* espaço p/ CTA fixo mobile */
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

svg.lucide {
  width: 1.25rem;
  height: 1.25rem;
}

/* ------------------ Utilitários ------------------ */
.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}

.section {
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .section {
    padding-block: 6rem;
  }
}

.bg-gray {
  background: var(--brand-gray);
}

.blue-bg {
  position: relative;
  overflow: hidden;
  background-color: var(--brand-navy);
}

.blue-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.07;
  pointer-events: none;
}

.blue-bg.bg-contact::before {
  background-image: url("images/contact.jpg");
}



.blue-bg.bg-hero::before {
  background-image: url("images/hero-bg.png");
}

.blue-bg>.container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-red);
}

.section-head {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

h1,
h2,
h3 {
  color: var(--brand-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.h2 {
  font-size: 1.875rem;
  font-weight: 800;
  margin-top: 0.75rem;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .h2 {
    font-size: 2.25rem;
  }
}

.text-white {
  color: white;
}

.margin-top {
  margin-top: 5%;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-visible {
    transition: none;
    transform: none;
  }
}

.lead {
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  text-wrap: pretty;
}

.lead-light {
  color: var(--brand-gray);
  line-height: 1.65;
  text-wrap: pretty;
}

/* ------------------ Botões ------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s, color 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  text-align: center;
  box-shadow: 0 8px 16px -8px rgba(220, 38, 38, 0.35);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 10px 20px -10px rgba(220, 38, 38, 0.45);
}

.btn-primary:hover {
  background: var(--brand-red-dark);
}

.btn-outline {
  background: var(--background);
  color: var(--brand-navy);
  border-color: color-mix(in oklch, var(--brand-navy) 15%, transparent);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: color-mix(in oklch, var(--brand-navy) 40%, transparent);
  background: color-mix(in oklch, var(--brand-red) 8%, white);
  color: var(--brand-red);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* ------------------ Header ------------------ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* When over hero (transparent), make nav links white */
.header:not(.scrolled) .nav-desktop a {
  color: rgba(255, 255, 255, 0.85);
}

.header:not(.scrolled) .nav-desktop a:hover {
  color: #fff;
}

.header:not(.scrolled) .logo-name {
  color: #fff;
}

.header:not(.scrolled) .logo-name .accent {
  color: rgba(255, 255, 255, 0.9);
}

.header:not(.scrolled) .logo-sub {
  color: rgba(255, 255, 255, 0.6);
}

.header:not(.scrolled) .icon-btn {
  color: #fff;
}

.header:not(.scrolled) .header-mobile-actions .btn {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.header:not(.scrolled) .header-mobile-actions .btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.header-inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.logo-badge {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
}

.logo-name .accent {
  color: var(--brand-red);
}

.logo-sub {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
  margin-top: 2px;
}

.logo.light .logo-name {
  color: #fff;
}

.logo.light .logo-sub {
  color: rgba(255, 255, 255, 0.7);
}

/* Nav desktop */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in oklch, var(--brand-navy) 80%, transparent);
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--brand-red);
}

.header-cta-desktop {
  display: none;
}

@media (min-width: 1024px) {

  .nav-desktop,
  .header-cta-desktop {
    display: flex;
  }

  .header-mobile-actions {
    display: none !important;
  }
}

/* Ações mobile */
.header-mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: transparent;
  border: none;
  color: var(--brand-navy);
}

/* Menu mobile */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
}

.mobile-menu a {
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-navy);
}

.mobile-menu a:hover {
  background: var(--muted);
}

.mobile-menu .btn {
  margin-top: 0.5rem;
}

/* When mobile menu is open, force header bg even if not scrolled */
.header:has(.mobile-menu.open) {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header:has(.mobile-menu.open) .logo-name {
  color: var(--brand-navy) !important;
}

.header:has(.mobile-menu.open) .logo-name .accent {
  color: var(--brand-red) !important;
}

.header:has(.mobile-menu.open) .logo-sub {
  color: var(--muted-foreground) !important;
}

.header:has(.mobile-menu.open) .icon-btn {
  color: var(--brand-navy) !important;
}

.header:has(.mobile-menu.open) .header-mobile-actions .btn {
  background: var(--brand-red) !important;
  border-color: transparent !important;
  color: #fff !important;
}

/* ------------------ Hero ------------------ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

@media (min-width: 1024px) {
  .hero {
    min-height: 88vh;
    max-height: 100vh;
  }
}

/* Background image — fills entire hero, desaturated */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.35) contrast(0.75) brightness(0.6);
}

/* Gradient overlay — strong dark-blue on the left, fading right */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      rgba(8, 27, 52, 0.97) 0%,
      rgba(8, 27, 52, 0.92) 25%,
      rgba(12, 41, 72, 0.78) 50%,
      rgba(12, 41, 72, 0.45) 75%,
      rgba(12, 41, 72, 0.18) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

@media (max-width: 1023px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-logo-area {
    order: -1;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
}

/* Hero text content — white on dark overlay */
.hero-content {}

.hero h1 {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  text-wrap: pretty;
  color: #fff;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .hero h1 {
    font-size: 2rem;
  }
}

.hero .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero .pill .dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: var(--brand-red);
  box-shadow: 0 0 6px rgba(255, 0, 9, 0.5);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--muted);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.pill .dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: var(--brand-red);
}

.hero-desc {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  text-wrap: pretty;
}

.hero-desc.small {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* Outline button for hero (white border on dark bg) */
.btn-outline-hero {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.85);
}

.hero .assurance {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero .assurance svg {
  color: var(--brand-red);
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

.assurance {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.assurance svg {
  color: var(--brand-red);
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

/* Animated SVG logo — right side of hero */
.hero-logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-animated-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.35));
  animation: heroLogoFloat 4s ease-in-out infinite;
}

@media (min-width: 1024px) {
  .hero-animated-logo {
    max-width: 560px;
  }
}

@keyframes heroLogoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Media frame (still used in other sections) */
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
  outline: 1px solid color-mix(in oklch, var(--brand-navy) 5%, transparent);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Indicators bar below hero */
.hero-indicators-bar {
  background: var(--brand-navy-dark);
  padding-block: 1.25rem;
  position: relative;
  z-index: 2;
}

.hero-indicators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .hero-indicators {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-indicators li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem;
}

.hero-indicators .ico {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-red);
}

.hero-indicators span.label {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.85);
}

/* ------------------ Ícones em caixas ------------------ */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.icon-box.red-soft {
  background: color-mix(in oklch, var(--brand-red) 10%, transparent);
  color: var(--brand-red);
}

.icon-box.navy {
  background: var(--brand-navy);
  color: #fff;
}

.icon-box.navy-soft {
  background: color-mix(in oklch, var(--brand-navy) 5%, transparent);
  color: var(--brand-navy);
}

.icon-box.s9 {
  height: 2.25rem;
  width: 2.25rem;
}

.icon-box.s10 {
  height: 2.5rem;
  width: 2.5rem;
}

.icon-box.s11 {
  height: 2.75rem;
  width: 2.75rem;
}

.icon-box.s12 {
  height: 3rem;
  width: 3rem;
  border-radius: 0.75rem;
}

/* ------------------ Jornada / Dor ------------------ */
.subhead-center {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-red);
}

.journey {
  margin-top: 3rem;
}

.journey-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .journey-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Card base da Jornada - Conteúdo Centralizado no Azul da Marca */
.journey-card {
  position: relative;
  border-radius: 1.25rem;
  background: var(--brand-navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  box-shadow: 0 10px 25px -5px rgba(8, 27, 52, 0.25);

  /* Animação em scroll suave */
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1.2s ease-in, transform 1.2s ease-in, background-color 0.45s ease-in, box-shadow 0.45s ease-in;
}

.jornada-section.animate .journey-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--j-index) * 0.18s);
}

.journey-card:hover {
  transform: translateY(-6px) scale(1.025) !important;
  box-shadow: 0 18px 35px -8px rgba(8, 27, 52, 0.45) !important;
  transition-delay: 0s !important;
}

.journey-card .icon-box {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 0.75rem;
  height: 2.85rem;
  width: 2.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.35s ease-in, transform 0.35s ease-in;
}

.journey-card .icon-box svg {
  width: 1.4rem;
  height: 1.4rem;
}

.journey-card:hover .icon-box {
  transform: scale(1.1);
}

.journey-card .step-label {
  margin-top: 1rem;
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
}

.journey-card p {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: #ffffff;
}

/* Último Card da Jornada (Passo 5) - VERMELHO em Destaque */
.journey-card-danger {
  background: var(--brand-red) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 12px 30px -5px rgba(220, 38, 38, 0.45) !important;
}

.journey-card-danger .icon-box {
  background: #ffffff !important;
  color: var(--brand-red) !important;
}

.journey-card-danger .step-label {
  color: rgba(255, 255, 255, 0.9) !important;
}

.journey-card-danger p {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.journey-card-danger:hover {
  box-shadow: 0 20px 40px -8px rgba(220, 38, 38, 0.6) !important;
}

/* Seção de Comparação */
.compare {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .compare {
    grid-template-columns: 1fr 1fr;
  }
}

.compare-card {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
}

/* Card "Com farmácia integrada" no Azul da Marca */
.compare-card.highlight-navy {
  border-radius: 1.25rem;
  background: var(--brand-navy);
  border: 2px solid var(--brand-red);
  padding: 2rem;
  color: #ffffff;
  box-shadow: 0 15px 35px -8px rgba(8, 27, 52, 0.35);
  transition: transform 0.45s ease-in, box-shadow 0.45s ease-in;
}

.compare-card.highlight-navy:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(8, 27, 52, 0.45);
}

.compare-card.highlight-navy h3 {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.compare-card.highlight-navy ul {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.compare-card.highlight-navy li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.compare-card.highlight-navy li svg {
  margin-top: 0.125rem;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-red);
}

.compare-badge {
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}

.compare-badge.muted {
  background: var(--muted);
  color: var(--muted-foreground);
}

.compare-badge.red {
  background: var(--brand-red);
  color: #fff;
}

.compare-card.muted-list {
  background: var(--card);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.compare-card.muted-list h3 {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.compare-card.muted-list ul {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.compare-card.muted-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.compare-card.muted-list li svg {
  margin-top: 0.125rem;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: color-mix(in oklch, var(--muted-foreground) 70%, transparent);
}

/* Animações gerais na seção DOR/JORNADA */
.journey-anim {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1.2s ease-in, transform 1.2s ease-in;
}

.jornada-section.animate .journey-anim {
  opacity: 1;
  transform: translateY(0);
}

.compare-note {
  margin: 2.5rem auto 0;
  max-width: 48rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--brand-navy);
  text-wrap: pretty;
}

/* ------------------ Layout 2 colunas (benefícios consumidor / seções público) ------------------ */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.order-media-first>.split-media {
  order: 1;
}

.split h2 {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 800;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .split h2 {
    font-size: 2.25rem;
  }
}

.split .lead {
  max-width: 32rem;
}

/* grid de mini-cards benefícios consumidor */
.mini-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .mini-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mini-card {
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.125rem;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mini-card:hover {

  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 82, 88, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

}

.mini-card:hover .icon-box {

  background: var(--brand-red);
  color: #fff;
  transform: scale(1.05);

}


.mini-card h3 {
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.mini-card p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--brand-gray);
}

/* ------------------ Grid de cards (benefícios supermercado / objeções / modelo / etapas) ------------------ */
.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.grid.gap-6 {
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cols-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .cols-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cols-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .cols-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cols-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mt-12 {
  margin-top: 3rem;
}

.mt-14 {
  margin-top: 3.5rem;
}

/* benefício supermercado card */
.benefit-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}

.benefit-card:hover {
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
}

/* objeção item (linha) */
.row-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.row-card span.txt {
  font-weight: 600;
  line-height: 1.35;
  color: var(--brand-navy);
}

/* modelo card */
.model-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}

.model-card:hover {
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.15);
}

.model-card h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.model-card p {
  margin-top: 0.5rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ------------------ Etapas (como funciona) ------------------ */
.como-funciona-section {
  position: relative;
  overflow: hidden;
  background: var(--background);
}

.como-funciona-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.como-funciona-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) opacity(0.06);
}

.relative-content {
  position: relative;
  z-index: 2;
}

.steps-grid-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Indicadores de Fase (PLANEJAMENTO, IMPLANTAÇÃO, OPERAÇÃO) */
.phase-header-row {
  display: flex;
  width: 100%;
  gap: 1.5rem;
}

.phase-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.phase-label span {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand-navy);
  background: var(--background);
  padding-inline: 0.875rem;
  z-index: 2;
}

.phase-label::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1.5px;
  background: color-mix(in oklch, var(--brand-navy) 15%, transparent);
  z-index: 1;
}

@media (min-width: 1024px) {
  .row-1 .phase-planejamento {
    flex: 2;
  }

  .row-1 .phase-implantacao {
    flex: 1;
  }

  .row-2 .phase-operacao {
    flex: 1;
  }
}

/* Grid de passos */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.25rem 0.5rem;
  }

  .steps-grid .phase-header-row.row-2 {
    grid-column: 1 / -1;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

/* Conectores / Setas entre cards */
.step-connector {
  display: none;
}

@media (min-width: 1024px) {
  .step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: #94a3b8;
    padding-inline: 0.15rem;
  }

  .step-connector .connector-line {
    height: 1.5px;
    width: 1rem;
    background: #cbd5e1;
  }

  .step-connector .connector-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-red);
    flex-shrink: 0;
  }

  .step-connector svg {
    width: 1.125rem;
    height: 1.125rem;
    color: #94a3b8;
    flex-shrink: 0;
  }
}

/* Card de cada Passo */
.step-card {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  border-top: 3.5px solid var(--brand-red);
  background: var(--card);
  padding: 1.75rem;
  box-shadow: 0 -4px 14px rgba(220, 38, 38, 0.08), 0 10px 25px -5px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  z-index: 1;

  /* Animação em cascata — ajuste manual aqui */
  --step-enter-duration: 0.5s;
  --step-enter-stagger: 0.15s;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity var(--step-enter-duration) ease, transform var(--step-enter-duration) ease-out, background-color 0.45s ease-in, border-color 0.45s ease-in, box-shadow 0.45s ease-in, color 0.45s ease-in;
}

/* Ativação da animação em scroll */
.steps-grid-container.animate .step-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--step-index) * var(--step-enter-stagger));
}

/* Marca d'água numérica no fundo */
.step-watermark {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 0.8;
  color: rgba(15, 23, 42, 0.05);
  pointer-events: none;
  user-select: none;
  transition: color 0.35s ease;
}

/* Cabeçalho do Card (Número + Ícone) */
.step-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.step-num-badge {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--brand-red);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background-color 0.35s ease, color 0.35s ease;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  transition: color 0.35s ease;
}

.step-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.3;
  transition: color 0.35s ease;
}

.step-card p {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted-foreground);
  transition: color 0.35s ease;
}

/* Botão Saiba Mais dentro do Card */
.btn-step-more {
  margin-top: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  border-radius: 9999px;
  padding: 0.5rem 0.95rem;
  background: var(--brand-red);
  width: fit-content;
  box-shadow: 0 8px 16px -8px rgba(220, 38, 38, 0.45);
  transition: all 0.35s ease;
}

.btn-step-more svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.25s ease;
}

.btn-step-more:hover svg {
  transform: translateX(3px);
}

/* Estado HOVER do Card */
.step-card:hover {
  background: var(--brand-red) !important;
  border-color: var(--brand-red) !important;
  transform: translateY(-8px) scale(1.03) !important;
  box-shadow: 0 20px 35px -8px rgba(220, 38, 38, 0.45) !important;
  transition-delay: 0s !important;
}

.step-card:hover h3,
.step-card:hover p,
.step-card:hover .step-icon {
  color: #ffffff !important;
}

.step-card:hover .step-num-badge {
  background: #ffffff !important;
  color: var(--brand-red) !important;
}

.step-card:hover .step-watermark {
  color: rgba(255, 255, 255, 0.22) !important;
}

.step-card:hover .btn-step-more {
  background: #ffffff !important;
  color: var(--brand-red) !important;
}

/* Botão grande de CTA no final da seção */
.steps-cta {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
  position: relative;
  z-index: 10;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
  font-weight: 700;
  box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.4);
}

.btn-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(220, 38, 38, 0.5);
}

/* ------------------ Faixa resultados estratégicos ------------------ */
.band-navy {
  background: var(--brand-navy);
  color: #fff;
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .band-navy {
    padding-block: 5rem;
  }
}

.band-navy h2 {
  color: #fff;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 800;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .band-navy h2 {
    font-size: 2.25rem;
  }
}

.pillars {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pillars {
    grid-template-columns: repeat(5, 1fr);
  }
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pillar .ico {
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-red);
}

.pillar .ico svg {
  width: 1.75rem;
  height: 1.75rem;
}

.pillar span.label {
  margin-top: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

/* ------------------ Seções público (supermercados / investidores) ------------------ */
.audience h2 {
  margin-top: 1.25rem;
}

.audience .btn {
  margin-top: 1.75rem;
}

/* ------------------ Diferenciais ------------------ */
.diff-grid {
  margin: 3rem auto 0;
  max-width: 56rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.diff-item .check {
  display: flex;
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--brand-red);
  color: #fff;
}

.diff-item .check svg {
  width: 1rem;
  height: 1rem;
}

.diff-item span.txt {
  font-weight: 500;
  line-height: 1.35;
  color: var(--brand-navy);
}

/* ------------------ Prova social ------------------ */
.testimonials {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-ph {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px dashed var(--border);
  background: color-mix(in oklch, var(--card) 60%, transparent);
  padding: 1.75rem;
}

.testimonial-ph svg {
  width: 2rem;
  height: 2rem;
  color: color-mix(in oklch, var(--brand-navy) 15%, transparent);
}

.ph-lines {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ph-lines span {
  display: block;
  height: 0.75rem;
  border-radius: 0.25rem;
  background: var(--muted);
}

.ph-foot {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.ph-foot .avatar {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px;
  background: var(--muted);
}

.ph-foot .name {
  display: block;
  height: 0.75rem;
  width: 6rem;
  border-radius: 0.25rem;
  background: var(--muted);
}

.social-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ------------------ FAQ ------------------ */
.faq-wrap {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-list {
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
}

.faq-item+.faq-item {
  border-top: 1px solid var(--border);
}

.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
  background: transparent;
  border: none;
  transition: background-color 0.2s;
}

.faq-q:hover {
  background: color-mix(in oklch, var(--muted) 50%, transparent);
}

.faq-q span {
  font-weight: 600;
  color: var(--brand-navy);
}

.faq-q svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--brand-red);
  transition: transform 0.2s;
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 1.25rem 1.25rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.faq-item.open .faq-a {
  display: block;
}

/* ------------------ Contato / Formulário ------------------ */
.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  position: static;
}

@media (min-width: 1024px) {
  .contact-info {
    position: sticky;
    top: 6rem;
  }
}

.contact-info h2 {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 800;
  text-wrap: balance;
  color: white
}

.contact-info p {
  color: var(--brand-gray);
}

@media (min-width: 640px) {
  .contact-info h2 {
    font-size: 2.25rem;
  }
}

.assurance-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.assurance-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.assurance-list .ico {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: color-mix(in oklch, var(--brand-red) 10%, transparent);
  color: var(--brand-red);
}

.assurance-list span.txt {
  font-weight: 500;
  color: white;
}

/* Formulário */
.form-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
  .form-card {
    padding: 2rem;
  }
}

.form-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.field input,
.field select,
.field textarea {
  margin-top: 0.375rem;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 0.625rem 0.875rem;
  color: var(--brand-navy);
  font: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: color-mix(in oklch, var(--muted-foreground) 60%, transparent);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--brand-red) 20%, transparent);
}

.field .error {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--brand-red);
  display: none;
}

.field.has-error .error {
  display: block;
}

.field.has-error input,
.field.has-error select {
  border-color: var(--brand-red);
}

.hidden {
  display: none !important;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.consent input {
  margin-top: 0.125rem;
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  accent-color: var(--brand-red);
}

.consent a {
  font-weight: 600;
  color: var(--brand-red);
  text-decoration: underline;
}

.form-submit {
  margin-top: 1.5rem;
  width: 100%;
  padding-block: 1rem;
}

.form-submit[disabled] {
  opacity: 0.7;
  cursor: default;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* sucesso */
.form-success {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-success .ico {
  margin: 0 auto;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: color-mix(in oklch, var(--brand-red) 10%, transparent);
  color: var(--brand-red);
}

.form-success .ico svg {
  width: 2rem;
  height: 2rem;
}

.form-success h3 {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.form-success p {
  margin: 0.75rem auto 0;
  max-width: 28rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.form-success .btn {
  margin-top: 1.5rem;
}

/* ------------------ CTA final ------------------ */
.band-red {
  background: var(--brand-red);
  color: #fff;
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .band-red {
    padding-block: 5rem;
  }
}

.band-red .inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.band-red h2 {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 800;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .band-red h2 {
    font-size: 2.25rem;
  }
}

.band-red p {
  margin: 1rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: pretty;
}

.band-red .actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .band-red .actions {
    flex-direction: row;
  }
}

.btn-white {
  background: #fff;
  color: var(--brand-red);
}

.btn-white:hover {
  transform: scale(1.02);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ------------------ Rodapé ------------------ */
.footer {
  background: var(--brand-navy-dark);
  color: #fff;
}

.footer-inner {
  padding-block: 3.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-brand {
  grid-column: auto;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 2;
  }
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.socials {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
}

.socials a {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background-color 0.2s;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.socials svg {
  width: 1rem;
  height: 1rem;
}

.footer h3 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer ul.links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer ul.links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.footer ul.links a:hover {
  color: #fff;
}

.footer .contact-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer .contact-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer .contact-list a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: color 0.2s;
}

.footer .contact-list a:hover {
  color: #fff;
}

.footer .contact-list svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--brand-red);
}

.footer-bottom {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.footer-bottom a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ------------------ Flutuantes ------------------ */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;

  width: 58px;
  height: 58px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25d366;
  color: #fff;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  z-index: 1000;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.wa-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.wa-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 4px;
}

.wa-icon {
  width: 31px;
  height: 31px;
  display: block;
}

@media (min-width: 1024px) {
  .wa-float {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.mobile-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 40;
  border-top: 1px solid var(--border);
  background: color-mix(in oklch, var(--background) 95%, transparent);
  backdrop-filter: blur(8px);
  padding: 0.75rem;
}

@media (min-width: 1024px) {
  .mobile-cta {
    display: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   PÁGINA PROCESSO DETALHADO
   ========================================================= */
.processo-hero {
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: var(--brand-navy-dark);
  color: #fff;
  text-align: center;
}

.processo-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.processo-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.3) brightness(0.35);
}

.processo-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 27, 52, 0.85) 0%, rgba(8, 27, 52, 0.95) 100%);
}

.processo-hero-content {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.processo-hero h1 {
  margin-top: 1.25rem;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

@media (min-width: 640px) {
  .processo-hero h1 {
    font-size: 3rem;
  }
}

.lead-light {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.processo-hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .processo-hero-actions {
    flex-direction: row;
  }
}

/* Barra de Navegação Rápida (Sub-Nav Sticky) */
.etapas-nav-bar {
  position: sticky;
  top: 4rem;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding-block: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.etapas-nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
  gap: 0.5rem;
  padding-block: 0.25rem;
  scrollbar-width: none;
}

.etapas-nav-list::-webkit-scrollbar {
  display: none;
}

.etapas-nav-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-navy);
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
}

.etapas-nav-list a:hover {
  background: color-mix(in oklch, var(--brand-red) 10%, transparent);
  color: var(--brand-red);
}

.etapas-nav-list .badge {
  display: flex;
  height: 1.5rem;
  width: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

/* Card Detalhado da Etapa */
.etapa-detail-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
  scroll-margin-top: 8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 1024px) {
  .etapa-detail-card {
    padding: 3rem;
  }
}

.etapa-detail-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

.etapa-detail-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.75rem;
  margin-bottom: 2rem;
}

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

.phase-tag-badge {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-red);
  background: color-mix(in oklch, var(--brand-red) 10%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
}

.phase-imp-badge {
  color: #0284c7;
  background: rgba(2, 132, 199, 0.1);
}

.phase-op-badge {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
}

.etapa-number-tag {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.etapa-title-wrap {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.etapa-icon-box {
  display: flex;
  height: 3.25rem;
  width: 3.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 6px 15px -3px rgba(220, 38, 38, 0.4);
}

.etapa-icon-box svg {
  width: 1.75rem;
  height: 1.75rem;
}

.etapa-title-wrap h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-navy);
}

@media (min-width: 640px) {
  .etapa-title-wrap h2 {
    font-size: 2rem;
  }
}

.etapa-summary {
  margin-top: 1rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

/* Layout Z-Pattern (Imagens alternadas Esquerda / Direita) */
.etapa-body-z {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 1024px) {
  .etapa-body-z.z-right {
    grid-template-columns: 1.25fr 0.95fr;
  }

  .etapa-body-z.z-left {
    grid-template-columns: 0.95fr 1.25fr;
  }

  .etapa-body-z.z-left .etapa-image-col {
    order: -1;
  }
}

/* Moldura e Estilo da Imagem */
.etapa-image-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 15px 35px -8px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
  background: var(--card);
}

.etapa-image-frame img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.etapa-detail-card:hover .etapa-image-frame img {
  transform: scale(1.05);
}

.etapa-image-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(8, 27, 52, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.etapa-image-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand-red);
}

/* Animações de Scroll nos Cards de Etapa (mais lentas e suaves com ease-in) */
.etapa-detail-card {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.5s ease-in, transform 0.5s ease-in, box-shadow 0.45s ease-in;
}

.etapa-detail-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Animações escalonadas nos elementos internos do Card (suaves e desaceleradas) */
.etapa-detail-card .etapa-detail-header,
.etapa-detail-card .check-list li,
.etapa-detail-card .etapa-side-card,
.etapa-detail-card .etapa-image-frame {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s ease-in, transform 1.1s ease-in;
}

.etapa-detail-card.in-view .etapa-detail-header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.etapa-detail-card.in-view .etapa-image-frame {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.etapa-detail-card.in-view .check-list li:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.etapa-detail-card.in-view .check-list li:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.etapa-detail-card.in-view .check-list li:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.etapa-detail-card.in-view .check-list li:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.85s;
}

.etapa-detail-card.in-view .etapa-side-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.check-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  line-height: 1.6;
}

.check-list li svg {
  margin-top: 0.125rem;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--brand-red);
  flex-shrink: 0;
}

.check-list strong {
  color: var(--brand-navy);
  display: inline;
  font-weight: 700;
}

.etapa-side-card {
  background: var(--brand-gray);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.side-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.side-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-red);
}

.side-deliverables {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.side-deliverables li {
  font-size: 0.875rem;
  color: var(--foreground);
  position: relative;
  padding-left: 1.25rem;
}

.side-deliverables li::before {
  content: "•";
  position: absolute;
  left: 0.25rem;
  color: var(--brand-red);
  font-size: 1.25rem;
  line-height: 1;
}

/* =========================================================
   REFORMULAÇÃO DE SEÇÕES: BENEFÍCIOS, OBJEÇÕES & MODELO
   ========================================================= */

/* Utilitários específicos */
.h2-lg {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .h2-lg {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .h2-lg {
    font-size: 2.75rem;
  }
}

.eyebrow-light {
  color: #ff5258;
}

.text-left-head {
  text-align: left;
  margin-inline: 0;
  max-width: 52rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

/* ---------------------------------------------------------
   1. SEÇÃO BENTO GRID: BENEFÍCIOS SUPERMERCADO
   --------------------------------------------------------- */
.bento-supermercados-section {
  background: var(--background);
  padding-block: 5rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bento-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in oklch, var(--brand-navy) 25%, transparent);
}

/* Card Mídia em Destaque */
.bento-card-media {
  padding: 0;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--brand-navy);
  color: #fff;
  border: none;
}

@media (min-width: 1024px) {
  .bento-card-media {
    grid-column: span 2;
    grid-template-columns: 1.2fr 1fr;
  }
}

.bento-media-wrap {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .bento-media-wrap {
    min-height: 320px;
  }
}

.bento-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-card-media:hover .bento-media-wrap img {
  transform: scale(1.04);
}

.bento-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(10, 25, 47, 0.65) 100%);
}

.bento-float-stat {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  color: var(--foreground);
}

.stat-badge-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--brand-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-badge-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.stat-number {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--brand-navy);
}

.stat-desc {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.bento-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bento-card-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.bento-card-content p {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Cards de Pilares da Bento Grid */
.bento-pillar-card {
  border-top: 3px solid transparent;
}

.bento-pillar-card:hover {
  border-top-color: var(--brand-red);
}

.pillar-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: color-mix(in oklch, var(--brand-navy) 15%, transparent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.pillar-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: color-mix(in oklch, var(--brand-navy) 8%, transparent);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.bento-pillar-card:hover .pillar-icon {
  background: var(--brand-red);
  color: #fff;
}

.pillar-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.bento-pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.3;
}

.bento-pillar-card p {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

/* Faixa rodapé Bento */
.bento-footer-strip {
  margin-top: 3rem;
  padding: 1.25rem 2rem;
  background: var(--brand-gray);
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-around;
}

@media (min-width: 768px) {
  .bento-footer-strip {
    flex-direction: row;
    align-items: center;
  }
}

.bento-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.bento-strip-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-red);
  flex-shrink: 0;
}


/* ---------------------------------------------------------
   2. SEÇÃO QUEBRA DE OBJEÇÕES: NAVY COMMAND DASHBOARD
   --------------------------------------------------------- */
.objections-navy-section {
  background: linear-gradient(135deg, var(--brand-navy-dark) 0%, var(--brand-navy) 100%);
  color: #fff;
  padding-block: 5rem;
  position: relative;
  overflow: hidden;
}

.objections-navy-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 40, 45, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.objections-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .objections-layout {
    grid-template-columns: 1fr 1.3fr;
    align-items: start;
  }
}

.objections-authority {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.objections-seal-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.seal-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: rgba(230, 40, 45, 0.2);
  color: #ff5258;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 82, 88, 0.3);
}

.seal-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.seal-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.seal-info p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

.objections-photo-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.objections-photo-frame img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (min-width: 640px) {
  .objections-photo-frame img {
    height: 260px;
  }
}

.photo-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.photo-badge svg {
  width: 1rem;
  height: 1rem;
  color: #ff5258;
}

/* Grid de Suporte 3x3 */
.objections-grid-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.grid-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
}

.objections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .objections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .objections-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.obj-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.125rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.obj-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 82, 88, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.obj-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 82, 88, 0.15);
  color: #ff5258;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.obj-card:hover .obj-icon {
  background: var(--brand-red);
  color: #fff;
  transform: scale(1.05);
}

.obj-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.obj-content h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.obj-content p {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}


/* ---------------------------------------------------------
   3. SEÇÃO MODELO COMPLETO: GRID ARQUITETURAL MODULAR
   --------------------------------------------------------- */
.modelo-arquitetura-section {
  background: var(--brand-gray);
  padding-block: 5.5rem;
}

.modelo-banner-wrap {
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
}

.modelo-banner-image {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .modelo-banner-image {
    min-height: 380px;
  }
}

.modelo-banner-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modelo-banner-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(180deg, rgba(10, 25, 47, 0) 0%, rgba(10, 25, 47, 0.9) 100%);
  padding: 2.5rem 2rem 2rem;
  color: #fff;
}

@media (min-width: 768px) {
  .modelo-banner-overlay {
    padding: 4rem 3rem 2.5rem;
  }
}

.model-tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--brand-red);
  padding: 0.35rem 0.875rem;
  border-radius: 9999px;
  margin-bottom: 0.875rem;
}

.model-tech-pill svg {
  width: 0.875rem;
  height: 0.875rem;
}

.modelo-banner-overlay h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

@media (min-width: 768px) {
  .modelo-banner-overlay h3 {
    font-size: 2rem;
  }
}

.modelo-banner-overlay p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 44rem;
}

/* Grid de Módulos */
.modelo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .modelo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .modelo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.modelo-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.modelo-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-navy);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.08);
}

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

.modelo-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  background: color-mix(in oklch, var(--brand-red) 10%, transparent);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklch, var(--brand-red) 20%, transparent);
}

.modelo-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--brand-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.modelo-card:hover .modelo-icon {
  background: var(--brand-red);
  transform: rotate(-6deg) scale(1.05);
}

.modelo-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.modelo-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.3;
}

.modelo-card p {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}


/* =========================================================
   SIMULADOR DE IMPLANTAÇÃO
========================================================= */

.implantacao-simulador {
  position: relative;
  margin-top: 80px;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(
      135deg,
      rgba(33, 52, 154, 0.96),
      rgba(20, 31, 92, 0.96)
    );
  box-shadow: 0 24px 70px rgba(12, 22, 75, 0.25);
  overflow: hidden;
}

.implantacao-simulador::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -230px;
  right: -150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.implantacao-simulador-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.implantacao-simulador .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.implantacao-simulador h2 {
  margin: 12px 0 16px;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.implantacao-simulador-content > p {
  max-width: 680px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

.implantacao-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.implantacao-upload {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 130px;
  padding: 24px;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.implantacao-upload:hover,
.implantacao-upload:focus-within {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.implantacao-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.implantacao-upload-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #ffffff;
  color: #21349a;
}

.implantacao-upload-icon svg {
  width: 27px;
  height: 27px;
}

.implantacao-upload-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #ffffff;
}

.implantacao-upload-text strong {
  font-size: 1.05rem;
}

.implantacao-upload-text small {
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.5;
}

.implantacao-upload-button {
  padding: 11px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.implantacao-previews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.implantacao-preview-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.15);
}

.implantacao-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.implantacao-preview-card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.68);
  color: #ffffff;
  font-size: 0.78rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.implantacao-consentimento {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.87rem;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.implantacao-consentimento input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #ffffff;
  flex-shrink: 0;
}

.implantacao-submit {
  align-self: center;
  min-width: 250px;
}

.button-default-content,
.button-loading-content {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.implantacao-spinner {
  display: inline-block;
  width: 19px;
  height: 19px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: implantacao-spin 0.8s linear infinite;
}

@keyframes implantacao-spin {
  to {
    transform: rotate(360deg);
  }
}

.implantacao-aviso {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.5;
}

.implantacao-status {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 28px auto 0;
  padding: 15px 18px;
  border-radius: 12px;
  text-align: center;
}

.implantacao-status.is-loading {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.implantacao-status.is-error {
  background: rgba(175, 20, 20, 0.88);
  color: #ffffff;
}

.implantacao-status.is-success {
  background: rgba(23, 124, 75, 0.9);
  color: #ffffff;
}

.implantacao-resultados {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.implantacao-resultado {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(7, 17, 60, 0.25);
}

.implantacao-resultado-imagem {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e9ecf5;
}

.implantacao-resultado-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

.implantacao-resultado-footer strong {
  color: #172052;
  font-size: 0.95rem;
}

.implantacao-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 9px;
  background: #21349a;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.implantacao-download:hover {
  background: #182878;
}

@media (max-width: 700px) {
  .implantacao-simulador {
    margin-top: 55px;
    padding: 28px 18px;
    border-radius: 22px;
  }

  .implantacao-upload {
    grid-template-columns: auto 1fr;
    padding: 19px;
  }

  .implantacao-upload-button {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }

  .implantacao-previews,
  .implantacao-resultados {
    grid-template-columns: 1fr;
  }

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

  .implantacao-download {
    justify-content: center;
    width: 100%;
  }
}