/* ==========================
   STYLE.CSS — Carbono Zero
   Ajustes finos + Heroicons
   ========================== */

/* RESET SUAVE */
html, body {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ===== ÍCONES HEROICONS ===== */

/* Estilo base dos SVGs */
svg {
  display: inline-block;
  vertical-align: middle;
  shape-rendering: geometricPrecision;
}

/* Ícones padrão (cinza Tailwind neutro) */
.comparison-icon svg {
  width: 22px;
  height: 22px;
  stroke: #4B5563; /* gray-600 */
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Ícones de check verde */
.comparison-check svg {
  width: 16px;
  height: 16px;
  stroke: #00a651;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Ícones de X vermelho */
.comparison-x svg {
  width: 16px;
  height: 16px;
  stroke: #EF4444; /* red-500 */
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== CARDS DA COMPARAÇÃO ===== */

.comparison-card {
  border-radius: 0.75rem;
  transition: all 0.3s ease-in-out;
}

.comparison-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ===== AJUSTES DE TEXTO ===== */

h1, h2, h3 {
  color: #111827; /* gray-900 */
}

p {
  color: #4B5563; /* gray-600 */
  line-height: 1.6;
}

/* ===== ANIMAÇÃO DE ENTRADA SUAVE ===== */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==========================
   AJUSTE DE TOPBAR E NAVBAR
   ========================== */

/* --- Topbar --- */
.topbar {
  background: #00a651; /* tom de verde mais suave e vivo */
  color: #fff;
  padding: 0.5rem 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0;
}

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

.topbar-content a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.topbar-content a:hover {
  text-decoration: underline;
}

/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  z-index: 100;
  width: 100%;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

  .navbar-logo {
    margin-right: 2rem;
    display: flex;
    align-items: center;
    flex-shrink: 0; /* evita que a logo seja comprimida horizontalmente */
  }

  .navbar-logo img {
    height: 48px; /* altura fixa no desktop */
    width: auto;  /* mantém proporção original */
    max-width: 180px;
    object-fit: contain;
  }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.97rem;
  justify-content: flex-end;
  text-align: right;
  margin-left: auto;
}

.navbar-menu a {
  color: #2F3743;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.navbar-menu a:hover {
  color: #00a651;
}

/* --- Botões --- */
.navbar-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem; /* espaçamento mínimo entre botões */
  margin-left: 0.5rem;
}

.navbar-buttons a {
  margin: 0;
}

.btn-outline {
  border: 1.5px solid #00a651;
  background: transparent;
  color: #2F3743;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.btn-outline:hover {
  background-color: #00a651;
  color: #ffffff !important;
  border-color: #00a651;
  box-shadow: 0 0 8px rgba(0, 166, 81, 0.3);
  transition: all 0.25s ease;
}

.btn-filled {
  background: #00a651;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  transition: all 0.25s ease-in-out;
}

.btn-filled:hover {
  background: #008f46;
  box-shadow: 0 0 10px rgba(0, 143, 70, 0.3);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  /* Navbar mobile */
  .navbar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
  }

  .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px;
  }

  .navbar-logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
  }

  .navbar-menu {
    display: none !important;
  }

  .navbar-buttons {
    display: flex !important;
    margin-left: auto;
  }

  .navbar-buttons .btn-filled {
    padding: 8px 14px;
    font-size: 0.78rem;
    border-radius: 10px;
    white-space: nowrap;
  }

  .hamburger {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    background: transparent;
    padding: 0;
    margin-left: 4px;
  }

  .hamburger span {
    height: 3px;
    background: #1a1a1a;
    border-radius: 4px;
    transition: 0.25s;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .navbar-mobile-panel {
    padding: 8px 16px;
    width: 100%;
  }

  .navbar-mobile-panel .btn-filled {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 0;
    border-radius: 12px;
    font-size: 1rem;
  }

  .topbar {
    padding: 6px 12px !important;
    font-size: 0.82rem !important;
  }
}


/* ==========================
   POPUP DE CONTATO
   ========================== */

/* ====== ESTILO APRIMORADO DO POPUP DE CONTATO ====== */

.contact-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  max-width: 420px;
  width: 90%;
  text-align: left;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  border-top: 5px solid #00a651;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.contact-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Logo */
.contact-popup img {
  max-width: 150px;
  margin: 0 auto 1.5rem auto;
  display: block;
}

/* Título */
.contact-popup h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0b1e14;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Itens de contato */
.contact-popup .info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #374151;
  background: #f9fafb;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.contact-popup .info-item:hover {
  background: #eefcf3;
  border-left-color: #00a651;
}

/* Ícones SVG substitutos */
.contact-popup .info-item::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.contact-popup .info-item.phone::before {
  background-image: url('./assets/icons/phone.svg');
}

.contact-popup .info-item.clock::before {
  background-image: url('./assets/icons/clock.svg');
}

.contact-popup .info-item.mail::before {
  background-image: url('./assets/icons/mail.svg');
}

/* Botão de fechar */
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #64748b;
  cursor: pointer;
  transition: color 0.25s ease;
}

.popup-close:hover {
  color: #00a651;
}
/* ==========================
   HERO SECTION (modelo novo)
   ========================== */

:root{
  --cz-green:#00a651;
  --cz-green-dark:#008f46;
  --cz-dark:#111827;        /* gray-900 */
  --cz-text:#2F3743;        /* slate-800 */
  --cz-muted:#4B5563;       /* gray-600 */
  --cz-surface:#ffffff;
  --cz-soft:#f1f8f4;
  --cz-soft-2:#eefcf3;
  --cz-shadow:0 20px 50px rgba(0,0,0,.08);
}

.hero{
  position:relative;
  background: radial-gradient(80% 60% at 20% 10%, #eefdf4 0%, #fbfffc 42%, #ffffff 100%);
  padding: 4.5rem 0 3.25rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hero .container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.badge-eco{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.45rem .8rem;
  border-radius:999px;
  font-size:.88rem;
  font-weight:600;
  color:#0b7b48;
  background:#e9f9ef;
  border:1px solid #d7f2e0;
  box-shadow: 0 6px 18px rgba(0,166,81,.08);
}

.badge-eco .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--cz-green);
  box-shadow:0 0 0 3px rgba(0,166,81,.15);
  display:inline-block;
}

/* Título principal */
.hero-title{
  margin-top: 1.25rem;
  margin-bottom: .75rem;
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.2rem);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.02em;
  color:var(--cz-dark);
}

.hero-title .highlight{
  color:var(--cz-green);
}

/* Subtítulo */
.hero-sub{
  margin-top:1rem;
  margin-bottom: 1.75rem;
  font-size:1.05rem;
  color:var(--cz-muted);
  max-width: 56ch;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* CTA buttons */
.hero-ctas{
  display:flex;
  align-items:center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.btn-hero-primary,
.btn-hero-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  height:44px;
  padding: 0 18px;
  font-weight:700;
  font-size:.95rem;
  transition: all .22s ease-in-out;
}

.btn-hero-primary{
  background:var(--cz-green);
  color:#fff;
  box-shadow: 0 12px 24px rgba(0,166,81,.18);
}

.btn-hero-primary:hover{
  background:var(--cz-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,143,70,.22);
}

.btn-hero-secondary{
  background:#ffffff;
  color:var(--cz-text);
  border:1.8px solid var(--cz-green);
}

.btn-hero-secondary:hover{
  background:var(--cz-green);
  color:#fff;
  box-shadow:0 10px 22px rgba(0,166,81,.16);
}

/* Pills de destaque sobre a imagem (vidro) */
.hero-pills{
  display:flex;
  gap: 1.1rem;
  align-items:center;
  padding: .6rem .75rem;
  background: linear-gradient(180deg, rgba(232,246,236,.75) 0%, rgba(232,246,236,.55) 100%);
  border:1px solid #dbeee0;
  border-radius: 14px;
  width: fit-content;
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.5rem .8rem;
  background:#fff;
  border:1px solid #e7efe9;
  border-radius:11px;
  font-weight:600;
  color:var(--cz-text);
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.pill .dot{
  width:10px;height:10px;border-radius:50%;background:var(--cz-green);
  box-shadow:0 0 0 3px rgba(0,166,81,.15);
}

/* Métricas */
.stats{
  display:grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 2.25rem;
  margin-top: 2.25rem;
  max-width: 880px;
}

.stat-item .number{
  font-weight:800;
  color: #00a651;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  letter-spacing:-.01em;
}

.stat-item .caption{
  color:#4b5563;
  font-size:.92rem;
  margin-top:.25rem;
}

/* Responsivo */
@media (max-width: 1024px){
  .hero{ padding: 3.5rem 0 2.5rem; }
  .hero-ctas{ gap:.6rem; }
  .stats{ grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.25rem; }
}
@media (max-width: 640px){
  .hero-title{ font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-pills{ display:none; }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas a {
    width: 100%;
    text-align: center;
  }
}
/* Navbar logo legibilidade sobre o hero */
.navbar img {
  filter: none !important;
}

/* ==========================
   AJUSTES DE REFINO VISUAL — HERÓI
   ========================== */

/* Fundo com degradê mais perceptível */
.hero {
  background: radial-gradient(90% 100% at 20% 10%, #eaf9ef 0%, #f7fdf9 45%, #ffffff 100%);
}

/* Tipografia principal com contraste e peso ajustados */
.hero-title {
  color: #0b1221;
  line-height: 1.05;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.hero-title .highlight {
  color: #00a651;
  font-weight: 800;
}

/* Subtítulo mais compacto e com tom suave */
.hero-sub {
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.55;
}

/* Espaçamento dos botões mais equilibrado */
.hero-ctas {
  margin-bottom: 1.5rem;
}

/* Pills flutuantes com vidro fosco e sombra realista */
.hero-pills {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 166, 81, 0.15);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.pill {
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

/* --- Animações suaves para destaque dos pills --- */

/* PILL A — flutuação + pulsação */
.pill.floating {
  animation: floatPill 4s ease-in-out infinite;
}

@keyframes floatPill {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-4px); }
  100% { transform: translateY(0px); }
}

/* Dot com pulsação (usado em ambos) */
.pill .dot {
  animation: pulseDot 1.8s ease-in-out infinite;
}

/* PILL B — pulsação + shimmer */
.pill.shimmer {
  position: relative;
  overflow: hidden;
}

.pill.shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 140%;
  height: 100%;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0) 100%
  );
  animation: shimmerPill 4s infinite;
}

@keyframes shimmerPill {
  0% { left: -150%; }
  100% { left: 150%; }
}

@keyframes pulseDot {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.18); opacity: 0.75; }
  100% { transform: scale(1); opacity: 1; }
}

