/* =========================================================
   GM CONTABILIDADE PARA RESTAURANTES
   Identidade: #ba5208 | #251e20 | #f2f2f2
   ========================================================= */

:root {
  --orange: #ba5208;
  --orange-dark: #8d3d06;
  --orange-light: #e8843e;
  --brown: #251e20;
  --brown-soft: #3b3033;
  --light: #f2f2f2;
  --white: #ffffff;
  --text: #2d2729;
  --muted: #71696b;
  --border: rgba(37, 30, 32, 0.12);
  --border-dark: rgba(255, 255, 255, 0.12);
  --success: #2d7a57;
  --warning: #e5a736;
  --shadow-sm: 0 12px 32px rgba(37, 30, 32, 0.08);
  --shadow-md: 0 22px 70px rgba(37, 30, 32, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1240px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(186, 82, 8, 0.4);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--orange);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.section-dark {
  color: var(--white);
  background: var(--brown);
}

.section-light {
  background: var(--light);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #ffb37a;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: var(--orange);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.content-block h2,
.dashboard-copy h2,
.switch-copy h2,
.about-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -.05em;
}

.section-heading p,
.section-lead,
.dashboard-copy > p,
.switch-copy > p,
.about-copy > p,
.faq-intro > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading-dark h2,
.section-heading-dark p {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(186, 82, 8, .28);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(12px);
}

.button-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.button-dark {
  color: var(--white);
  background: var(--brown);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
}

.button-full {
  width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(37, 30, 32, .86);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.scrolled {
  background: rgba(37, 30, 32, .96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
  letter-spacing: -.06em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

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

.brand-text small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .62);
  font-size: .67rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a:not(.button) {
  color: rgba(255, 255, 255, .76);
  font-size: .88rem;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav > a:not(.button):hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 54px) 0 72px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero-glow-one {
  top: 8%;
  left: -12%;
  width: 420px;
  height: 420px;
  background: rgba(186, 82, 8, .14);
}

.hero-glow-two {
  right: -8%;
  bottom: 8%;
  width: 360px;
  height: 360px;
  background: rgba(232, 132, 62, .08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr);
  gap: 64px;
  align-items: start;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 5.25rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero-segments {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .56);
  font-size: .92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, .7);
  font-size: .82rem;
}

.trust-list li::before {
  position: absolute;
  top: .38em;
  left: 0;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: var(--white);
  background: rgba(186, 82, 8, .9);
  font-size: .58rem;
  font-weight: 900;
}

.hero-form-card {
  max-width: 760px;
  margin-top: 36px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  color: var(--text);
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--shadow-md);
}

.form-heading {
  margin-bottom: 20px;
}

.mini-label {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 0;
  color: var(--brown);
  font-size: 1.42rem;
  letter-spacing: -.035em;
}

.form-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.field-group label {
  margin-bottom: 7px;
  color: var(--brown);
  font-size: .78rem;
  font-weight: 800;
}

.field-group input,
.field-group select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 0 14px;
  color: var(--brown);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field-group input::placeholder {
  color: #a7a0a2;
}

.field-group input:focus,
.field-group select:focus {
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 0 0 4px rgba(186, 82, 8, .1);
}

.field-group.invalid input,
.field-group.invalid select {
  border-color: #b83232;
}

.field-error {
  min-height: 15px;
  margin-top: 3px;
  color: #a22c2c;
  font-size: .68rem;
}

.lead-form .button {
  margin-top: 8px;
}

.privacy-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .72rem;
  text-align: center;
}

.form-feedback {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: .84rem;
}

.form-feedback.success,
.form-feedback.error {
  display: block;
}

.form-feedback.success {
  color: #205b41;
  background: #e9f8f0;
}

.form-feedback.error {
  color: #8b2424;
  background: #fdecec;
}

.hero-visual {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  min-height: 740px;
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 740px;
}

.hero-visual img {
  border-radius: 36px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.hero-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  border-radius: 0 0 36px 36px;
  content: "";
  pointer-events: none;
  background: linear-gradient(to top, rgba(37,30,32,.68), transparent);
}

.metric-card {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  color: var(--brown);
  background: rgba(255, 255, 255, .91);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
  animation: floatCard 6s ease-in-out infinite;
}

.metric-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: var(--orange);
  font-size: .82rem;
  font-weight: 900;
}

.metric-card div {
  display: flex;
  flex-direction: column;
}

.metric-card small {
  color: var(--muted);
  font-size: .67rem;
}

.metric-card strong {
  font-size: .98rem;
}

.metric-trend {
  color: var(--success);
  font-size: .63rem;
}

.metric-card-one {
  top: 12%;
  left: -34px;
}

.metric-card-two {
  right: -24px;
  bottom: 23%;
  animation-delay: -2s;
}

.metric-card-three {
  bottom: 7%;
  left: -18px;
  animation-delay: -4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* SEGMENTOS */
.segments-section {
  padding: 92px 0;
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.segment-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.segment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.segment-image {
  height: 150px;
  background-position: center;
  background-size: cover;
}

.segment-image::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to top, rgba(37,30,32,.18), transparent 55%);
}

.segment-card span {
  display: block;
  padding: 15px 16px 17px;
  color: var(--brown);
  font-weight: 800;
}

.segment-image-restaurant { background-image: url("assets/images/salao-restaurante.jpg"); }
.segment-image-burger { background-image: url("assets/images/segmento-hamburgueria.jpg"); }
.segment-image-pizza { background-image: url("assets/images/segmento-pizzaria.jpg"); }
.segment-image-bar { background-image: url("assets/images/segmento-bar.jpg"); }
.segment-image-coffee { background-image: url("assets/images/segmento-cafeteria.jpg"); }
.segment-image-delivery { background-image: url("assets/images/segmento-delivery.jpg"); }
.segment-image-dark { background-image: url("assets/images/segmento-dark-kitchen.jpg"); }
.segment-image-snack { background-image: url("assets/images/segmento-lanchonete.jpg"); }

