/* =============================================================
   restaurante.css — Estilos exclusivos da página de Restaurantes
   ============================================================= */

/* ── SHELL ── */
.restaurant-shell {
  background: linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
  color: #2d2d2d;
}

/* ── HERO ── */
.restaurant-hero {
  padding: 72px 5% 60px;
  background:
    linear-gradient(
      135deg,
      rgba(142, 11, 17, 0.97) 0%,
      rgba(200, 18, 26, 0.93) 60%,
      rgba(180, 50, 10, 0.92) 100%
    ),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.restaurant-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='38' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.restaurant-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  position: relative;
  z-index: 1;
}
.restaurant-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  backdrop-filter: blur(4px);
}
.restaurant-hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.06;
  max-width: 820px;
  font-weight: 800;
}
.restaurant-hero h1 em {
  font-style: normal;
  position: relative;
}
.restaurant-hero h1 em::after {
  content: "";
  display: block;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  margin-top: 2px;
}
.restaurant-hero > div > p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Hero Stats */
.hero-stats-row {
  display: flex;
  gap: 0;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  width: fit-content;
  overflow: hidden;
  margin-top: 8px;
}
.hero-stat {
  padding: 16px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 3px;
  white-space: nowrap;
}

/* ── CARDS DE FUNCIONALIDADES ── */
.restaurant-features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 5% 0;
}
.restaurant-features-header {
  text-align: center;
  margin-bottom: 36px;
}
.restaurant-features-header .label-pill {
  display: inline-block;
  background: #f9ecec;
  color: #8e0b11;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.restaurant-features-header h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #231f20;
  line-height: 1.2;
  margin-bottom: 10px;
}
.restaurant-features-header p {
  color: #6b6b6b;
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.97rem;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.restaurant-card {
  background: #fff;
  border: 1px solid #efe2df;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.06);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.restaurant-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(200, 18, 26, 0.1);
  border-color: #f1c9c2;
}
.restaurant-card.highlight {
  background: linear-gradient(145deg, #fff4f2, #ffffff);
  border-color: #f1c9c2;
}
.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #c8121a, #8e0b11);
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(200, 18, 26, 0.25);
}
.restaurant-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #231f20;
}
.restaurant-card p {
  color: #6b6b6b;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 14px;
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-features li {
  font-size: 0.82rem;
  color: #5a5a5a;
  display: flex;
  align-items: center;
  gap: 7px;
}
.card-features li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #c8121a;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── POR QUE A EWNET ── */
.restaurant-why {
  background: #fff8f7;
  border-top: 1px solid #f2e4e1;
  border-bottom: 1px solid #f2e4e1;
  padding: 60px 5%;
  margin-top: 52px;
}
.restaurant-why-inner {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.why-text .label-pill {
  display: inline-block;
  background: #f9ecec;
  color: #8e0b11;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.why-text h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #231f20;
  line-height: 1.2;
  margin-bottom: 14px;
}
.why-text > p {
  color: #6b6b6b;
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.why-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: #3a3a3a;
  line-height: 1.6;
}
.check-dot {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8121a, #8e0b11);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 1px;
}
/* ── COMO FUNCIONA ── */
.restaurant-steps {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 5%;
}
.restaurant-steps-header {
  text-align: center;
  margin-bottom: 40px;
}
.restaurant-steps-header .label-pill {
  display: inline-block;
  background: #f9ecec;
  color: #8e0b11;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.restaurant-steps-header h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #231f20;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
.steps-row::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #f1c9c2, #c8121a, #f1c9c2);
  z-index: 0;
}
.step-card {
  background: #fff;
  border: 1px solid #efe2df;
  border-radius: 18px;
  padding: 22px 18px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.step-card:hover {
  border-color: #c8121a;
  box-shadow: 0 12px 28px rgba(200, 18, 26, 0.1);
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8121a, #8e0b11);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(200, 18, 26, 0.3);
}
.step-card h4 {
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #231f20;
  margin-bottom: 6px;
}
.step-card p { font-size: 0.83rem; color: #6b6b6b; line-height: 1.6; }

/* ── NÚMEROS / PROVA SOCIAL ── */
.restaurant-social {
  background: linear-gradient(135deg, #c8121a 0%, #8e0b11 100%);
  padding: 52px 5%;
}
.restaurant-social-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.restaurant-social h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px;
}
.social-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  overflow: hidden;
}
.social-stat {
  background: rgba(255, 255, 255, 0.08);
  padding: 28px 20px;
  text-align: center;
}
.social-stat strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.social-stat span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.72); }

/* ── SEÇÃO COZINHA CONECTADA ── */
.rest-features-section { padding: 0 0 60px; }
.rest-steps-section    { padding: 0; }

.kitchen-section {
  padding: 60px 5%;
}
.kitchen-inner {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.kitchen-text .label-pill {
  display: inline-block;
  background: #f9ecec;
  color: #8e0b11;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.kitchen-text h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #231f20;
  line-height: 1.2;
  margin-bottom: 14px;
}
.kitchen-text p {
  color: #6b6b6b;
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.kitchen-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kitchen-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: #3a3a3a;
  line-height: 1.6;
}

/* ── CTA FINAL ── */
.restaurant-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 5% 72px;
}
.restaurant-cta-box {
  background: linear-gradient(135deg, #fff4f4, #fff);
  border: 1px solid #efdfdf;
  border-radius: 28px;
  padding: 40px 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(200, 18, 26, 0.08);
  position: relative;
  overflow: hidden;
}
.restaurant-cta-box::before {
  content: "🍽️";
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 8rem;
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}
.restaurant-cta-box h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: #231f20;
  margin-bottom: 8px;
  font-weight: 800;
}
.restaurant-cta-box p {
  color: #6b6b6b;
  max-width: 560px;
  font-size: 0.97rem;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: "Inter", sans-serif; background: #fffaf7; color: #2d2d2d; }
 
    /* ── LUCROS HERO-STRIP ── */
    .sistema-delivery-profits {
      background: linear-gradient(135deg, #c8121a 0%, #8e0b11 100%);
      padding: 64px 5%;
      position: relative;
      overflow: hidden;
    }
    .sistema-delivery-profits::after {
      content: "";
      position: absolute;
      right: -80px; top: -80px;
      width: 420px; height: 420px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      pointer-events: none;
    }
    .profits-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: center;
    }
    .profits-text .eyebrow {
      display: inline-block;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.22);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 999px;
      margin-bottom: 16px;
    }
    .profits-text h2 {
      font-family: "Sora", sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .profits-text h2 span {
      display: inline-block;
      background: rgba(255,255,255,0.18);
      border-radius: 8px;
      padding: 0 8px;
    }
    .profits-text p {
      color: rgba(255,255,255,0.85);
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 28px;
    }
    .profits-saving-badge {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 16px;
      padding: 14px 22px;
      backdrop-filter: blur(6px);
    }
    .profits-saving-badge .amount {
      font-family: "Sora", sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }
    .profits-saving-badge .amount-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.72);
      margin-top: 3px;
    }
    .profits-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.25); }
 
    /* Benefit cards on the right */
    .profits-cards {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .profit-card {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 18px;
      padding: 18px 20px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      backdrop-filter: blur(4px);
      transition: background 0.2s, border-color 0.2s;
    }
    .profit-card:hover {
      background: rgba(255,255,255,0.16);
      border-color: rgba(255,255,255,0.28);
    }
    .profit-card-icon {
      width: 40px; height: 40px; min-width: 40px;
      border-radius: 12px;
      background: rgba(255,255,255,0.18);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .profit-card h4 {
      font-family: "Sora", sans-serif;
      font-size: 0.9rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 4px;
    }
    .profit-card p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.55;
      margin: 0;
    }
 
    /* ── sistema-delivery INTRO ── */
    .sistema-delivery-intro {
      max-width: 1100px;
      margin: 0 auto;
      padding: 72px 5% 0;
    }
    .sistema-delivery-intro-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: end;
      margin-bottom: 44px;
    }
    .sistema-delivery-intro-header .label-pill {
      display: inline-block;
      background: #f9ecec;
      color: #8e0b11;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 12px;
    }
    .sistema-delivery-intro-header h2 {
      font-family: "Sora", sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      font-weight: 800;
      color: #231f20;
      line-height: 1.15;
    }
    .sistema-delivery-intro-header h2 em {
      font-style: normal;
      color: #c8121a;
    }
    .sistema-delivery-intro-header p {
      color: #6b6b6b;
      font-size: 0.97rem;
      line-height: 1.75;
      margin-top: 12px;
    }
    .intro-right-badges {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .intro-badge-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: #fff;
      border: 1px solid #efe2df;
      border-radius: 16px;
      padding: 14px 18px;
      box-shadow: 0 4px 12px rgba(18,18,18,0.05);
    }
    .intro-badge-icon {
      width: 36px; height: 36px; min-width: 36px;
      border-radius: 10px;
      background: linear-gradient(135deg, #c8121a, #8e0b11);
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 1rem;
    }
    .intro-badge-row strong {
      display: block;
      font-family: "Sora", sans-serif;
      font-size: 0.87rem;
      font-weight: 800;
      color: #231f20;
      margin-bottom: 2px;
    }
    .intro-badge-row span {
      font-size: 0.8rem;
      color: #7a7a7a;
      line-height: 1.5;
    }
 
    /* ── CARDÁPIO DIGITAL SECTION ── */
    .sistema-delivery-cardapio {
      background: #fff8f7;
      border-top: 1px solid #f2e4e1;
      border-bottom: 1px solid #f2e4e1;
      padding: 68px 5%;
      margin-top: 68px;
    }
    .cardapio-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .cardapio-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .cardapio-header .label-pill {
      display: inline-block;
      background: #f9ecec;
      color: #8e0b11;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 12px;
    }
    .cardapio-header h2 {
      font-family: "Sora", sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: #231f20;
      line-height: 1.15;
      margin-bottom: 10px;
    }
    .cardapio-header p {
      color: #6b6b6b;
      font-size: 0.97rem;
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }
 
    /* Feature steps (3 cols) */
    .cardapio-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .cardapio-step {
      background: #fff;
      border: 1px solid #efe2df;
      border-radius: 22px;
      padding: 28px 24px;
      position: relative;
      transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    }
    .cardapio-step:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(200,18,26,0.09);
      border-color: #f1c9c2;
    }
    .step-num-tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px; height: 36px;
      border-radius: 10px;
      background: linear-gradient(135deg, #c8121a, #8e0b11);
      color: #fff;
      font-family: "Sora", sans-serif;
      font-size: 0.9rem;
      font-weight: 800;
      margin-bottom: 16px;
      box-shadow: 0 4px 10px rgba(200,18,26,0.25);
    }
    .cardapio-step h3 {
      font-family: "Sora", sans-serif;
      font-size: 1.05rem;
      font-weight: 800;
      color: #231f20;
      margin-bottom: 10px;
    }
    .cardapio-step p {
      color: #6b6b6b;
      font-size: 0.9rem;
      line-height: 1.65;
    }
    .step-whatsapp-note {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 14px;
      padding: 10px 14px;
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      border-radius: 10px;
      font-size: 0.8rem;
      color: #166534;
      font-weight: 600;
    }
 
    /* ── sistema-delivery CTA ── */
    .sistema-delivery-cta-wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 52px 5% 72px;
    }
    .sistema-delivery-cta-box {
      background: linear-gradient(135deg, #c8121a 0%, #8e0b11 100%);
      border-radius: 28px;
      padding: 44px 48px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 28px;
      align-items: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(200,18,26,0.25);
    }
    .sistema-delivery-cta-box::before {
      content: "";
      position: absolute;
      right: -60px; bottom: -60px;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: rgba(255,255,255,0.07);
      pointer-events: none;
    }
    .sistema-delivery-cta-box::after {
      content: "🍔";
      position: absolute;
      right: 120px; bottom: -10px;
      font-size: 7rem;
      opacity: 0.08;
      pointer-events: none;
      line-height: 1;
    }
    .cta-left .eyebrow {
      display: inline-block;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 999px;
      margin-bottom: 12px;
    }
    .cta-left h2 {
      font-family: "Sora", sans-serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 8px;
    }
    .cta-left p {
      color: rgba(255,255,255,0.82);
      font-size: 0.97rem;
      line-height: 1.65;
      max-width: 520px;
    }
    .cta-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex-shrink: 0;
      align-items: flex-start;
    }
    .btn-primary-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: #c8121a;
      font-family: "Sora", sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      padding: 13px 24px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      transition: transform 0.15s, box-shadow 0.15s;
      white-space: nowrap;
    }
    .btn-primary-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(0,0,0,0.2);
    }
    .btn-ghost-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: #fff;
      font-family: "Sora", sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 12px 22px;
      border-radius: 12px;
      border: 1.5px solid rgba(255,255,255,0.4);
      cursor: pointer;
      text-decoration: none;
      transition: background 0.15s, border-color 0.15s;
      white-space: nowrap;
    }
    .btn-ghost-white:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.65);
    }
    .trial-note {
      font-size: 0.77rem;
      color: rgba(255,255,255,0.6);
      margin-top: 2px;
      padding-left: 4px;
    }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 780px) {
      .profits-inner,
      .sistema-delivery-intro-header,
      .cardapio-steps { grid-template-columns: 1fr; }
      .sistema-delivery-cta-box { flex-direction: column; }
      .hero-stats-row { flex-wrap: wrap; }
    }