/* Métricas com espaçamento e contraste refinados */
.stats {
  gap: 3rem;
}

.stat-item .number {
  font-size: 2rem;
  font-weight: 800;
  color: #00a651;
}

.stat-item .caption {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Imagem com bordas arredondadas e sombra profunda */
.hero img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ====== AJUSTES FINOS PARA EQUILÍBRIO VISUAL ====== */

/* Fundo com tonalidade mais suave e contínua */
.hero {
  background: linear-gradient(180deg, #f2fbf6 0%, #f8fdfb 50%, #ffffff 100%);
}

/* Título mais “respirado” e confortável */
.hero-title {
  color: #101820;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero-title .highlight {
  color: #00a04a; /* levemente mais fria que #00a651 */
}

/* Texto secundário mais legível */
.hero-sub {
  color: #515c5a;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 560px;
}

/* Botões mais equilibrados */
.btn-hero-primary {
  background: #00a651;
  box-shadow: 0 10px 24px rgba(0, 166, 81, 0.25);
}

.btn-hero-primary:hover {
  background: #009d4b;
  box-shadow: 0 14px 28px rgba(0, 143, 70, 0.25);
}

.btn-hero-secondary {
  border: 1.6px solid #00a651;
  color: #1e2b21;
  background: #ffffff;
}

.btn-hero-secondary:hover {
  background: #00a651;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 166, 81, 0.2);
}

/* Pills flutuantes com blur mais natural */
.hero-pills {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 166, 81, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

/* Sombra da imagem mais suave */
.hero img {
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}
/* ==========================
   SESSÃO RASTREIO — Carbono Zero
   ========================== */
/* Centralização vertical e harmonia */
.tracking-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh; /* garante equilíbrio de espaçamento */
  padding: 5rem 1rem;
  background: #fff;
}

.tracking-section h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 2rem;
  color: #101820;
  font-weight: 800;
}

.tracking-section p {
  margin-bottom: 2.25rem;
  color: #4b5563;
  font-size: 1rem;
}

.tracking-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e9f9ef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.tracking-icon svg {
  width: 28px;
  height: 28px;
  color: #00a651;
}

.tracking-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 1rem;
}

.tracking-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #374151;
  outline: none;
  transition: border 0.25s ease;
}

.tracking-form input:focus {
  border-color: #00a651;
}

.tracking-form button {
  background: #00a651;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.tracking-form button:hover {
  background: #008f46;
  box-shadow: 0 8px 18px rgba(0, 143, 70, 0.2);
  transform: translateY(-1px);
}

.tracking-whatsapp {
  font-size: 0.95rem;
  color: #00a651;
  margin-top: 1.25rem;
  display: inline-block;
  transition: color 0.25s;
}


.tracking-whatsapp:hover {
  color: #008f46;
}

/* ==========================
   SESSÃO SERVIÇOS — Carbono Zero
   ========================== */

.services-section {
  background: linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
  padding: 6rem 1.5rem;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.services-section h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #101820;
  margin-bottom: 0.5rem;
}

.services-section p.subtitle {
  color: #4b5563;
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* Container dos cards */
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Estilo base dos cards */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  border-color: rgba(0,166,81,0.25);
}

/* Cabeçalho dos cards */
.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #101820;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

/* Listagem de benefícios */
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.service-card ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: #374151;
  margin-bottom: 0.6rem;
}

.service-card ul li::before {
  content: "✔";
  font-weight: 700;
}

/* Ícone animado nos cards */
.service-card .icon {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover .icon {
  transform: scale(1.07);
  box-shadow: 0 0 0 4px rgba(0,166,81,0.12);
}

/* ---- VARIAÇÃO: Entregas Sustentáveis ---- */
.service-card.entregas {
  border-color: #d7f2e0;
}

.service-card.entregas .icon {
  background: #e9f9ef;
}

.service-card.entregas ul li::before {
  color: #00a651;
}

.service-card.entregas .btn {
  background: #00a651;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  transition: all 0.25s ease;
}

.service-card.entregas .btn:hover {
  background: #008f46;
  box-shadow: 0 8px 18px rgba(0, 143, 70, 0.2);
}

/* ---- VARIAÇÃO: EQUIPE DEDICADA ---- */
.service-card.dedicado {
  background: #f2f6ff;
  border-color: #c7ddff;
}

.service-card.dedicado .icon {
  background: #e8f0fe;
}

.service-card.dedicado ul li::before {
  color: #2563eb;
}

.service-card.dedicado .btn {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  transition: all 0.25s ease;
}

.service-card.dedicado .btn:hover {
  background: #1d4ed8;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .services-section {
    padding: 4rem 1rem;
  }
  .services-section h2 {
    font-size: 1.8rem;
  }
}
/* ==========================
   CARROSSEL DE PARCEIROS
   ========================== */

.partners-section {
  background: #f9fafb;
  padding: 5rem 1rem;
  text-align: center;
}

.partners-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #101820;
  margin-bottom: 0.5rem;
}

.partners-section p {
  color: #4b5563;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* Centralização dos títulos e subtítulos da seção */
.partners-section,
.partners-section * {
  text-align: center;
}

.partners-section h2,
.partners-section p {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-logo {
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem 1.75rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.9;
}

.partner-logo img {
  max-width: 100%;
  height: auto;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  filter: grayscale(0%) contrast(1.1);
  opacity: 1;
}

/* ==========================
   CARROSSEL DE CLIENTES — Carbono Zero
   ========================== */

.clients-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  background: #ffffff;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: scrollClients 120s linear infinite;
  width: max-content;
}

.client-logo {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.08);
  opacity: 0.9;
}

.clients-carousel:hover .clients-track {
  animation-play-state: paused;
}

@keyframes scrollClients {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .clients-track {
    gap: 2rem;
    animation-duration: 160s;
  }
  .client-logo {
    height: 56px;
  }
}


/* ==========================
   SEÇÃO COMPARAÇÃO — index #comparacao-entregas
   Nova versão (HTML aplicado previamente)
   ========================== */

#comparacao-entregas{
  padding: 4rem 1rem 3rem;
  background: linear-gradient(180deg,#f6fbf8 0%,#ffffff 100%);
}

#comparacao-entregas .section-title{
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.25rem);
  font-weight: 800;
  color:#101820;
  text-align:center;
  margin-bottom:.35rem;
  letter-spacing:-.01em;
}

#comparacao-entregas .section-subtitle{
  text-align:center;
  color:#4b5563;
  font-size:1rem;
  margin-bottom:2.25rem;
}

/* Botões de alternância */
#comparacao-entregas .toggle-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin: 0 auto 2rem;
  max-width:1100px;
}