/* DORES */
.pain-section {
  padding: 112px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 72px;
  align-items: center;
}

.media-frame {
  position: relative;
}

.media-frame picture,
.media-frame img {
  width: 100%;
  height: 720px;
}

.media-frame img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.media-caption {
  position: absolute;
  right: -30px;
  bottom: 28px;
  max-width: 320px;
  padding: 18px;
  border-radius: 16px;
  color: var(--white);
  background: var(--brown);
  box-shadow: var(--shadow-md);
}

.media-caption strong,
.media-caption span {
  display: block;
}

.media-caption strong {
  font-size: .98rem;
}

.media-caption span {
  margin-top: 5px;
  color: rgba(255,255,255,.65);
  font-size: .78rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 30px;
}

.pain-item {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid rgba(37,30,32,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  font-size: .86rem;
  font-weight: 600;
}

.pain-item::before {
  position: absolute;
  top: 13px;
  left: 13px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 7px;
  content: "!";
  color: var(--orange);
  background: rgba(186,82,8,.1);
  font-size: .72rem;
  font-weight: 900;
}

.content-block blockquote {
  margin: 28px 0 0;
  padding: 18px 22px;
  border-left: 4px solid var(--orange);
  border-radius: 0 14px 14px 0;
  color: var(--brown);
  background: var(--white);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

/* SOLUÇÕES */
.solutions-section {
  padding: 112px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card {
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.045);
  transition: transform .25s ease, border-color .25s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,132,62,.5);
}

.solution-card.featured {
  border-color: rgba(232,132,62,.65);
  background: linear-gradient(180deg, rgba(186,82,8,.16), rgba(255,255,255,.04));
}

.solution-media,
.solution-media picture,
.solution-media img {
  width: 100%;
  height: 220px;
}

.solution-media img {
  object-fit: cover;
}

.solution-body {
  padding: 24px;
}

.solution-number {
  color: #ffb37a;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.solution-body h3 {
  margin: 8px 0 18px;
  font-size: 1.35rem;
  letter-spacing: -.03em;
}

.solution-body ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-body li {
  position: relative;
  padding-left: 20px;
  color: rgba(255,255,255,.68);
  font-size: .84rem;
}

.solution-body li::before {
  position: absolute;
  left: 0;
  content: "•";
  color: var(--orange-light);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: #ffb37a;
  font-size: .82rem;
  font-weight: 800;
}

/* DASHBOARD */
.dashboard-section {
  padding: 116px 0;
  background: #faf9f8;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: .76fr 1.34fr .58fr;
  gap: 28px;
  align-items: center;
}

.dashboard-copy {
  padding-right: 12px;
}

.indicator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.indicator-tags span {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--brown);
  background: var(--white);
  font-size: .72rem;
  font-weight: 700;
}

.dashboard-shell {
  position: relative;
  z-index: 2;
  padding: 20px;
  border: 1px solid rgba(37,30,32,.08);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.dashboard-topbar,
.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-topbar div,
.chart-header div {
  display: flex;
  flex-direction: column;
}

.dashboard-topbar small,
.chart-header small,
.kpi small,
.cost-card > small,
.alert-card > small {
  color: var(--muted);
  font-size: .68rem;
}

.dashboard-topbar strong,
.chart-header strong {
  color: var(--brown);
  font-size: .94rem;
}

.dashboard-topbar > span,
.chart-header > span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(186,82,8,.08);
  font-size: .62rem;
  font-weight: 800;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.kpi {
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fbfaf9;
}

.kpi strong,
.kpi span {
  display: block;
}

.kpi strong {
  margin-top: 5px;
  font-size: 1rem;
}

.kpi span {
  margin-top: 2px;
  color: var(--success);
  font-size: .62rem;
}

.kpi.warning span {
  color: var(--orange);
}

.dashboard-chart {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.bars {
  display: flex;
  height: 150px;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-bottom: 1px solid var(--border);
  background: repeating-linear-gradient(to top, transparent 0, transparent 35px, rgba(37,30,32,.05) 36px);
}

.bar-group {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  align-items: end;
  position: relative;
}

.bar-group i,
.bar-group b {
  border-radius: 5px 5px 0 0;
}

.bar-group i {
  background: var(--orange);
}

.bar-group b {
  background: #d8d2d4;
}

.bar-group span {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: .58rem;
}

.dashboard-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 34px;
}

.cost-card,
.alert-card {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.cost-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
}

.cost-card > small {
  grid-column: 1 / -1;
}

.donut {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0 31%, #6f5b60 31% 55%, #d8d2d4 55% 73%, #eee9e7 73%);
  position: relative;
}

.donut::after {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  content: "";
  background: var(--white);
}

.cost-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .58rem;
}

.cost-card li {
  margin: 4px 0;
}

.cost-card li span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.alert-item {
  display: flex;
  gap: 8px;
  margin-top: 9px;
  align-items: flex-start;
}

.alert-item > span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border-radius: 7px;
  color: var(--orange);
  background: rgba(186,82,8,.1);
  font-size: .68rem;
  font-weight: 900;
}

.alert-item p {
  margin: 0;
  color: var(--muted);
  font-size: .58rem;
  line-height: 1.35;
}

.alert-item strong {
  display: block;
  color: var(--brown);
  font-size: .63rem;
}

.dashboard-photo {
  margin-left: -62px;
}

.dashboard-photo picture,
.dashboard-photo img {
  width: 100%;
  height: 510px;
}