#comparacao-entregas .toggle-btn{
  flex:1;
  padding: 1.25rem 2rem;
  font-size:1.05rem;
  font-weight:700;
  border-radius:14px;
  border:1px solid #e5e7eb;
  background:#ffffff;
  color:#2f3743;
  cursor:pointer;
  transition: all .25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  text-align:center;
}

/* --- Mobile-friendly layout (two buttons side by side) --- */
@media (max-width: 640px) {
  #comparacao-entregas .toggle-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin: 1.5rem auto;
  }

  #comparacao-entregas .toggle-btn {
    flex: 1 1 50%;
    padding: 1rem 0.75rem;
    font-size: 0.95rem;
    border-radius: 14px;
    white-space: normal;
    text-align: center;
  }

  #comparacao-entregas .toggle-btn:hover {
    transform: translateY(-1px);
  }
}

#comparacao-entregas .toggle-btn.active{
  background:#00a651;
  color:#ffffff;
  border-color:#00a651;
  box-shadow: 0 8px 18px rgba(0,166,81,.22);
}

#comparacao-entregas .toggle-btn:hover{
  transform: translateY(-2px);
}

/* Grid de comparação em pares */
#comparacao-entregas .comparison-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  max-width:1100px;
  margin: 0 auto 2rem;
}

#comparacao-entregas .comparison-item{
  background:#ffffff;
  border-radius:16px;
  padding:18px 20px;
  display:flex;
  align-items:center;
  gap:14px;
  border:1.5px solid #eef2f7;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}

#comparacao-entregas .comparison-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}

#comparacao-entregas .comparison-item .icon-circle{
  min-width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

#comparacao-entregas .comparison-item.positive{
  border-color:#cfeee0;
}

#comparacao-entregas .comparison-item.positive .icon-circle{
  background:#e9f9ef;
}

#comparacao-entregas .comparison-item.positive .check-icon{
  color:#00a651;
  font-weight:800;
  font-size:18px;
  line-height:1;
}

#comparacao-entregas .comparison-item.negative{
  border-color:#ffd7db;
}

#comparacao-entregas .comparison-item.negative .icon-circle{
  background:#ffebee;
}

#comparacao-entregas .comparison-item.negative .x-icon{
  color:#ef4444;
  font-weight:800;
  font-size:18px;
  line-height:1;
}

#comparacao-entregas .svg-icon{
  width:22px;
  height:22px;
  stroke:#4b5563;
  fill:none;
  stroke-width:1.7;
  flex-shrink:0;
}

#comparacao-entregas .item-text{
  font-size:1rem;
  color:#2f3743;
  font-weight:600;
}

/* Badge de CO2 */
#comparacao-entregas .co2-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #e9f9ef;
  color: #0b7b48;
  padding: 1.25rem 1.75rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 10px 24px rgba(0,166,81,.15);
  margin: 3rem auto 0;
  max-width: 800px;
  line-height: 1.4;
  border: 1.5px solid rgba(0,166,81,.15);
}

#comparacao-entregas .co2-badge strong {
  color: #00a651;
  font-weight: 800;
  margin: 0 4px;
}

#comparacao-entregas .co2-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00a651;
  box-shadow: 0 0 0 3px rgba(0,166,81,.15);
  margin-right: 10px;
}

/* Responsivo */
@media (max-width: 900px){
  #comparacao-entregas .comparison-grid{
    grid-template-columns: 1fr;
    gap:14px;
  }
}

@media (max-width: 520px){
  #comparacao-entregas .toggle-buttons{
    gap:10px;
  }
  #comparacao-entregas .toggle-btn{
    width:100%;
    max-width:320px;
  }
}
/* ==========================
   SEÇÃO INTEGRAÇÃO — Sistema Conectado (Carbono Zero)
   ========================== */

.integration-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.integration-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

.integration-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.integration-section .section-subtitle {
  font-size: 1.125rem;
  color: #666;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Fluxo de integração */
.integration-flow {
  display: flex;
  flex-wrap: wrap; /* permite que os cards quebrem linha */
  justify-content: center;
  align-items: flex-start;
  gap: 2rem; /* espaçamento uniforme entre todos os cards */
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  align-content: center;
}

/* Etapa individual */
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 180px;
  flex: 0 0 220px; /* largura fixa para uniformizar o espaço entre cards */
  width: 220px;
}

/* Número da etapa */
.flow-step .step-number {
  width: 40px;
  height: 40px;
  background: #00A651;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.25);
  z-index: 2;
}

/* Card da etapa */
.flow-step .step-card {
  background: white;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  width: 100%; /* acompanha a largura fixa do step */
}

.flow-step .step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-color: #00A651;
}

/* Ícone da etapa */
.flow-step .step-icon {
  width: 60px;
  height: 60px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.flow-step .step-icon svg {
  width: 28px;
  height: 28px;
  color: #00A651;
  stroke-width: 2;
}

/* Título da etapa */
.flow-step .step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Descrição da etapa */
.flow-step .step-description {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.4;
}

/* Seta entre etapas */
.flow-step .step-arrow {
  position: absolute;
  right: -20px;
  top: 60px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.flow-step .step-arrow svg {
  width: 24px;
  height: 24px;
  color: #00A651;
  stroke-width: 3; /* seta ligeiramente mais grossa */
}

/* Última etapa sem seta */
.flow-step:last-child .step-arrow {
  display: none;
}

/* Responsivo */
@media (max-width: 1200px) {
  .integration-flow {
    justify-content: center;
    padding-bottom: 30px;
  }

  .flow-step {
    min-width: 160px;
  }

  .flow-step .step-card {
    min-height: 160px;
    padding: 20px 16px;
  }

  .flow-step .step-title {
    font-size: 0.9rem;
  }

  .flow-step .step-description {
    font-size: 0.8rem;
  }

  .flow-step { flex: 0 0 200px; width: 200px; }
}

@media (max-width: 768px) {
  .integration-section .section-title {
    font-size: 1.75rem;
  }

  .integration-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .integration-flow {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .flow-step {
    width: 100%;
    max-width: 300px;
  }

  .flow-step .step-card {
    width: 100%;
  }

  .flow-step .step-arrow {
    position: static;
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .flow-step:last-child .step-arrow {
    display: none;
  }
}
/* ===== AJUSTES FINOS — SEÇÃO INTEGRAÇÃO ===== */

.integration-section {
  background: linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
}

/* Cards */
.flow-step .step-card {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #f3f3f3;
}

/* Números */
.flow-step .step-number {
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0, 166, 81, 0.25);
  transform: translateY(-2px);
}

/* Setas */
.flow-step .step-arrow {
  right: -16px;
  top: 56px;
}

.flow-step .step-arrow svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.6;
}

/* Tipografia */
.flow-step .step-title {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.flow-step .step-description {
  color: #6b7280; /* gray-500 */
}

/* Ícones */
.flow-step .step-icon {
  background: #f1faf4;
  box-shadow: inset 0 0 0 1px #d9f2e2;
}

.flow-step .step-icon svg {
  width: 24px;
  height: 24px;
}
/* ==========================
   GRID DE INTEGRAÇÕES — Sistema Conectado (Carbono Zero)
   ========================== */

.integration-logos {
  margin-top: 80px;
  text-align: center;
}

.integration-logos-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #101820;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.integration-grid img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.05);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.integration-grid img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .integration-logos {
    margin-top: 60px;
  }

  .integration-logos-title {
    font-size: 1.25rem;
    margin-bottom: 28px;
  }

  .integration-grid {
    gap: 1.75rem;
  }

  .integration-grid img {
    max-height: 45px;
  }
}
/* ==========================
   SEÇÃO FAQ — Carbono Zero
   ========================== */

.faq-section {
  background: #ffffff;
  padding: 6rem 1.5rem;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #101820;
  margin-bottom: 0.5rem;
}

.faq-section p.subtitle {
  color: #4b5563;
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* Container principal */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Card do FAQ */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f1f1;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

/* Cabeçalho da pergunta */
.faq-question {
  cursor: pointer;
  padding: 1.25rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: #00a651;
  transition: transform 0.3s ease;
}

/* Resposta */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.75rem;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: all 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 1.75rem 1.5rem;
  opacity: 1;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

/* Responsivo */
@media (max-width: 640px) {
  .faq-section {
    padding: 4rem 1rem;
  }
  .faq-section h2 {
    font-size: 1.75rem;
  }
  .faq-question {
    font-size: 0.95rem;
  }
}
/* ==========================
   AJUSTE GLOBAL DE CONTAINERS
   ========================== */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}
/* ==========================
   SEÇÃO ENTREGADOR — NOVO ESTILO (Clean + Glassmorphism)
   ========================== */

/* ==========================
   SEÇÃO ENTREGADOR — ESTILO PREMIUM 2025
   ========================== */

/* ==========================
   SEÇÃO ENTREGADOR — NOVO ESTILO CLEAN E MODERNO
   ========================== */
.section-entregador {
  background: #EDF4F0;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- Ajuste da grid da seção do Entregador --- */
.entregador-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Ajuste da tipografia */
.entregador-container h1 {
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 800;
}

.entregador-container p.description {
  color: #4b5563;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

/* Ajuste dos itens de benefício */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.benefit-item:last-child {
  margin-bottom: 2rem;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: #e8f7ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,166,81,0.12);
}

.benefit-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.benefit-item p {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
}

/* Ajuste do botão principal */
.entregador-button {
  margin-top: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,166,81,0.15);
}

/* Card da imagem */
.entregador-photo-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  position: relative;
}

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

.entregador-photo-card .cta-inside {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: auto;
  padding: 0.9rem 1.4rem;
  background: #ffffff;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border: 1.5px solid #eef2f7;
}

.entregador-photo-card .cta-inside::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00a651;
  box-shadow: 0 0 0 4px rgba(0,166,81,0.12);
  display: inline-block;
}