.dashboard-photo img {
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* OPERAÇÃO */
.operation-section {
  padding: 112px 0;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 250px 250px;
  gap: 14px;
}

.photo-mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

.photo-mosaic picture,
.photo-mosaic img {
  width: 100%;
  height: 100%;
}

.photo-mosaic img {
  object-fit: cover;
  transition: transform .5s ease;
}

.photo-mosaic figure:hover img {
  transform: scale(1.03);
}

.mosaic-large {
  grid-row: 1 / 3;
}

.mosaic-wide {
  display: none;
}

.photo-mosaic figcaption {
  position: absolute;
  inset: auto 14px 14px;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--white);
  background: rgba(37,30,32,.78);
  font-size: .76rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.topic-grid div {
  display: flex;
  min-height: 82px;
  align-items: flex-end;
  padding: 14px;
  border: 1px solid rgba(37,30,32,.08);
  border-radius: 14px;
  color: var(--brown);
  background: var(--white);
  font-size: .78rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.operation-statement {
  max-width: 820px;
  margin: 40px auto 0;
  color: var(--brown);
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  letter-spacing: -.04em;
}

/* PROCESSO */
.process-section {
  padding: 112px 0;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline::before {
  position: absolute;
  top: 33px;
  left: 8%;
  right: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(186,82,8,.5), transparent);
}

.timeline-item {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.timeline-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(186,82,8,.24);
}

.timeline-item h3 {
  margin: 20px 0 8px;
  font-size: 1.08rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

/* TROCA */
.switch-section {
  padding: 112px 0;
}

.switch-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}

.switch-copy h2,
.switch-copy > p {
  color: var(--white);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0;
}

.comparison-card {
  padding: 20px;
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

.comparison-card.gm {
  border-color: rgba(232,132,62,.48);
  background: rgba(186,82,8,.12);
}

.comparison-card > span {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-weight: 900;
}

.comparison-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(255,255,255,.67);
  font-size: .8rem;
}

.comparison-card li::before {
  position: absolute;
  left: 0;
  content: "×";
  color: #bcaeb2;
  font-weight: 900;
}

.comparison-card.gm li::before {
  content: "✓";
  color: #ffb37a;
}

.switch-image picture,
.switch-image img {
  width: 100%;
  height: 670px;
}

.switch-image img {
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* DEPOIMENTOS */
.testimonials-section {
  padding: 112px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.testimonial-media-placeholder,
.review-placeholder {
  display: grid;
  min-height: 150px;
  place-items: center;
  border: 1px dashed rgba(37,30,32,.22);
  border-radius: 14px;
  color: var(--muted);
  background: var(--light);
  font-size: .75rem;
  text-align: center;
}

.stars {
  margin-top: 18px;
  color: var(--orange);
  letter-spacing: .08em;
}

.testimonial-card blockquote {
  margin: 14px 0 18px;
  color: var(--brown);
  font-size: .98rem;
  font-weight: 700;
}

.testimonial-card strong,
.testimonial-card span,
.testimonial-card small {
  display: block;
}

.testimonial-card span,
.testimonial-card small {
  color: var(--muted);
  font-size: .74rem;
}

.testimonial-card small {
  margin-top: 10px;
}

.google-badge {
  display: inline-flex !important;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--orange) !important;
  background: rgba(186,82,8,.08);
  font-weight: 800;
}

.google-card > strong {
  margin-top: 28px;
  font-size: 2.8rem;
}

.google-card > p {
  margin: 0 0 20px;
  color: var(--muted);
}

.logos-placeholder {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  border: 1px dashed var(--border);
  border-radius: 16px;
}

.logos-placeholder span {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
}

.logos-placeholder div {
  height: 42px;
  border-radius: 9px;
  background: var(--light);
}

/* SOBRE */
.about-section {
  padding: 112px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image picture,
.about-image img {
  width: 100%;
  height: 590px;
}

.about-image img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.real-photo-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--white);
  background: rgba(37,30,32,.8);
  font-size: .72rem;
  font-weight: 800;
}

.about-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.about-points div {
  padding: 16px 18px;
  border: 1px solid rgba(37,30,32,.08);
  border-radius: 14px;
  background: var(--white);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  color: var(--brown);
}

.about-points span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .82rem;
}

/* FAQ */
.faq-section {
  padding: 112px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.faq-intro .button {
  margin-top: 26px;
}

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

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

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border: 0;
  color: var(--brown);
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 10px;
  color: var(--orange);
  background: rgba(186,82,8,.08);
  font-size: 1.15rem;
  transition: transform .25s ease;
}

.faq-item.open button span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 44px 22px 0;
  color: var(--muted);
  font-size: .9rem;
}

/* CTA FINAL */
.final-cta {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(37,30,32,.82), rgba(37,30,32,.82)),
    url("assets/images/cta-restaurante.jpg") center/cover no-repeat;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(186,82,8,.28), transparent 35%),
    linear-gradient(90deg, rgba(37,30,32,.86), rgba(37,30,32,.45));
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 870px;
  padding-block: 100px;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 1.08rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.final-cta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.final-cta li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,.64);
  font-size: .78rem;
}

.final-cta li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #ffb37a;
}

/* FOOTER */
.site-footer {
  padding: 68px 0 24px;
  color: var(--white);
  background: #171315;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  margin: 0;
  color: rgba(255,255,255,.57);
  font-size: .78rem;
}

.footer-grid > div > strong {
  margin-bottom: 6px;
  font-size: .82rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.4);
  font-size: .7rem;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
}

.whatsapp-float a {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #1f9d61;
  box-shadow: 0 16px 38px rgba(31,157,97,.3);
  font-size: .8rem;
  font-weight: 900;
  transition: transform .2s ease;
}

.whatsapp-float a:hover {
  transform: translateY(-3px);
}

.whatsapp-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}

.mobile-cta-bar,
.mobile-cta-restore {
  display: none;
}

/* REVEAL */
.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

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

/* TABLET */
@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.button) {
    font-size: .8rem;
  }

  .hero-grid {
    grid-template-columns: 1.04fr .96fr;
    gap: 34px;
  }

  .hero-visual {
    min-height: 690px;
  }

  .hero-visual picture,
  .hero-visual img {
    height: 690px;
  }

  .metric-card {
    min-width: 170px;
  }

  .metric-card-one {
    left: -16px;
  }

  .metric-card-two {
    right: -12px;
  }

  .split-layout,
  .switch-grid,
  .about-grid {
    gap: 44px;
  }

  .dashboard-grid {
    grid-template-columns: .75fr 1.25fr;
  }

  .dashboard-photo {
    display: none;
  }

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

/* MOBILE / TABLET */
@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    background: rgba(37,30,32,.98);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 12px;
    border-radius: 10px;
    font-size: .9rem;
  }

  .nav-cta {
    width: 100%;
    margin-top: 6px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    position: relative;
    top: auto;
    order: 2;
    min-height: auto;
  }

  .hero-visual picture,
  .hero-visual img {
    height: 520px;
  }

  .hero-visual img {
    border-radius: 26px;
  }

  .metric-card-one {
    top: 24px;
    left: 16px;
  }

  .metric-card-two {
    right: 16px;
    bottom: 100px;
  }

  .metric-card-three {
    bottom: 18px;
    left: 16px;
  }

  .hero-form-card {
    max-width: none;
  }

  .segment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .switch-grid,
  .about-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .media-frame picture,
  .media-frame img {
    height: 560px;
  }

  .media-caption {
    right: 16px;
    left: 16px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
  }

  .solution-media,
  .solution-media picture,
  .solution-media img {
    height: 100%;
    min-height: 360px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-copy {
    padding-right: 0;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    display: none;
  }

  .switch-image {
    order: -1;
  }

  .switch-image picture,
  .switch-image img {
    height: 520px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .google-card {
    grid-column: 1 / -1;
  }

  .faq-intro {
    position: static;
  }

  .desktop-whatsapp {
    display: none;
  }

  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .mobile-cta-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 950;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(37,30,32,.1);
    background: rgba(255,255,255,.97);
    box-shadow: 0 -12px 30px rgba(37,30,32,.12);
    backdrop-filter: blur(14px);
    transition: transform .25s ease;
  }

  .mobile-cta-bar.hidden {
    transform: translateY(120%);
  }

  .mobile-cta-bar .button {
    width: 100%;
  }

  .mobile-cta-close {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border: 0;
    border-radius: 10px;
    color: var(--muted);
    background: var(--light);
    cursor: pointer;
  }

  .mobile-cta-restore {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 940;
    padding: 10px 13px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: #1f9d61;
    box-shadow: var(--shadow-sm);
    font-size: .7rem;
    font-weight: 900;
  }

  .mobile-cta-restore.visible {
    display: block;
  }
}

/* CELULAR */
@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-text small {
    display: none;
  }

  .hero {
    padding-bottom: 54px;
  }

  .hero-content h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-form-card {
    margin-top: 28px;
    padding: 18px;
    border-radius: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .field-group input,
  .field-group select {
    height: 52px;
  }

  .hero-visual picture,
  .hero-visual img {
    height: 390px;
  }

  .metric-card {
    min-width: auto;
    padding: 10px 12px;
    border-radius: 13px;
  }

  .metric-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .metric-card strong {
    font-size: .8rem;
  }

  .metric-card small,
  .metric-trend {
    font-size: .55rem;
  }

  .metric-card-one {
    top: 12px;
    left: 10px;
  }

  .metric-card-two {
    right: 10px;
    bottom: 66px;
  }

  .metric-card-three {
    bottom: 10px;
    left: 10px;
  }

  .segments-section,
  .pain-section,
  .solutions-section,
  .dashboard-section,
  .operation-section,
  .process-section,
  .switch-section,
  .testimonials-section,
  .about-section,
  .faq-section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .content-block h2,
  .dashboard-copy h2,
  .switch-copy h2,
  .about-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .segment-grid {
    gap: 10px;
  }

  .segment-image {
    height: 108px;
  }

  .segment-card span {
    padding: 12px;
    font-size: .78rem;
  }

  .media-frame picture,
  .media-frame img,
  .about-image picture,
  .about-image img,
  .switch-image picture,
  .switch-image img {
    height: 420px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    display: block;
  }

  .solution-media,
  .solution-media picture,
  .solution-media img {
    height: 220px;
    min-height: 0;
  }

  .dashboard-shell {
    padding: 14px;
    overflow: hidden;
  }

  .dashboard-kpis {
    grid-template-columns: 1fr;
  }

  .dashboard-bottom {
    grid-template-columns: 1fr;
  }

  .bars {
    gap: 5px;
  }

  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px;
  }

  .mosaic-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .topic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .topic-grid div {
    min-height: 74px;
    font-size: .72rem;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .google-card {
    grid-column: auto;
  }

  .logos-placeholder {
    grid-template-columns: 1fr 1fr;
  }

  .logos-placeholder span {
    grid-column: 1 / -1;
  }

  .final-cta {
    min-height: 620px;
  }

  .final-cta-actions {
    display: grid;
  }

  .final-cta-actions .button {
    width: 100%;
  }

  .final-cta ul {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   AJUSTE V2 — HERO COM FOTO DE FUNDO + AVALIAÇÕES DE CLIENTES
   ========================================================= */

.hero.hero-background {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 54px) 0 64px;
  overflow: hidden;
  background:
    url("assets/images/hero-restaurante.jpg")
    center center / cover no-repeat;
}

.hero.hero-background::before {
  display: none;
}

.hero-background-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(20, 15, 17, .96) 0%,
      rgba(20, 15, 17, .89) 35%,
      rgba(20, 15, 17, .60) 62%,
      rgba(20, 15, 17, .70) 100%
    );
}