.entregador-texto {
  flex: 1 1 520px;
}

.entregador-texto h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.entregador-texto p {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.beneficios {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.beneficio {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-circle {
  background: #00A651;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 166, 81, 0.25);
}

.icon-circle i {
  color: #ffffff;
  font-size: 22px;
}

.beneficio-texto h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.beneficio-texto p {
  color: #666;
  font-size: 0.95rem;
}

.entregador-lista {
  list-style: none;
  margin-bottom: 40px;
}

.entregador-lista li {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.entregador-btn {
  display: inline-block;
  background: #00A651;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.entregador-btn:hover {
  background: #008e45;
}

/* Imagem e card lateral */
.entregador-imagem {
  position: relative;
  flex: 1 1 520px;
}

.imagem-equipe {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Card da área do entregador — Glassmorphism Premium */
/* Card da área do entregador — Glassmorphism Premium */
.entregador-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border: 1.5px solid #eef2f7;
}

.entregador-card::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00a651;
  box-shadow: 0 0 0 4px rgba(0,166,81,0.12);
  display: inline-block;
}

.entregador-card h3 {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* Responsivo */
@media (max-width: 768px) {
  .entregador-card {
    width: auto;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 0.85rem 1.2rem;
  }
  .entregador-card h3 {
    font-size: 0.95rem;
  }
}

/* Responsividade */
@media (max-width: 992px) {
  .entregador-container {
    flex-direction: column;
    gap: 40px;
  }

  .entregador-card {
    width: 85%;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* ==========================
   RODAPÉ — Carbono Zero Courier (versão com verde bonito #009f57)
   ========================== */

/* ==========================
   RODAPÉ — Estilo Moderno e Limpo (Carbono Zero)
   ========================== */

/* ==========================
   RODAPÉ — Estilo Moderno e Limpo (Carbono Zero)
   ========================== */

.footer {
  background: #0B3D2E;
  color: #ffffff;
  padding: 40px 40px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  border-top: 3px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  align-items: flex-start;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 1.5rem;
  filter: brightness(1.05);
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.footer-column p,
.footer-column address,
.footer-column ul li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.45rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.2s ease-in-out;
}

.footer-column ul li a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer address {
  font-style: normal;
  margin-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a svg {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.8);
  transition: fill 0.2s ease-in-out;
}

.social-icons a:hover svg {
  fill: #ffffff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
  color: #b5b5b5;
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 20px 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-logo {
    margin: 0 auto 1rem;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Botões */
.btn, .wp-block-button__link {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

/* Ícones de fundo suaves */
.icon-bg svg {
  opacity: 0.04;
}
.footer-socials {
  margin-top: 15px;
}

.footer-socials i {
  font-size: 22px;
  color: #ffffff;
  margin-right: 14px;
  transition: color 0.3s ease;
}

.footer-socials i:hover {
  color: #00A651; /* verde Carbono */
}

.footer-socials a:last-child i {
  margin-right: 0;
}

/* Popup Global - Contato Operação */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  display: block;
  opacity: 1;
}

.contact-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  text-align: center;
  max-width: 360px;
  width: 90%;
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
}

.contact-popup.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.contact-popup .popup-logo {
  max-width: 130px;
  margin-bottom: 12px;
}

.contact-popup h3 {
  color: #1C5B38;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-popup p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 0.6rem; /* espaçamento entre os textos */
}

.popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}

.popup-close:hover {
  color: #00A651;
}

/* ==========================
   HERO SECUNDARIO — VISUAL PREMIUM (Carbono Zero)
   ========================== */

.hero-secundario {
  position: relative;
  min-height: 650px;
  display: flex;
  padding: 5rem 0 4.5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-secundario::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.50) 100%),
    radial-gradient(circle at center, rgba(0,0,0,.70) 0%, rgba(0,0,0,.10) 75%);
  backdrop-filter: blur(1px);
  z-index: 1;
  pointer-events: none;
}

.hero-entregas .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Wrapper genérico de heróis baseado em section */
.hero-section {
  position: relative;
  width: 100%;
}

/* Conteúdo centralizado da hero de distribuição */
.hero-secundario-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Container dos botões da hero */
.hero-buttons,
.hero-secundario-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Nota de apoio abaixo dos botões */
.hero-note,
.hero-secundario-note {
  font-size: 0.9rem;
  margin-top: 1.5rem;
  opacity: 0.9;
  color: #e8edea;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-secundario h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-secundario p {
  color: #e8edea;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-entregas .btn-hero-primary,
.hero-entregas .btn-hero-secondary {
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-entregas .btn-hero-primary:hover,
.hero-entregas .btn-hero-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* ==========================
   SESSÃO 2 — FRASE DE IMPACTO (Distribuição)
   ========================== */

.impact-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #F3F8F4 0%, #FFFFFF 100%);
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  text-align: center;
}

.impact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.impact-text {
  font-size: clamp(1.6rem, 1.3rem + 0.8vw, 1.9rem);
  font-weight: 600;
  color: #1C5B38;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.impact-text .impact-sub {
  font-weight: 400;
  color: #2E7D32;
  display: inline-block;
  margin-top: 0.5rem;
}

.impact-divider {
  width: 80px;
  height: 3px;
  background: #00A651;
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .impact-section {
    padding: 3.5rem 1.25rem;
  }

  .impact-text {
    font-size: 1.35rem;
  }
}
/* Suavização do contador animado */
.stat-item .number {
  display: inline-block;
  min-width: 80px; /* evita o “salto” durante a contagem */
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.stat-item .number.animating {
  opacity: 0.9;
  transform: translateY(-2px);
}
/* --- MOBILE RESPONSIVO DA SEÇÃO ENTREGADOR --- */
@media (max-width: 768px) {

  .entregador-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefit-item {
    margin-bottom: 1.2rem;
  }

  .entregador-photo-card {
    border-radius: 14px;
  }

  .entregador-photo-card .cta-inside {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 0.85rem 1.4rem;
    font-size: 0.95rem;
  }
}
/* Animação suave para as setas do fluxo */
.step-card .arrow {
  animation: arrowFlow 1.6s ease-in-out infinite;
}

@keyframes arrowFlow {
  0% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(4px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }
}
/* ==========================
   HERO CTA FINAL — PADRÃO GLOBAL
   ========================== */

.hero-secundario-final {
  position: relative;
  padding: 5rem 1.5rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

/* BG ocupa toda a largura da seção */
.hero-secundario-final .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-secundario-final .hero-bg img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* Overlay escurecendo a foto */
.hero-secundario-final .hero-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(0,166,81,0.45), transparent 60%),
              rgba(0, 0, 0, 0.55);
}

/* Card de conteúdo central */
.hero-secundario-final .hero-content {
  position: relative;
  z-index: 5;
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 2.75rem;
  background: rgba(15, 23, 42, 0.86);
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

/* Título */
.hero-secundario-final h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.55);
}

/* Subtítulo */
.hero-secundario-final p {
  font-size: 1.1rem;
  opacity: 0.96;
  margin-bottom: 2rem;
  color: #e5f4ec;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
}

/* Botões */
.hero-secundario-final .hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-secundario-final .btn-hero-primary {
  background: #00a651;
}

.hero-secundario-final .btn-hero-primary:hover {
  background: #008f46;
}

/* Ajuste mobile */
@media (max-width: 768px) {
    /* --- HERO SECTIONS GERAIS --- */
  .hero-section {
    padding: 4rem 1.5rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 5.5vw, 2.35rem);
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
    padding: 16px 20px;
    min-height: 48px;
  }

  /* --- HERO SECUNDARIO (Distribuição / Dedicado) — ajustes específicos mobile --- */
  .hero-secundario {
    min-height: 520px;
    padding: 4.5rem 1.5rem 3.25rem;
    align-items: center;
  }

  .hero-secundario-title {
    font-size: clamp(1.9rem, 5.4vw, 2.4rem);
    line-height: 1.2;
  }

  .hero-secundario-subtitle {
    font-size: 1.02rem;
    margin-bottom: 1.8rem;
  }

  .hero-secundario-note {
    font-size: 0.85rem;
    margin-top: 1.25rem;
  }

  .hero-secundario-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-secundario-buttons .btn-hero-primary,
  .hero-secundario-buttons .btn-hero-secondary {
    width: 100%;
  }

  .hero-secundario-final {
    padding: 4rem 1.25rem;
  }

  .hero-secundario-final .hero-content {
    padding: 2rem 1.75rem;
    border-radius: 18px;
  }

  .hero-secundario-final h1 {
    font-size: 2rem;
  }

  .hero-secundario-final p {
    font-size: 1rem;
  }
}

/* ==========================
   SESSÃO 3 — COMO FUNCIONA (Distribuição)
   Extração fiel do CSS inline
   ========================== */

.como-funciona-section {
  padding: 5rem 2rem;
  background: #F3F8F4;
}

.como-funciona-container {
  max-width: 1280px;
  margin: 0 auto;
}

.como-funciona-header {
  text-align: center;
  margin-bottom: 3rem;
}

.como-funciona-tag {
  font-size: 0.875rem;
  font-weight: 600;
  color: #00A651;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.como-funciona-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
}

.como-funciona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.como-funciona-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.como-funciona-step-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 4px solid #00A651;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.como-funciona-step-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00A651, #00C853);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,166,81,0.3);
}

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

.como-funciona-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #111827;
}

.como-funciona-step-text {
  font-size: 0.875rem;
  color: #4B5563;
}

.como-funciona-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.como-funciona-image {
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  margin: 2rem auto;
  display: block;
}

/* ==========================
   SESSÃO 4 — BENEFÍCIOS (Distribuição)
   ========================== */

.beneficios-section {
  padding: 10rem 2rem;
  background: white;
}

.beneficios-container {
  max-width: 1280px;
  margin: 0 auto;
}

.beneficios-header {
  text-align: center;
  margin-bottom: 3rem;
}

.beneficios-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.beneficios-subtitle {
  color: #4B5563;
}

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

.beneficio-card {
  background: #F9FAFB;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
}

.beneficio-icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(0,166,81,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.beneficio-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #00A651;
}

.beneficio-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}

.beneficio-text {
  font-size: 0.875rem;
  color: #4B5563;
}

/* Badge SLA */
.beneficio-sla-badge {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  background: #00A651;
  color: white;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,166,81,0.4);
}