.hero-background-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 46%, rgba(186, 82, 8, .18), transparent 32%),
    linear-gradient(to top, rgba(20,15,17,.52), transparent 42%);
}

.hero-grid-background {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .62fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: center;
}

.hero-content-clean {
  max-width: 730px;
}

.hero-eyebrow {
  margin-bottom: 22px;
}

.hero-content-clean h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.hero-content-clean h1 span {
  color: #ef6c18;
}

.hero-content-clean .hero-lead {
  max-width: 660px;
  margin-top: 26px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.65;
}

.hero-content-clean .hero-segments {
  max-width: 650px;
  margin-top: 12px;
  color: rgba(255,255,255,.58);
  font-size: .88rem;
}

.hero-content-clean .hero-actions {
  margin-top: 28px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.hero-trust div {
  position: relative;
  padding-left: 17px;
}

.hero-trust div::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(186,82,8,.13);
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  color: var(--white);
  font-size: .78rem;
}

.hero-trust span {
  margin-top: 3px;
  color: rgba(255,255,255,.52);
  font-size: .68rem;
  line-height: 1.45;
}

.hero-form-card.hero-form-dark {
  width: 100%;
  max-width: 470px;
  margin: 0 0 0 auto;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  color: var(--white);
  background: rgba(27, 23, 24, .91);
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
}

.hero-form-dark .form-heading {
  margin-bottom: 20px;
}

.hero-form-dark .form-heading h2 {
  max-width: 350px;
  color: var(--white);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.hero-form-dark .form-heading p {
  color: rgba(255,255,255,.59);
}

.hero-form-dark .field-group label {
  color: rgba(255,255,255,.88);
}

.hero-form-dark .field-group input,
.hero-form-dark .field-group select {
  height: 49px;
  color: var(--white);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
}

.hero-form-dark .field-group input::placeholder {
  color: rgba(255,255,255,.38);
}

.hero-form-dark .field-group select {
  color-scheme: dark;
}

.hero-form-dark .field-group input:focus,
.hero-form-dark .field-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(186,82,8,.15);
}

.form-grid-single {
  grid-template-columns: 1fr;
  gap: 8px;
}

.hero-form-dark .privacy-note {
  color: rgba(255,255,255,.46);
}

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

.client-review {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.client-review-header {
  display: flex;
  align-items: center;
  gap: 13px;
}

.client-photo-placeholder {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border: 1px dashed rgba(37,30,32,.2);
  border-radius: 50%;
  color: var(--muted);
  background: var(--light);
  font-size: .65rem;
}

.client-review-header strong,
.client-review-header span {
  display: block;
}

.client-review-header strong {
  color: var(--brown);
  font-size: .9rem;
}

.client-review-header span {
  margin-top: 2px;
  color: var(--muted);
  font-size: .7rem;
}

.client-review .stars {
  margin-top: 22px;
}

.client-review blockquote {
  flex: 1;
  margin: 15px 0 20px;
  font-size: 1rem;
  line-height: 1.65;
}

.client-review > small {
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

@media (max-width: 1100px) {
  .hero-grid-background {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 34px;
  }

  .hero-content-clean h1 {
    font-size: clamp(2.8rem, 5.2vw, 4.7rem);
  }
}

@media (max-width: 900px) {
  .hero.hero-background {
    min-height: auto;
    padding-top: calc(var(--header-height) + 42px);
    background-position: 58% center;
  }

  .hero-background-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(20,15,17,.93) 0%,
        rgba(20,15,17,.82) 48%,
        rgba(20,15,17,.94) 100%
      );
  }

  .hero-grid-background {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-content-clean {
    max-width: 760px;
  }

  .hero-form-card.hero-form-dark {
    max-width: 720px;
    margin: 0;
  }

  .hero-trust {
    max-width: 680px;
  }

  .testimonials-only {
    grid-template-columns: 1fr 1fr;
  }

  .client-review:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .hero.hero-background {
    padding-bottom: 46px;
    background-position: 64% center;
  }

  .hero-content-clean h1 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
    line-height: 1;
  }

  .hero-content-clean h1 br {
    display: none;
  }

  .hero-content-clean .hero-actions {
    display: grid;
  }

  .hero-content-clean .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 28px;
  }

  .hero-form-card.hero-form-dark {
    padding: 20px;
    border-radius: 20px;
  }

  .testimonials-only {
    grid-template-columns: 1fr;
  }

  .client-review:last-child {
    grid-column: auto;
  }
}

/* =========================================================
   AJUSTE V3 — ORDEM MOBILE E HERO MAIS LIMPO
   Ordem obrigatória:
   1. Selo
   2. Título
   3. Texto
   4. CTAs
   5. Diferenciais
   6. Formulário
   ========================================================= */

@media (max-width: 900px) {
  .hero-grid-background {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-mobile-intro {
    order: 1 !important;
    width: 100%;
  }

  .hero-mobile-form {
    order: 2 !important;
    width: 100%;
  }

  .hero.hero-background {
    align-items: flex-start;
  }

  .hero-form-card.hero-form-dark {
    margin-top: 2px;
  }
}

@media (max-width: 640px) {
  .hero.hero-background {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 40px;
    background-image:
      url("assets/images/hero-restaurante-mobile.jpg");
    background-position: center top;
  }

  .hero-background-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(20,15,17,.91) 0%,
        rgba(20,15,17,.83) 33%,
        rgba(20,15,17,.93) 64%,
        rgba(20,15,17,.98) 100%
      );
  }

  .hero-grid-background {
    gap: 28px;
  }

  .hero-content-clean {
    display: flex;
    flex-direction: column;
  }

  .hero-content-clean .hero-eyebrow {
    order: 1;
    margin-bottom: 16px;
    font-size: .68rem;
    line-height: 1.35;
  }

  .hero-content-clean h1 {
    order: 2;
    max-width: 100%;
    margin: 0;
    font-size: clamp(2.35rem, 11.6vw, 3.3rem);
    line-height: 1.02;
    letter-spacing: -.055em;
  }

  .hero-content-clean .hero-lead {
    order: 3;
    margin-top: 20px;
    font-size: .98rem;
    line-height: 1.58;
  }

  .hero-content-clean .hero-segments {
    order: 4;
    margin-top: 10px;
    font-size: .79rem;
    line-height: 1.5;
  }

  .hero-content-clean .hero-actions {
    order: 5;
    margin-top: 22px;
  }

  .hero-content-clean .hero-trust {
    order: 6;
    margin-top: 24px;
    padding-top: 20px;
  }

  .hero-mobile-form {
    order: 7 !important;
  }

  .hero-form-card.hero-form-dark {
    margin-top: 0;
    padding: 20px 16px;
  }

  .hero-form-dark .form-heading h2 {
    font-size: 1.55rem;
  }

  .hero-form-dark .form-heading p {
    font-size: .84rem;
  }

  .hero-form-dark .field-group input,
  .hero-form-dark .field-group select {
    height: 52px;
  }
}

/* Fallback: caso a imagem mobile ainda não exista, use a desktop. */
@supports not (background-image: url("assets/images/hero-restaurante-mobile.jpg")) {
  @media (max-width: 640px) {
    .hero.hero-background {
      background-image:
        url("assets/images/hero-restaurante.jpg");
    }
  }
}


/* VERSÃO JPG ONLY */
.hero.hero-background {
  background-image: url("assets/images/hero-restaurante.jpg");
}
.final-cta {
  background-image: linear-gradient(rgba(37,30,32,.82), rgba(37,30,32,.82)), url("assets/images/cta-restaurante.jpg");
}
@media (max-width: 640px) {
  .hero.hero-background { background-image: url("assets/images/hero-restaurante-mobile.jpg"); }
  .final-cta { background-image: linear-gradient(rgba(37,30,32,.82), rgba(37,30,32,.82)), url("assets/images/cta-restaurante-mobile.jpg"); }
}

/* =========================================================
   AJUSTE V5 — HERO CENTRALIZADO E DASHBOARD EM UMA TELA
   ========================================================= */