/* ==========================
   SESSÃO 5 — INTEGRAÇÕES (Distribuição)
   ========================== */

.integracoes-section {
  padding: 8rem 2rem;
  background: #F9FAFB;
}

.integracoes-container {
  max-width: 1280px;
  margin: 0 auto;
}

.integracoes-header {
  text-align: center;
  margin-bottom: 3rem;
}

.integracoes-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.integracoes-subtitle {
  color: #4B5563;
}

.client-logo {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

/* ==========================
   SESSÃO 6 — SLA BANNER (Distribuição)
   ========================== */

.sla-section {
  padding: 4rem 2rem;
  background: #E8F5E9;
}

.sla-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.sla-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.sla-badge {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #00A651;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,166,81,0.4);
}

.sla-text {
  text-align: left;
  max-width: 600px;
}

.sla-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2E7D32;
  margin-bottom: 0.5rem;
}

.sla-subtitle {
  color: #4B5563;
  font-style: italic;
}

/* ==========================
   SESSÃO 7 — ODS (Distribuição)
   ========================== */

.ods-section {
  padding: 10rem 2rem;
  background: white;
}

.ods-container {
  max-width: 1280px;
  margin: 0 auto;
}

.ods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  align-items: center;
}

.ods-image-wrapper {
  width: 100%;
}

.ods-image {
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  width: 100%;
  display: block;
}

.ods-badge {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #E3F2FD;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ods-badge-text {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1976D2;
}

.ods-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.ods-text {
  font-size: 1.125rem;
  color: #4B5563;
  line-height: 1.7;
}


/* ========================================
   ESTILOS INLINE CONSOLIDADOS
   Migrados de atributos style="" para CSS
   ======================================== */

/* ========================================
   ESTILOS CONSOLIDADOS - CARBONO ZERO
   Otimizado e sem duplicações
   Total de regras: 108
   Redução: 206 regras eliminadas
   ======================================== */

/* Original: <section> */
.inline-style-1 {

  background: #0F172A;
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;

}

/* Original: <div> */
.inline-style-2 {

  position: absolute;
  inset: 0;
  background-image: url('./assets/Nossa equipe.png');
  background-size: cover;
  background-position: center;
  opacity: 0.4;

}

/* Original: <div class="container"> (consolidado de 2 classes) */
.container-inline {

  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;

}

/* Original: <h1> (consolidado de 3 classes) */
.inline-style-3 {

  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;

}

/* Original: <p> */
.inline-style-4 {

  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.95;

}

/* Original: <a class="btn-hero-primary"> */
.btn-hero-primary-inline {

  background: white;
  color: #0F172A;

}

/* Original: <section> */
.inline-style-5 {

  padding: 4rem 2rem;
  background: white;
  text-align: center;

}

/* Original: <div class="container"> */
.container-inline {

  max-width: 1000px;
  margin: 0 auto;

}

/* Original: <p> */
.inline-style-6 {

  font-size: 1.875rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.6;

}

/* ============================
   SEÇÃO DE MODAIS — ESTILO AJUSTADO
============================ */

/* Seção geral */
.inline-style-7 {
  background: #f7faf7;
  padding: 4rem 1.5rem 5rem;
}

/* Título e subtítulo */
.inline-style-8 {
  text-align: center;
  margin-bottom: 3rem;
}

.inline-style-9 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f1a14;
  letter-spacing: -0.5px;
}

.inline-style-10 {
  font-size: 1.15rem;
  color: #5d6d61;
  margin-top: 0.4rem;
}

/* GRID dos cards */
.inline-style-11 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
}

/* CARD */
.inline-style-12 {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.inline-style-12:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

/* Faixas superiores com gradientes */
.inline-style-13,
.inline-style-19,
.inline-style-25 {
  display: flex;
  justify-content: center;
  padding: 18px;
}

/* Biker + Furgão = verde */
.inline-style-13,
.inline-style-25 {
  background: linear-gradient(135deg, #00a651 0%, #008142 100%);
}

/* E-Biker = azul */
.inline-style-19 {
  background: linear-gradient(135deg, #3a78ff 0%, #2d5dd1 100%);
}

/* Imagens */
.inline-style-14 {
  width: 100%;
  max-width: 330px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* Conteúdo interno */
.inline-style-15 {
  padding: 2rem 1.5rem 2.2rem;
  text-align: center;
}

/* Título do card */
.inline-style-16 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #14231d;
  margin-bottom: 0.8rem;
}

/* Texto do card */
.inline-style-17 {
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  color: #46554f;
  max-width: 320px;
  margin: 0 auto;
}

/* Original: <section> (consolidado de 3 classes) */
.inline-style-30 {

  padding: 5rem 2rem;
  background: #F3F8F4;

}

/* Original: <div> */
.inline-style-31 {

  text-align: center;
  margin-bottom: 1rem;

}

/* Original: <p> */
.inline-style-32 {

  font-size: 0.875rem;
  font-weight: 600;
  color: #00A651;
  text-transform: uppercase;
  letter-spacing: 0.05em;

}

/* Original: <h2> */
.inline-style-34 {

  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;

}

/* Original: <div> */
.inline-style-35 {

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;

}

/* Original: <div> (consolidado de 10 classes) */
.inline-style-36 {

  text-align: center;

}

/* Original: <div> (consolidado de 4 classes) */
.inline-style-37 {

  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: white;
  color: #00A651;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(0,166,81,0.2);
  font-size: 1.5rem;
  font-weight: 700;

}

/* Original: <h3> (consolidado de 4 classes) */
.inline-style-38 {

  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;

}

/* Original: <p> (consolidado de 25 classes) */
.inline-style-39 {

  font-size: 0.875rem;
  color: #4B5563;

}


/* ============================
   BENEFÍCIOS PREMIUM — EQUIPE DEDICADA
============================ */

.benefits-section {
  background: #020617; /* mais profundo que o topo, para destacar os cards */
  padding: 4.5rem 0 4rem;
  color: #e5f1eb;
}

.benefits-section h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem 2rem;
}

.benefits-grid .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.6rem 1.5rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.5);
}