/* PRIMEIRA DOBRA — conteúdo realmente centralizado */
@media (min-width: 901px) {
  .hero.hero-background {
    min-height: 100svh;
    padding-top: var(--header-height);
    padding-bottom: 0;
  }

  .hero-grid-background {
    min-height: calc(100svh - var(--header-height));
    align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-content-clean {
    align-self: center;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-form-card.hero-form-dark {
    align-self: center;
    max-height: calc(100svh - var(--header-height) - 54px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(186, 82, 8, .7) rgba(255, 255, 255, .06);
  }

  .hero-form-card.hero-form-dark::-webkit-scrollbar {
    width: 6px;
  }

  .hero-form-card.hero-form-dark::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .06);
    border-radius: 99px;
  }

  .hero-form-card.hero-form-dark::-webkit-scrollbar-thumb {
    background: rgba(186, 82, 8, .75);
    border-radius: 99px;
  }
}

/* INDICADORES — proporções menores para caber em uma tela */
@media (min-width: 1101px) {
  .dashboard-section {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 54px 0;
  }

  .dashboard-grid {
    width: min(calc(100% - 32px), 1380px);
    grid-template-columns: minmax(250px, .66fr) minmax(560px, 1.18fr) minmax(240px, .46fr);
    gap: 22px;
    align-items: center;
  }

  .dashboard-copy {
    padding-right: 4px;
  }

  .dashboard-copy h2 {
    max-width: 390px;
    font-size: clamp(2.6rem, 3.5vw, 4.1rem);
    line-height: 1.01;
    letter-spacing: -.055em;
  }

  .dashboard-copy > p {
    max-width: 380px;
    margin-top: 18px;
    font-size: .98rem;
    line-height: 1.55;
  }

  .dashboard-copy .eyebrow {
    margin-bottom: 14px;
  }

  .indicator-tags {
    gap: 6px;
    margin-top: 20px;
  }

  .indicator-tags span {
    padding: 6px 9px;
    font-size: .66rem;
  }

  .dashboard-shell {
    padding: 15px;
    border-radius: 22px;
  }

  .dashboard-topbar strong,
  .chart-header strong {
    font-size: .84rem;
  }

  .dashboard-kpis {
    gap: 8px;
    margin-top: 12px;
  }

  .kpi {
    padding: 10px;
    border-radius: 11px;
  }

  .kpi strong {
    margin-top: 3px;
    font-size: .88rem;
  }

  .dashboard-chart {
    margin-top: 9px;
    padding: 11px;
  }

  .bars {
    height: 112px;
    margin-top: 8px;
    padding-top: 8px;
    background: repeating-linear-gradient(
      to top,
      transparent 0,
      transparent 27px,
      rgba(37, 30, 32, .05) 28px
    );
  }

  .bar-group span {
    bottom: -20px;
    font-size: .52rem;
  }

  .dashboard-bottom {
    gap: 9px;
    margin-top: 27px;
  }

  .cost-card,
  .alert-card {
    padding: 10px;
    border-radius: 12px;
  }

  .cost-card {
    grid-template-columns: 48px 1fr;
    gap: 8px;
  }

  .donut {
    width: 46px;
    height: 46px;
  }

  .donut::after {
    inset: 10px;
  }

  .dashboard-photo {
    margin-left: -42px;
  }

  .dashboard-photo img {
    height: 405px;
    border-radius: 20px;
  }
}

/* Telas de notebook com pouca altura */
@media (min-width: 1101px) and (max-height: 800px) {
  .dashboard-section {
    padding: 38px 0;
  }

  .dashboard-copy h2 {
    font-size: clamp(2.35rem, 3.1vw, 3.55rem);
  }

  .dashboard-copy > p {
    font-size: .9rem;
  }

  .dashboard-shell {
    transform: scale(.92);
    transform-origin: center;
  }

  .dashboard-photo {
    margin-left: -72px;
  }

  .dashboard-photo img {
    height: 360px;
  }
}

/* Mantém o layout confortável em tablet */
@media (min-width: 901px) and (max-width: 1100px) {
  .dashboard-section {
    padding: 72px 0;
  }

  .dashboard-copy h2 {
    font-size: clamp(2.6rem, 5vw, 4rem);
  }
}

/* =========================================================
   AJUSTE V6 — HERO E FORMULÁRIO COMPACTOS
   Objetivo: toda a primeira dobra visível, sem scroll interno.
   ========================================================= */

@media (min-width: 901px) {
  .hero.hero-background {
    min-height: 100svh;
    padding: var(--header-height) 0 0;
  }

  .hero-grid-background {
    min-height: calc(100svh - var(--header-height));
    grid-template-columns: minmax(0, .92fr) minmax(560px, 1.08fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .hero-content-clean {
    max-width: 650px;
  }

  .hero-content-clean .hero-eyebrow {
    margin-bottom: 14px;
    font-size: .68rem;
  }

  .hero-content-clean h1 {
    max-width: 650px;
    font-size: clamp(2.7rem, 4.2vw, 4.65rem);
    line-height: .98;
  }

  .hero-content-clean .hero-lead {
    max-width: 600px;
    margin-top: 18px;
    font-size: clamp(.92rem, 1.15vw, 1.04rem);
    line-height: 1.52;
  }

  .hero-content-clean .hero-segments {
    max-width: 590px;
    margin-top: 8px;
    font-size: .76rem;
  }

  .hero-content-clean .hero-actions {
    margin-top: 20px;
  }

  .hero-content-clean .hero-actions .button {
    min-height: 46px;
    padding-inline: 18px;
    font-size: .82rem;
  }

  .hero-trust {
    gap: 12px;
    margin-top: 22px;
    padding-top: 16px;
  }

  .hero-trust strong {
    font-size: .7rem;
  }

  .hero-trust span {
    font-size: .61rem;
  }

  .hero-form-card.hero-form-dark {
    width: 100%;
    max-width: 700px;
    max-height: none;
    margin: 0 0 0 auto;
    padding: 22px;
    overflow: visible;
    border-radius: 22px;
  }

  .hero-form-dark .form-heading {
    margin-bottom: 14px;
  }

  .hero-form-dark .mini-label {
    margin-bottom: 4px;
    font-size: .63rem;
  }

  .hero-form-dark .form-heading h2 {
    max-width: none;
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
    line-height: 1.08;
  }

  .hero-form-dark .form-heading p {
    margin-top: 5px;
    font-size: .76rem;
  }

  .hero-form-dark .form-grid-single {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .hero-form-dark .field-group label {
    margin-bottom: 4px;
    font-size: .68rem;
  }

  .hero-form-dark .field-group input,
  .hero-form-dark .field-group select {
    height: 42px;
    padding-inline: 12px;
    font-size: .78rem;
    border-radius: 10px;
  }

  .hero-form-dark .field-error {
    min-height: 10px;
    margin-top: 1px;
    font-size: .58rem;
  }

  .hero-form-dark .lead-form .button {
    min-height: 44px;
    margin-top: 6px;
    font-size: .8rem;
  }

  .hero-form-dark .privacy-note {
    margin-top: 6px;
    font-size: .62rem;
  }

  .hero-form-dark .form-feedback {
    margin-top: 8px;
    padding: 8px 10px;
    font-size: .72rem;
  }
}

/* Notebook com pouca altura */
@media (min-width: 901px) and (max-height: 820px) {
  .hero-grid-background {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hero-content-clean h1 {
    font-size: clamp(2.45rem, 3.7vw, 4rem);
  }

  .hero-content-clean .hero-lead {
    margin-top: 14px;
    font-size: .9rem;
  }

  .hero-content-clean .hero-actions {
    margin-top: 16px;
  }

  .hero-trust {
    margin-top: 16px;
    padding-top: 12px;
  }

  .hero-form-card.hero-form-dark {
    padding: 18px;
  }

  .hero-form-dark .form-heading {
    margin-bottom: 10px;
  }

  .hero-form-dark .form-grid-single {
    gap: 5px 8px;
  }

  .hero-form-dark .field-group input,
  .hero-form-dark .field-group select {
    height: 39px;
  }

  .hero-form-dark .lead-form .button {
    min-height: 41px;
  }
}

/* Tablet: duas colunas no formulário, mas layout empilhado */
@media (min-width: 641px) and (max-width: 900px) {
  .hero-form-dark .form-grid-single {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-form-card.hero-form-dark {
    max-width: none;
  }
}

/* Celular: texto primeiro, formulário depois e uma coluna */
@media (max-width: 640px) {
  .hero-content-clean h1 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }

  .hero-content-clean .hero-lead {
    font-size: .92rem;
  }

  .hero-form-dark .form-grid-single {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   AJUSTE V7 — CAPTCHA E CONSENTIMENTO
   ========================================================= */

.form-verification-row {
  display: grid;
  grid-template-columns: minmax(190px, .72fr) minmax(0, 1.28fr);
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.captcha-group {
  min-width: 0;
}

.captcha-group label span {
  color: var(--orange-light);
  font-weight: 900;
}

.consent-field {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  cursor: pointer;
}

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

.consent-check {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  margin-top: 1px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 5px;
  background: rgba(255, 255, 255, .055);
  transition:
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.consent-field input:checked + .consent-check {
  border-color: var(--orange);
  background: var(--orange);
}

.consent-field input:checked + .consent-check::after {
  content: "✓";
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
}

.consent-field input:focus-visible + .consent-check {
  outline: 3px solid rgba(186, 82, 8, .35);
  outline-offset: 2px;
}

.consent-text {
  color: rgba(255, 255, 255, .62);
  font-size: .65rem;
  line-height: 1.45;
}

.consent-text a {
  color: #ffb37a;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-field.invalid .consent-check {
  border-color: #df6666;
  box-shadow: 0 0 0 3px rgba(223, 102, 102, .12);
}

@media (min-width: 901px) {
  .hero-form-dark .form-verification-row .field-group input {
    height: 39px;
  }

  .hero-form-dark .form-verification-row {
    margin-top: 2px;
  }
}

@media (max-width: 640px) {
  .form-verification-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .consent-text {
    font-size: .7rem;
  }
}

/* =========================================================
   AJUSTE V9 — MARCA COMPLETA
   Logo em fundo laranja + nome completo
   ========================================================= */

.brand-full {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
  min-width: 0;
  text-decoration: none;
}

.brand-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(186, 82, 8, .22);
}

.brand-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  display: block;
  max-width: 305px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.footer-brand.brand-full {
  gap: 14px;
}

.footer-brand .brand-icon {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  border-radius: 18px;
}

.footer-brand .brand-icon img {
  width: 38px;
  height: 38px;
}

.footer-brand .brand-title {
  max-width: 320px;
  font-size: 1.05rem;
  white-space: normal;
}

@media (max-width: 1100px) {
  .brand-title {
    max-width: 240px;
    font-size: .9rem;
  }

  .brand-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-icon img {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 900px) {
  .brand-full {
    gap: 10px;
  }

  .brand-title {
    max-width: 210px;
    font-size: .84rem;
    white-space: normal;
  }

  .brand-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 14px;
  }

  .brand-icon img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 560px) {
  .brand-title {
    max-width: 150px;
    font-size: .72rem;
    line-height: 1.15;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 13px;
  }

  .brand-icon img {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 390px) {
  .brand-title {
    max-width: 125px;
    font-size: .66rem;
  }
}

/* =========================================================
   AJUSTE V10 — AVALIAÇÕES ILUSTRATIVAS
   ========================================================= */

.testimonial-disclaimer {
  max-width: 820px;
  margin: -22px auto 30px;
  padding: 13px 16px;
  border: 1px solid rgba(186, 82, 8, .2);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(186, 82, 8, .06);
  font-size: .76rem;
  line-height: 1.5;
  text-align: center;
}

.testimonial-disclaimer strong {
  color: var(--orange);
}

.client-review-photo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 3px solid rgba(186, 82, 8, .12);
  border-radius: 50%;
  object-fit: cover;
  background: var(--light);
}

.illustrative-label {
  display: inline-flex !important;
  width: fit-content;
  margin-top: 5px !important;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--orange) !important;
  background: rgba(186, 82, 8, .08);
  font-size: .58rem !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.client-review blockquote {
  min-height: 132px;
}

@media (max-width: 900px) {
  .testimonial-disclaimer {
    margin-top: -12px;
  }

  .client-review blockquote {
    min-height: auto;
  }
}

/* =========================================================
   CORREÇÃO SELECT — CONTRASTE E SETA
   ========================================================= */

.hero-form-dark .field-group select {
  color: #ffffff;
  background-color: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .22);
  color-scheme: dark;

  /* Remove a seta nativa inconsistente e aplica uma seta branca */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, #ffffff 50%),
    linear-gradient(135deg, #ffffff 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.hero-form-dark .field-group select:focus {
  color: #ffffff;
  background-color: rgba(255, 255, 255, .09);
  border-color: var(--orange);
}

.hero-form-dark .field-group select option {
  color: #251e20;
  background: #ffffff;
}

.hero-form-dark .field-group select option[value=""] {
  color: #71696b;
}

/* Placeholder visual enquanto nenhuma opção for escolhida */
.hero-form-dark .field-group select:required:invalid {
  color: rgba(255, 255, 255, .72);
}

/* Mantém o texto visível em navegadores que ignoram color-scheme */
.hero-form-dark .field-group select::-ms-value {
  color: #ffffff;
  background: transparent;
}

.hero-form-dark .field-group select::-ms-expand {
  display: none;
}

/* =========================================================
   MENSAGEM DE SUCESSO — REDESENHO
   ========================================================= */

#form-heading[hidden],
.form-success-panel[hidden] {
  display: none !important;
}

.hero-form-card.submitted {
  display: flex;
  min-height: 430px;
  align-items: center;
  justify-content: center;
  padding: 34px;
  overflow: hidden;
}

.form-success-panel {
  display: flex;
  width: 100%;
  max-width: 560px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  text-align: center;
  animation: successReveal .45s ease both;
}

.success-check {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(145deg, #389267, #24734f);
  box-shadow: 0 16px 38px rgba(45, 122, 87, .28);
  font-size: 2rem;
  font-weight: 900;
}

.success-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--orange-light);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.form-success-panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.success-main-text {
  max-width: 500px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 1rem;
  line-height: 1.6;
}

.success-support-text {
  max-width: 460px;
  margin: 10px 0 24px;
  color: rgba(255, 255, 255, .52);
  font-size: .84rem;
  line-height: 1.55;
}

.success-whatsapp-button {
  width: 100%;
  max-width: 390px;
  min-height: 50px;
}

@keyframes successReveal {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .hero-form-card.submitted {
    min-height: 390px;
    padding: 28px 20px;
  }

  .success-check {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    font-size: 1.7rem;
  }

  .form-success-panel h2 {
    font-size: 2rem;
  }

  .success-main-text {
    font-size: .93rem;
  }

  .success-support-text {
    font-size: .8rem;
  }

  .success-whatsapp-button {
    max-width: none;
  }
}