.benefits-grid .benefit-item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: #22e07b;
}

.benefits-grid .benefit-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #f3f4f6;
}

.benefits-final-box {
  margin-top: 3rem;
  padding: 1.4rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,166,81,0.35), rgba(0,166,81,0.20));
  border: 1.5px solid #00a651;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0,166,81,0.22);
  text-shadow: 0 2px 6px rgba(0,0,0,0.45);
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 3.5rem 0 3rem;
  }

  .benefits-section h2 {
    font-size: 1.9rem;
    margin-bottom: 2rem;
  }

  .benefits-final-box {
    border-radius: 16px;
    padding: 1.2rem 1.4rem;
  }
}

/* Original: <section> (consolidado de 7 classes) */
.inline-style-76 {

  padding: 5rem 2rem;
  background: white;

}

/* Original: <div> */
.inline-style-80 {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;

}

/* Original: <div> */
.inline-style-81 {

  background: #FEE2E2;
  border-radius: 12px 12px 0 0;
  padding: 1.5rem;
  text-align: center;

}

/* Original: <h3> */
.inline-style-82 {

  font-size: 1.25rem;
  font-weight: 700;
  color: #991B1B;

}

/* Original: <div> (consolidado de 2 classes) */
.inline-style-83 {

  background: #F9FAFB;
  border-radius: 0 0 12px 12px;
  padding: 2rem;

}

/* Original: <div> (consolidado de 2 classes) */
.inline-style-84 {

  display: flex;
  flex-direction: column;
  gap: 1rem;

}

/* Original: <div> (consolidado de 10 classes) */
.inline-style-85 {

  display: flex;
  gap: 0.75rem;
  align-items: flex-start;

}

/* Original: <svg> (consolidado de 5 classes) */
.inline-style-86 {

  width: 1.25rem;
  height: 1.25rem;
  color: #DC2626;
  flex-shrink: 0;

}

/* Original: <div> */
.inline-style-100 {

  background: #DCFCE7;
  border-radius: 12px 12px 0 0;
  padding: 1.5rem;
  text-align: center;

}

/* Original: <h3> */
.inline-style-101 {

  font-size: 1.25rem;
  font-weight: 700;
  color: #166534;

}

/* Original: <svg> (consolidado de 5 classes) */
.inline-style-105 {

  width: 1.25rem;
  height: 1.25rem;
  color: #16A34A;
  flex-shrink: 0;

}

/* Original: <section> (consolidado de 3 classes) */
.inline-style-119 {

  background: #00A651;
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;

}

/* Original: <div> (consolidado de 2 classes) */
.inline-style-120 {

  position: absolute;
  inset: 0;
  background-image: url('./assets/E-biker 1.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;

}

/* Original: <h2> */
.inline-style-121 {

  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;

}

/* Original: <a class="btn-hero-primary"> */
.btn-hero-primary-inline {

  background: white;
  color: #00A651;

}

/* Original: <div class="grid"> */
.grid-inline {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;

}

/* Original: <div class="relative"> */
.relative-inline {

  position: relative;

}

/* Original: <img class="rounded-2xl shadow-xl w-full"> */
.rounded-2xl-shadow-xl-w-full-inline {

  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
  width: 100%;

}

/* Wrapper da imagem */
.relative-inline {
  position: relative;
}

/* Posição base dos pills sobre a imagem */
.hero-pills-inline {
  position: absolute;
  z-index: 3;
}

/* Pill superior direita (Rastreamento em tempo real) */
.hero-pill-top-right {
  top: 1.25rem;
  right: 1.25rem;
}

/* Pill inferior esquerda (Energia 100% limpa) */
.hero-pill-bottom-left {
  bottom: 1.25rem;
  left: 1.25rem;
}

/* Original: <img class="popup-logo"> (consolidado de 2 classes) */
.popup-logo-inline {

  max-width: 130px;
  margin-bottom: 12px;

}

/* Original: <h3> (consolidado de 2 classes) */
.inline-style-122 {

  color: #00A651;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;

}

/* Original: <div> (consolidado de 2 classes) */
.inline-style-123 {

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  color: #374151;
  font-size: 1rem;
  text-align: left;

}

/* Original: <p> (consolidado de 6 classes) */
.inline-style-124 {

  display: flex;
  align-items: center;
  gap: 8px;

}

/* Original: <span> (consolidado de 6 classes) */
.inline-style-125 {

  font-size: 1.1rem;

}

/* Original: <section class="hero-entregador"> */
.hero-entregador-inline {

  background: linear-gradient(135deg, rgba(0,166,81,0.75), rgba(0,200,83,0.85)), url('./assets/Equipe Carbono Zero na Av. Paulista.png') center/cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 4rem 2rem;

}

/* Original: <div class="container"> (consolidado de 2 classes) */
.container-inline {

  max-width: 900px;

}

/* Original: <p> (consolidado de 4 classes) */
.inline-style-131 {

  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;

}

/* Original: <div> (consolidado de 3 classes) */
.inline-style-132 {

  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;

}

/* Original: <div class="modal-card-image"> */
.modal-card-image-inline {

  background: linear-gradient(135deg, #f97316, #fb923c);

}

/* Original: <div class="modal-icon"> */
.modal-icon-inline {

  background: rgba(249,115,22,0.1);
  color: #f97316;

}

/* Original: <svg> (consolidado de 10 classes) */
.inline-style-138 {

  width: 2rem;
  height: 2rem;

}

/* Original: <div class="modal-card-image"> */
.modal-card-image-inline {

  background: linear-gradient(135deg, #14b8a6, #2dd4bf);

}

/* Original: <div class="modal-icon"> */
.modal-icon-inline {

  background: rgba(20,184,166,0.1);
  color: #00a651;

}

/* Original: <div class="modal-card-image"> */
.modal-card-image-inline {

  background: linear-gradient(135deg, #00a651, #00a651);

}

/* Original: <div class="modal-icon"> */
.modal-icon-inline {

  background: rgba(236,72,153,0.1);
  color: #48ec53;

}

/* Original: <div> */
.inline-style-145 {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;

}

/* Original: <div class="vinculo-icon"> */
.vinculo-icon-inline {

  background: #00A651;
  color: white;

}

/* Original: <div class="vinculo-icon"> */
.vinculo-icon-inline {

  background: #2563eb;
  color: white;

}

/* Original: <div> */
.inline-style-151 {

  text-align: center;
  margin-top: 3rem;

}

/* Original: <p> */
.inline-style-152 {

  font-size: 1.125rem;
  color: #4B5563;

}

/* Original: <div> (consolidado de 4 classes) */
.inline-style-154 {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;

}

/* Original: <h2> (consolidado de 5 classes) */
.inline-style-155 {

  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827;

}

/* Original: <p> (consolidado de 3 classes) */
.inline-style-156 {

  font-size: 1.125rem;
  color: #4B5563;
  line-height: 1.7;

}

/* Original: <svg> */
.inline-style-157 {

  width: 3rem;
  height: 3rem;
  color: #00A651;

}

/* Original: <div class="container"> */
.container-inline {

  max-width: 900px;
  margin: 0 auto;

}

/* Original: <div id="fieldOndeTrabalhou"> (consolidado de 2 classes) */
.form-field-inline {

  display: none;

}

/* Original: <div> */
.inline-style-162 {

  text-align: center;
  margin-top: 2rem;

}

/* Original: <div class="container"> (consolidado de 2 classes) */
.container-inline {

  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;

}

/* Original: <h2> (consolidado de 2 classes) */
.inline-style-165 {

  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;

}

/* Original: <section class="hero-sobre"> */
.hero-sobre-inline {

  background: linear-gradient(135deg, rgba(0,166,81,0.75), rgba(0,200,83,0.85)), url('./assets/Furgão elétrico com piloto dedicado.png') center/cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 4rem 2rem;

}

/* Original: <div> */
.inline-style-182 {

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;

}

/* Original: <div> (consolidado de 5 classes) */
.inline-style-184 {

  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #00A651;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(0,166,81,0.3);

}

/* Original: <h3> (consolidado de 5 classes) */
.inline-style-186 {

  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #00A651;

}

/* Original: <div> */
.inline-style-211 {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;

}

/* Original: <div> (consolidado de 6 classes) */
.inline-style-212 {

  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;

}

/* Original: <div> (consolidado de 6 classes) */
.inline-style-213 {

  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(0,166,81,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;

}

/* Original: <svg> (consolidado de 6 classes) */
.inline-style-214 {

  width: 2rem;
  height: 2rem;
  color: #00A651;

}

/* Original: <h3> (consolidado de 6 classes) */
.inline-style-215 {

  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #00A651;

}

/* Original: <p> */
.inline-style-243 {

  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;

}

/* Original: <p> (consolidado de 3 classes) */
.inline-style-247 {

  font-size: 1.125rem;
  color: #4B5563;
  margin-bottom: 1rem;
  line-height: 1.7;

}

/* Original: <img> (consolidado de 3 classes) */
.inline-style-249 {

  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

}

/* Original: <p> */
.inline-style-255 {

  font-size: 1.125rem;
  color: #4B5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;

}

/* Original: <div> */
.inline-style-256 {

  display: inline-block;
  background: #DCFCE7;
  color: #166534;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;

}

/* Original: <div class="container"> */
.container-inline {

  max-width: 1280px;
  margin: 0 auto;
  text-align: center;

}

/* Original: <p> */
.inline-style-265 {

  font-size: 1.125rem;
  color: #4B5563;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;

}

/* Original: <div> */
.inline-style-267 {

  position: absolute;
  inset: 0;
  background-image: url('./assets/Furgão elétrico com piloto dedicado.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;

}




/* ========================================
   HERO SECTIONS PADRONIZADAS
   ======================================== */

/* Hero Section Base */
.hero-section {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-note {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Variações de cores */
.hero-dedicado {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.78)),
    url('./assets/Furgão Elétrico.png') center/cover no-repeat;
}

.hero-sobre {
  background: #00A651;
}

.hero-entregador {
  background: #00A651;
}

/* Background overlay para imagens */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  .inline-style-35 {
  display: flex;
  flex-wrap: wrap;
  overflow: visible;
  gap: 2rem;
  justify-content: center;
  }

  .inline-style-36 {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

}



/* ========================================
   HERO SECTIONS PADRONIZADAS
   ======================================== */

/* Hero Section Base */
.hero-section {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-note {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Variações de cores */
.hero-dedicado {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.78)),
    url('./assets/Furgão Elétrico.png') center/cover no-repeat;
}

.hero-sobre {
  background: #00A651;
}

.hero-entregador {
  background: #00A651;
}

/* Background overlay para imagens */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
}


/* ========================================
   ESTILOS DA PÁGINA ENTREGADOR
   Componentes específicos da página de entregadores
   ======================================== */

/* ESTILOS COMPLEMENTARES PARA PÁGINA ENTREGADOR */


/* ============================
   MODAIS (ENTREGADOR) — VERSÃO PREMIUM
   Com proporções fixas e ícones bonitos
============================ */

/* CARD */
.modal-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.modal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

/* ============================
   IMAGEM — Altura fixa
============================ */

.modal-card-image-inline {
  height: 220px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.modal-card-image-inline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradientes premium */
.modal-card:nth-child(1) .modal-card-image-inline {
  background: linear-gradient(135deg, #00a651 0%, #008142 100%);
}

.modal-card:nth-child(2) .modal-card-image-inline {
  background: linear-gradient(135deg, #3a78ff 0%, #2d5dd1 100%);
}

.modal-card:nth-child(3) .modal-card-image-inline {
  background: linear-gradient(135deg, #00a651 0%, #008142 100%);
}

/* ============================
   FAIXA DO ÍCONE
============================ */

/* ============================
   FAIXA DO ÍCONE
============================ */
.modal-icon-inline {
  background: #E9F9EF;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 18px 18px;
}

.modal-icon-inline svg {
  width: 28px;
  height: 28px;
  stroke: #1C5B38;
  opacity: 0.9;
}

/* ============================
   TEXTO DO CARD
============================ */

.modal-card-content {
  padding: 1.8rem 1.6rem 2.2rem;
  text-align: center;
  flex-grow: 1;
}

.modal-card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #14231d;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.modal-card-content p {
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  color: #46554f;
  max-width: 320px;
  margin: 0 auto;
}

/* Vínculo Cards */
.vinculo-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.vinculo-card-clt:hover {
  border-color: #00A651;
}

.vinculo-card-mei:hover {
  border-color: #2563eb;
}

.vinculo-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.vinculo-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
  text-align: center;
}

.vinculo-subtitle {
  font-size: 0.875rem;
  color: #6B7280;
  text-align: center;
  margin-bottom: 1.5rem;
}

.vinculo-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vinculo-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #374151;
}

.vinculo-benefits li::before {
  content: "✓";
  color: #00A651;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Processo Timeline */
.processo-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.processo-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #00A651;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.processo-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}

.processo-step p {
  font-size: 0.875rem;
  color: #4B5563;
}

/* Impacto Card */
.impacto-card {
  background: rgba(0, 166, 81, 0.05);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
}

.impacto-icon {
  margin-bottom: 1.5rem;
}

.impacto-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #00A651;
  margin-bottom: 0.5rem;
}

.impacto-label {
  font-size: 1rem;
  color: #4B5563;
}

/* FORMULÁRIO */
.form-entregador {
  background: #F9FAFB;
  border-radius: 1rem;
  padding: 2rem;
}

.form-section {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #E5E7EB;
}

.form-section-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #00A651;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.form-section-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

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

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #111827;
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #00A651;
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
}

.form-field textarea {
  resize: vertical;
  font-family: inherit;
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  align-items: center;
  justify-content: center;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #374151;
}

.radio-label input[type="radio"] {
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
  accent-color: #00A651;
}

.field-help {
  font-size: 0.75rem;
  color: #6B7280;
  margin-top: 0.5rem;
  font-style: italic;
}

.btn-submit {
  background: #00A651;
  color: white;
  padding: 1rem 3rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background: #008a44;
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: #6B7280;
  margin-top: 1.5rem;
  font-style: italic;
}

/* Responsivo */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .processo-timeline {
    grid-template-columns: 1fr;
  }
  
  .modal-card-image {
    height: 150px;
  }
}

/* =============================== */
/*  SEÇÃO BENEFÍCIOS — PREMIUM     */
/* =============================== */

.inline-style-52 {
  padding: 6rem 0 5rem;
  background: linear-gradient(135deg, #0C3824 0%, #0F4A30 55%, #0A3321 100%);
  color: #E5F6ED;
}

/* Título */
.inline-style-54 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 3.8rem;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.35);
}

/* Grade premium */
.inline-style-55 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card de benefício */
.inline-style-56 {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(255,255,255,0.055);
  padding: 1.3rem 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.inline-style-56:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 6px 26px rgba(0,0,0,0.28);
}

/* Ícone premium */
.inline-style-57 {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #52D18A;
  filter: drop-shadow(0 0 4px rgba(82,209,138,0.5));
}

/* Texto */
.inline-style-58 {
  font-size: 1.06rem;
  line-height: 1.45;
  color: #EAF9F0;
  font-weight: 500;
}

/* Frase final */
.inline-style-74 {
  margin-top: 4.5rem;
  display: flex;
  justify-content: center;
}

.inline-style-75 {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.6rem 2.8rem;
  border-radius: 16px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #BFFFE0;
  box-shadow: 0 6px 26px rgba(0,0,0,0.25);
  text-align: center;
  backdrop-filter: blur(6px);
  max-width: 900px;
}

/* Responsividade */
@media(max-width: 900px) {
  .inline-style-55 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .inline-style-55 {
    grid-template-columns: 1fr;
  }
}

.hero-secundario-title {
  font-size: clamp(2.6rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  text-shadow:
    0 6px 14px rgba(0,0,0,.45),
    0 0 22px rgba(255,255,255,.12);
  margin-bottom: 1.2rem;
}

.hero-secundario-subtitle {
  opacity: .96;
  text-shadow: 0 3px 10px rgba(0,0,0,.30);
  color: #e8edea;
  font-size: 1.3rem;
  margin-bottom: 2.2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero-primary {
  /* existing styles... */
  box-shadow:
    0 12px 32px rgba(0,166,81,.28),
    0 0 0 1px rgba(255,255,255,.18);
  transition: transform .28s ease, box-shadow .28s ease;
}

.btn-hero-primary:hover {
  /* existing background lines remain */
  transform: translateY(-4px);
  box-shadow:
    0 18px 48px rgba(0,166,81,.36);
}
/* =======================
   MOBILE NAVBAR OPTIMIZATION
   ======================= */
@media (max-width: 768px) {
  .navbar-container {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-logo img {
    width: 145px;
  }

  .navbar-menu {
    display: none;
  }

  .navbar-buttons .btn-filled {
    padding: 10px 14px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .topbar {
    padding: 4px 10px !important;
    font-size: 0.78rem !important;
  }
}

/* =======================
   MOBILE HERO SECTION
   ======================= */
@media (max-width: 768px) {
  .hero {
    padding: 32px 0;
  }

  .hero-title {
    font-size: 1.65rem;
    line-height: 1.25;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .hero-ctas a {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    font-size: 1rem;
  }

  .relative-inline img {
    width: 85% !important;
    margin: 24px auto 0;
    display: block;
  }

  .hero-pill-top-right,
  .hero-pill-bottom-left {
    transform: scale(0.85);
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
  }

  .stat-item .number {
    font-size: 1.25rem;
  }

  .stat-item .caption {
    font-size: 0.8rem;
  }
}/* ==========================
   OTIMIZAÇÕES MOBILE CONSOLIDADAS
   Carbono Zero - 2025
   ========================== */

/* ===== MEDIA QUERY CONSOLIDADA - MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
  
  /* --- TOPBAR --- */
  .topbar {
    padding: 6px 14px !important;
    font-size: 0.85rem !important; /* Aumentado de 0.78rem para melhor legibilidade */
  }
  
  /* --- NAVBAR --- */
  .navbar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
  }

  .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px;
  }

  .navbar-logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
  }

  .navbar-menu {
    display: none !important;
  }

  .navbar-buttons {
    display: flex !important;
    margin-left: auto;
  }

  .navbar-buttons .btn-filled {
    padding: 10px 16px; /* Aumentado para melhor touch target */
    font-size: 0.875rem; /* Aumentado de 0.78rem */
    border-radius: 10px;
    white-space: nowrap;
    min-height: 44px; /* Touch target mínimo recomendado */
  }
  
  /* --- HERO SECTION --- */
  .hero {
    padding: 32px 16px; /* Padding lateral aumentado */
  }

  .hero-title {
    font-size: 1.75rem; /* Aumentado de 1.65rem */
    line-height: 1.25;
  }

  .hero-sub {
    font-size: 1rem; /* Aumentado de 0.95rem */
    margin-bottom: 24px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas a {
    width: 100%;
    text-align: center;
    padding: 16px 20px; /* Aumentado para melhor touch target */
    font-size: 1rem;
    min-height: 48px; /* Touch target confortável */
  }

  .relative-inline img {
    width: 90% !important; /* Aumentado de 85% */
    margin: 24px auto 0;
    display: block;
  }

  .hero-pill-top-right,
  .hero-pill-bottom-left {
    transform: scale(0.9); /* Aumentado de 0.85 */
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Aumentado de 18px */
    margin-top: 32px;
  }

  .stat-item .number {
    font-size: 1.35rem; /* Aumentado de 1.25rem */
  }

  .stat-item .caption {
    font-size: 0.875rem; /* Aumentado de 0.8rem */
  }
  
  /* --- TRACKING SECTION --- */
  .tracking-section {
    min-height: auto;
    padding: 3rem 1.25rem;
  }
  
  .tracking-form {
    flex-direction: column;
    gap: 12px;
  }
  
  .tracking-form input {
    width: 100%;
    padding: 14px 16px; /* Aumentado para melhor usabilidade */
    font-size: 1rem;
    min-height: 48px;
  }
  
  .tracking-form button {
    width: 100%;
    padding: 14px 16px;
    min-height: 48px; /* Touch target adequado */
    font-size: 1rem;
  }
  
  /* --- SERVICES SECTION --- */
  .services-section {
    padding: 4rem 1.25rem; /* Padding lateral aumentado */
  }
  
  .services-section h2 {
    font-size: 1.875rem; /* Aumentado de 1.8rem */
  }
  
  .services-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .service-card .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    min-height: 48px;
  }
  
  /* --- CLIENTS CAROUSEL --- */
  .clients-track {
    gap: 2rem;
    animation-duration: 160s;
  }
  
  .client-logo {
    height: 32px;
    min-width: 80px;
  }
  
  /* --- COMPARISON SECTION --- */
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .comparison-item {
    padding: 16px 18px;
  }
  
  /* --- FAQ SECTION --- */
  .faq-section {
    padding: 4rem 1.25rem;
  }
  
  .faq-section h2 {
    font-size: 1.875rem;
  }
  
  .faq-question {
    font-size: 1rem; /* Aumentado de 0.95rem */
    padding: 18px 20px;
    min-height: 56px; /* Touch target confortável */
  }
  
  /* --- FOOTER --- */
  .footer {
    padding: 50px 20px 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-logo {
    margin: 0 auto 1rem;
  }

  .social-icons {
    justify-content: center;
  }
  
  /* --- ENTREGADOR SECTION --- */
  .entregador-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.25rem;
  }
  
  /* --- HERO SECUNDÁRIO --- */
  .hero-secundario-final {
    padding: 4rem 1.5rem;
  }

  .hero-secundario-final .hero-content {
    padding: 2rem 1.5rem;
  }
  
  /* --- IMPACT SECTION --- */
  .impact-section {
    padding: 3.5rem 1.5rem;
  }

  .impact-text {
    font-size: 1.125rem;
  }
  
  /* --- INTEGRATION SECTION --- */
  .integration-section .section-title {
    font-size: 1.875rem;
  }

  .integration-section .section-subtitle {
    font-size: 1rem;
  }
  
  .integration-logos {
    margin-top: 60px;
  }

  .integration-logos-title {
    font-size: 0.875rem;
  }
  
  /* --- ENTREGADOR CARD --- */
  .entregador-card {
    width: auto;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px;
  }
  
  /* --- FORM SECTION --- */
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .processo-timeline {
    flex-direction: column;
  }
  
  /* --- HERO SECTIONS GERAIS --- */
  .hero-section {
    padding: 4rem 1.5rem;
  }
  
  .hero-title {
    font-size: 1.875rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-buttons a {
    width: 100%;
    padding: 16px 20px;
    min-height: 48px;
  }
}

/* ===== MEDIA QUERY CONSOLIDADA - MOBILE PEQUENO (max-width: 640px) ===== */
@media (max-width: 640px) {
  
  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
  
  .hero-pills {
    display: none; /* Ocultar pills decorativas em telas muito pequenas */
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-ctas a {
    width: 100%;
    text-align: center;
  }
  
  /* Botões de toggle lado a lado */
  #comparacao-entregas .toggle-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin: 1.5rem auto;
  }

  #comparacao-entregas .toggle-btn {
    flex: 1 1 50%;
    padding: 1rem 0.75rem;
    font-size: 0.95rem;
    border-radius: 14px;
    white-space: normal;
    text-align: center;
    min-height: 48px;
  }
  
  /* FAQ */
  .faq-section {
    padding: 4rem 1rem;
  }
  
  .faq-section h2 {
    font-size: 1.75rem;
  }
}

/* ===== AJUSTES GLOBAIS DE TOUCH TARGETS ===== */
@media (max-width: 768px) {
  
  /* Garantir que todos os botões e links clicáveis tenham área mínima */
  a.btn,
  button.btn,
  .btn-primary,
  .btn-secondary,
  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-filled,
  .btn-outline {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 20px;
  }
  
  /* Links de navegação */
  .navbar-menu a {
    padding: 12px 16px;
    min-height: 44px;
  }
  
  /* Campos de formulário */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 1rem;
  }
  
  /* Itens de FAQ */
  .faq-question {
    min-height: 56px;
  }
}

/* ===== PREVENÇÃO DE OVERFLOW HORIZONTAL ===== */
@media (max-width: 768px) {
  
  /* Garantir que nenhum elemento cause scroll horizontal */
  body {
    overflow-x: hidden;
  }
  
  .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    overflow-x: hidden;
  }
  
  /* Quebrar textos longos */
  h1, h2, h3, h4, h5, h6, p, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Imagens responsivas */
  img {
    max-width: 100%;
    height: auto;
  }
}
/* ==========================
   MENU HAMBÚRGUER MOBILE
   ========================== */

/* Ocultar hambúrguer no desktop */
.hamburger {
  display: none;
}

.navbar-mobile-panel {
  display: none;
}

/* Mostrar apenas no mobile */
@media (max-width: 768px) {
  
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    padding: 0;
    margin-left: 8px;
    cursor: pointer;
    z-index: 101;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  /* Animação do X quando ativo */
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Painel do menu mobile */
  .navbar-mobile-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding-top: 80px;
  }

  .navbar-mobile-panel.active {
    display: block;
    right: 0;
  }

  .navbar-mobile-panel nav {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .navbar-mobile-panel nav a {
    display: block;
    padding: 18px 24px;
    color: #2F3743;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    min-height: 56px;
    display: flex;
    align-items: center;
  }

  .navbar-mobile-panel nav a:hover,
  .navbar-mobile-panel nav a:active {
    background: #f8fbf9;
    color: #00a651;
    padding-left: 28px;
  }

  /* Overlay quando menu está aberto */
  .navbar-mobile-panel.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 280px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }
}
