:root {
  --cream: #fff6df;
  --paper: #fffaf0;
  --brown: #4a180d;
  --red: #d94b3d;
  --red-dark: #b9362d;
  --gold: #ffb000;
  --ink: #28130d;
  --muted: #755b51;
  --line: #e9d8be;
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

main {
  overflow: clip;
}

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

[hidden] {
  display: none !important;
}

button,
input,
select {
  font: inherit;
}

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

.shell {
  width: min(var(--content), calc(100% - clamp(32px, 5vw, 72px)));
  margin-inline: auto;
}

.promo-bar {
  min-height: 35px;
  padding: 8px 20px;
  background: var(--brown);
  color: #fff3d0;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.promo-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #5ee46d;
  box-shadow: 0 0 0 4px rgba(94, 228, 109, .12);
}

.promo-sep {
  margin: 0 10px;
  color: #db956c;
}

.nav {
  position: relative;
  z-index: 20;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Arial Black, Arial, sans-serif;
  letter-spacing: -.04em;
  font-size: 22px;
}

.brand-logo {
  width: 200px;
  height: auto;
  max-height: 55px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #593d34;
  font-size: 13px;
  font-weight: 800;
}

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

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex: 0 0 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--brown);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 8px;
  padding: 16px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.wa-link::before {
  content: '';
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: #fff url('../images/whatsapp.svg') center/14px no-repeat;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .14);
}

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

.button-small {
  padding: 12px 16px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  box-shadow: 0 5px 0 var(--red-dark);
}

.button-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 0 var(--red-dark), 0 15px 32px rgba(217, 75, 61, .2);
}

.button-dark {
  background: var(--brown);
  color: #fff;
  box-shadow: 0 6px 0 #2b0b04;
}

.button-cream {
  background: var(--cream);
  color: var(--brown);
  box-shadow: 0 6px 0 #e9c988;
}

.button-whatsapp {
  width: 100%;
  background: #20a95b;
  color: #fff;
  box-shadow: 0 6px 0 #11753b, 0 16px 32px rgba(32, 169, 91, .22);
}

.button-whatsapp:hover {
  background: #16954d;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
  gap: clamp(34px, 4vw, 58px);
  padding-block: 55px 68px;
}

.hero-copy,
.hero-visual,
.product-copy,
.menu-frame,
.booth-image,
.booth-copy,
.lead-copy,
.wa-card {
  min-width: 0;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
}

.eyebrow {
  padding: 7px 10px;
  border: 1px solid #f2c7a2;
  border-radius: 99px;
  background: #fff8e9;
}

h1,
h2 {
  margin: 0;
  font-family: Arial Black, Arial, sans-serif;
  letter-spacing: -.065em;
  line-height: .99;
}

h1 {
  max-width: 700px;
  margin-top: 24px;
  font-size: clamp(48px, 6.2vw, 78px);
}

h1 em,
h2 em {
  color: var(--red);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-price {
  display: grid;
  width: fit-content;
  margin-bottom: 24px;
}

.hero-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-price strong {
  color: var(--brown);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -.05em;
}

.hero-price small {
  color: #92786d;
  font-size: 11px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.text-link {
  color: var(--brown);
  font-size: 13px;
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #665047;
  font-size: 12px;
  font-weight: 800;
}

.trust-row b {
  color: #29a547;
}

.hero-visual {
  position: relative;
  border: 2px solid var(--brown);
  border-radius: 28px;
  padding: 10px;
  background: #f4cb82;
  box-shadow: 16px 16px 0 var(--brown);
  transform: rotate(1.2deg);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1586/992;
  object-fit: contain;
  border-radius: 18px;
}

.visual-sticker {
  position: absolute;
  z-index: 2;
  top: -30px;
  right: -20px;
  width: 125px;
  height: 125px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--brown);
  font-size: 13px;
  text-transform: uppercase;
  transform: rotate(9deg);
  border: 2px solid var(--brown);
  box-shadow: 5px 6px 0 var(--brown);
}

.visual-sticker b {
  font-size: 17px;
}

.visual-note {
  position: absolute;
  left: -25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 2px solid var(--brown);
  border-radius: 10px;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 5px 6px 0 var(--brown);
  transform: rotate(-3deg);
}

.visual-note span {
  color: var(--red);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 36px;
  line-height: 1;
}

.quick-stats {
  background: var(--brown);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stats-grid>div {
  padding: 25px 30px;
  border-right: 1px solid rgba(255, 255, 255, .17);
}

.stats-grid>div:first-child {
  border-left: 1px solid rgba(255, 255, 255, .17);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--gold);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 25px;
  letter-spacing: -.04em;
}

.stats-grid span {
  margin-top: 5px;
  color: #dec6bd;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.section {
  padding-block: 105px;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(38px, 5vw, 64px);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: end;
}

.split-heading>p {
  max-width: 430px;
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.7;
}

.centered {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.centered>p {
  color: var(--muted);
}

.compact {
  max-width: 720px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 55px;
}

.benefit-card {
  min-height: 260px;
  padding: 28px 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf7;
  transition: transform .2s ease, border-color .2s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #d09570;
}

.card-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--red);
  font-family: Arial Black, Arial, sans-serif;
}

.benefit-card h3 {
  margin: 44px 0 12px;
  font-size: 20px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-showcase {
  position: relative;
  overflow: hidden;
  padding-block: 90px;
  background: var(--red);
  color: #fff;
}

.product-showcase::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -100px;
  top: -160px;
  border: 80px solid rgba(255, 176, 0, .18);
  border-radius: 50%;
}

.product-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 55px;
  align-items: center;
}

.kicker-light {
  color: #ffd36c;
}

.product-copy h2 {
  margin-top: 14px;
  font-size: clamp(38px, 4.5vw, 58px);
}

.product-copy h2 em {
  color: #ffd36c;
}

.product-copy p {
  color: #ffe0dc;
  line-height: 1.7;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.chips span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
}

.menu-frame {
  margin: 0;
  padding: 10px;
  border: 2px solid var(--brown);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: 13px 14px 0 var(--brown);
  transform: rotate(-1.2deg);
}

.menu-frame img {
  width: 100%;
  aspect-ratio: 1529/956;
  object-fit: contain;
  border-radius: 12px;
}

.menu-frame figcaption {
  padding: 10px 6px 2px;
  color: var(--brown);
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.toggle {
  display: flex;
  width: fit-content;
  margin: 34px auto 42px;
  padding: 5px;
  border-radius: 99px;
  background: #f1e3cb;
}

.toggle button {
  padding: 12px 19px;
  border: 0;
  border-radius: 99px;
  background: transparent;
  color: #6d554a;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.toggle button.active {
  background: var(--brown);
  color: #fff;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf8;
}

.package-card.featured {
  border: 2px solid var(--red);
  box-shadow: 0 18px 50px rgba(74, 24, 13, .1);
}

.recommended {
  position: absolute;
  top: -14px;
  left: 24px;
  padding: 7px 12px;
  border-radius: 99px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.package-note {
  margin: 4px 0 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  min-height: 52px;
  margin: 0;
  font-size: 23px;
}

.package-price {
  display: grid;
  margin: 20px 0;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.package-price span {
  color: #8c7165;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.package-price del {
  width: fit-content;
  margin-top: 8px;
  color: #9c847a;
  font-size: 12px;
  font-weight: 700;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}

.package-price strong {
  margin-top: 4px;
  color: var(--brown);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 34px;
  letter-spacing: -.05em;
}

.package-features {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 142px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.package-features li span {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  border-radius: 50%;
  background: #dff4e4;
  color: #248b3b;
  font-size: 10px;
  font-weight: 900;
}

.package-cta {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  border: 0;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 5px 0 var(--red-dark), 0 12px 24px rgba(217, 75, 61, .18);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.package-cta:hover {
  background: #c94135;
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--red-dark), 0 15px 28px rgba(217, 75, 61, .22);
}

.package-card.featured .package-cta {
  background: var(--brown);
  box-shadow: 0 5px 0 #250b05, 0 12px 24px rgba(74, 24, 13, .18);
}

.package-card.featured .package-cta:hover {
  background: #371008;
}

.disclaimer {
  max-width: 980px;
  margin: 25px auto 0;
  color: #927b71;
  text-align: center;
  font-size: 10px;
  line-height: 1.6;
}

.booth-section {
  padding-block: 90px;
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.booth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 70px;
  align-items: center;
}

.booth-image {
  padding: 10px;
  border: 2px solid var(--brown);
  border-radius: 20px;
  background: #fff;
  box-shadow: -13px 14px 0 var(--gold);
  transform: rotate(-1deg);
}

.booth-image img {
  width: 100%;
  aspect-ratio: 1529/956;
  object-fit: contain;
  border-radius: 12px;
}

.booth-copy h2 {
  margin-top: 14px;
  font-size: clamp(38px, 4.5vw, 58px);
}

.booth-copy>p {
  color: var(--muted);
  line-height: 1.7;
}

.booth-copy ul {
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.booth-copy li {
  padding: 8px 0;
  font-size: 14px;
  font-weight: 800;
}

.booth-copy li span {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  margin-right: 8px;
  border-radius: 50%;
  background: #d9f2dc;
  color: #24973b;
  font-size: 11px;
}

.gallery-heading {
  align-items: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(74, 24, 13, .08);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 345/351;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  display: grid;
  gap: 4px;
  padding: 17px 18px 19px;
}

.gallery-grid figcaption b {
  color: var(--brown);
  font-size: 16px;
}

.gallery-grid figcaption span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.open-locations {
  position: relative;
  overflow: hidden;
  padding-block: 95px;
  background: var(--red);
  color: #fff;
}

.open-locations::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  right: -130px;
  top: -150px;
  border: 70px solid rgba(255, 176, 0, .2);
  border-radius: 50%;
}

.open-locations>.shell {
  position: relative;
}

.location-heading {
  align-items: center;
}

.location-heading h2 em {
  color: #ffd66e;
}

.location-heading>p {
  color: #ffe0dc;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}

.location-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 15px;
  background: var(--brown);
  backdrop-filter: blur(4px);
}

.location-grid article>span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffd66e;
  color: var(--brown);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 11px;
}

.location-grid article>div {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.location-grid b {
  font-size: 17px;
}

.location-grid small {
  color: #ffdcd7;
  font-size: 11px;
  line-height: 1.5;
}

.location-grid em {
  grid-column: 2;
  width: fit-content;
  padding: 5px 8px;
  border-radius: 99px;
  background: #fff;
  color: var(--red);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.location-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 30px;
  padding: 22px 24px;
  border-radius: 16px;
  background: #fff;
  color: var(--brown);
}

.location-action p {
  margin: 0;
  font-weight: 900;
  line-height: 1.45;
}

.button-location {
  flex: 0 0 auto;
  background: var(--brown);
  color: #fff;
  box-shadow: 0 5px 0 #260a04;
}

.location-note {
  display: block;
  max-width: 760px;
  margin: 16px auto 0;
  color: #ffd0ca;
  text-align: center;
  font-size: 9px;
  line-height: 1.5;
}

.partner-proof {
  padding-block: 95px;
  background: var(--brown);
  color: #fff;
}

.partner-proof .centered>p {
  color: #d8bdb2;
  line-height: 1.65;
}

.partner-proof h2 em {
  color: var(--gold);
}

.chat-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.chat-mockup {
  min-width: 0;
  overflow: hidden;
  border: 6px solid #171717;
  border-radius: 24px;
  background: #efeae2;
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .28);
}

.chat-header {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #075e54;
  color: #fff;
}

.chat-header>img {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: #fff5d8;
  object-fit: cover;
  object-position: center;
}

.chat-header>div {
  min-width: 0;
  display: grid;
  margin-right: auto;
}

.chat-header b {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-header small {
  color: #cce9df;
  font-size: 9px;
}

.chat-header>span {
  padding: 5px 6px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 99px;
  color: #dcfff2;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .08em;
}

.chat-body {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px 10px;
  background-color: #efe8de;
  background-image: radial-gradient(rgba(102, 86, 72, .09) 1px, transparent 1px);
  background-size: 16px 16px;
}

.chat-date {
  align-self: center;
  padding: 5px 8px;
  border-radius: 6px;
  background: #d8ecec;
  color: #476461;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .06em;
}

.chat-encryption {
  align-self: center;
  max-width: 90%;
  padding: 6px 9px;
  border-radius: 7px;
  background: #fff4c6;
  color: #6f6546;
  font-size: 7px;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .06);
}

.chat-encryption span {
  margin-right: 2px;
  font-size: 7px;
}

.chat-bubble {
  position: relative;
  max-width: 88%;
  margin: 0;
  padding: 9px 10px 15px;
  border-radius: 8px;
  font-size: 10px;
  line-height: 1.45;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}

.chat-bubble::after {
  position: absolute;
  right: 7px;
  bottom: 4px;
  color: #78909c;
  font-size: 6px;
}

.chat-bubble:nth-of-type(1)::after {
  content: '10:18';
}

.chat-bubble:nth-of-type(2)::after {
  content: '10:21 ✓✓';
}

.chat-bubble:nth-of-type(3)::after {
  content: '10:23';
}

.chat-bubble:nth-of-type(4)::after {
  content: '10:27 ✓✓';
}

.chat-bubble.incoming {
  align-self: flex-start;
  background: #fff;
}

.chat-bubble.outgoing {
  align-self: flex-end;
  background: #d9ffc8;
}

.chat-bubble.outgoing::after {
  color: #4299be;
}

.chat-input {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: #f5f5f5;
}

.chat-input span {
  flex: 1;
  padding: 9px 12px;
  border-radius: 99px;
  background: #fff;
  color: #a6a6a6;
  font-size: 9px;
}

.chat-input b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #20a95b;
  color: #fff;
  font-size: 13px;
}

.proof-disclosure {
  max-width: 760px;
  margin: 24px auto 0;
  color: #c5a79b;
  text-align: center;
  font-size: 10px;
  line-height: 1.6;
}

.proof-disclosure b {
  color: #f4d9cd;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 60px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 0 25px;
  text-align: center;
}

.steps li:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 18px;
  right: -10px;
  color: #c9a87b;
  font-size: 24px;
}

.steps li>span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: auto;
  border-radius: 50%;
  background: var(--brown);
  color: var(--gold);
  font-family: Arial Black, Arial, sans-serif;
  border: 4px solid var(--cream);
  box-shadow: 0 0 0 1px var(--brown);
}

.steps h3 {
  margin: 19px 0 8px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.lead-section {
  padding-block: 100px;
  background: var(--brown);
  color: #fff;
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: center;
}

.lead-copy h2 {
  margin-top: 15px;
  font-size: clamp(42px, 5vw, 65px);
}

.lead-copy h2 em {
  color: var(--gold);
}

.lead-copy>p {
  max-width: 530px;
  color: #ddc1b6;
  line-height: 1.7;
}

.lead-proof {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.lead-proof>span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #2e9b49;
}

.lead-proof div {
  display: grid;
}

.lead-proof small {
  margin-top: 4px;
  color: #c7a79b;
}

.wa-card {
  position: relative;
  padding: 36px;
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 14px 14px 0 var(--gold);
}

.wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #157c43;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}

.wa-badge i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #29c56b;
  box-shadow: 0 0 0 5px rgba(41, 197, 107, .12);
}

.wa-card h3 {
  max-width: 520px;
  margin: 20px 0 12px;
  color: var(--brown);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.wa-card>p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.wa-points {
  display: grid;
  gap: 10px;
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.wa-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #54392f;
  font-size: 13px;
  font-weight: 800;
}

.wa-points span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  border-radius: 50%;
  background: #fff0ce;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.wa-note {
  display: block;
  margin-top: 14px;
  color: #8f766c;
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
}

.faq-heading {
  align-items: center;
}

.faq-list {
  max-width: 880px;
  margin: 55px auto 0;
  border-top: 1px solid var(--line);
}

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

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 5px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button b {
  color: var(--red);
  font-size: 22px;
}

.faq-item p {
  max-width: 750px;
  margin: -5px 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 245px;
  margin: 32px auto 0;
  padding: 14px 22px;
  border: 1px solid var(--brown);
  border-radius: 99px;
  background: transparent;
  color: var(--brown);
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.faq-more:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-2px);
}

.faq-more b {
  color: var(--red);
  font-size: 18px;
}

.final-cta {
  padding-block: 65px;
  background: var(--red);
  color: #fff;
}

.final-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.final-inner>div>span {
  color: #ffd876;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.final-inner h2 {
  margin-top: 8px;
  font-size: clamp(33px, 4.2vw, 52px);
}

footer {
  padding: 65px 0 22px;
  background: #1e0905;
  color: #f5ded4;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, .8fr);
  gap: 45px;
}

.brand-footer {
  color: #fff;
}

.brand-footer .brand-logo {
  width: 220px;
  padding: 4px;
  border-radius: 9px;
  background: #fff;
}

.footer-grid p {
  color: #ad8f84;
  font-size: 12px;
  line-height: 1.65;
}

.footer-grid b {
  color: #fff;
  font-size: 12px;
}

.footer-grid>div:last-child {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid a:not(.brand) {
  color: #e5b45f;
  font-size: 12px;
  font-weight: 800;
}

.copyright {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #836960;
  font-size: 10px;
}

.floating-actions {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.floating-button {
  min-height: 50px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(50, 10, 5, .24);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

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

.floating-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  border-radius: 99px;
  background: #20a95b;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.floating-wa:hover {
  background: #16954d;
}

.floating-wa::before {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
  background-size: 17px;
}

.back-to-top {
  width: 50px;
  border-radius: 50%;
  background: var(--brown);
  color: #fff;
  font-size: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width:1400px) {
  :root {
    --content: 1280px;
  }

  .hero {
    min-height: 720px;
  }

  h1 {
    font-size: 82px;
  }
}

@media (min-width:1024px) and (max-width:1199px) {
  :root {
    --content: 100%;
  }

  .shell {
    width: calc(100% - 48px);
  }

  .nav-menu {
    gap: 18px;
  }

  .nav .button-small {
    gap: 10px;
    padding-inline: 13px;
  }

  .brand-logo {
    width: 180px;
  }

  .hero {
    min-height: 620px;
    gap: 30px;
    padding-block: 48px 58px;
  }

  h1 {
    font-size: clamp(52px, 6vw, 66px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .visual-sticker {
    right: -8px;
  }

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

  .benefit-card {
    min-height: 220px;
  }

  .package-card {
    padding: 24px;
  }

  .package-price strong {
    font-size: 29px;
  }

  .booth-layout,
  .lead-layout {
    gap: 46px;
  }

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

@media (max-width:1023px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    width: min(320px, calc(100vw - 48px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 0 0 12px 12px;
    background: var(--paper);
    box-shadow: 0 18px 40px rgba(74, 24, 13, .16);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 14px;
    border-radius: 7px;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    background: var(--cream);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-block: 48px 66px;
  }

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

  .hero-lead,
  .hero-price {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 720px);
    margin: 20px auto 0;
  }

  .split-heading,
  .product-layout,
  .booth-layout,
  .lead-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 45px;
  }

  .split-heading {
    align-items: start;
  }

  .split-heading>p {
    max-width: 680px;
  }

  .product-copy,
  .booth-copy,
  .lead-copy {
    max-width: 760px;
  }

  .menu-frame,
  .booth-image {
    width: min(100%, 780px);
    margin-inline: auto;
  }

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

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

  .package-card:last-child {
    grid-column: 1/-1;
  }

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

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

  .location-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .chat-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 0;
  }

  .steps li:nth-child(2)::after {
    display: none;
  }

  .wa-card {
    width: min(100%, 760px);
  }

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

@media (max-width:767px) {
  .shell {
    width: calc(100% - 32px);
  }

  .promo-bar {
    font-size: 10px;
  }

  .promo-sep {
    display: none;
  }

  .nav {
    min-height: 68px;
  }

  .nav .button {
    display: none;
  }

  .brand-logo {
    width: 175px;
    max-height: 46px;
  }

  .hero {
    padding-block: 38px 58px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(42px, 9vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-price strong {
    font-size: 37px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 19px;
  }

  .hero-actions .button-primary {
    width: min(100%, 480px);
  }

  .trust-row {
    gap: 9px 13px;
    font-size: 10px;
  }

  .hero-visual {
    box-shadow: 8px 9px 0 var(--brown);
  }

  .visual-sticker {
    width: 90px;
    height: 90px;
    top: -17px;
    right: -4px;
    font-size: 9px;
  }

  .visual-sticker b {
    font-size: 12px;
  }

  .visual-note {
    left: -6px;
    bottom: 8px;
    padding: 7px 10px;
  }

  .visual-note span {
    font-size: 27px;
  }

  .quick-stats {
    padding-block: 12px;
  }

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

  .stats-grid>div,
  .stats-grid>div:first-child {
    min-height: 88px;
    display: grid;
    align-content: center;
    padding: 15px 10px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, .075);
    text-align: center;
  }

  .stats-grid strong {
    font-size: 19px;
  }

  .section {
    padding-block: 72px;
  }

  .split-heading {
    gap: 25px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .benefit-card {
    min-height: 220px;
  }

  .product-showcase,
  .booth-section {
    padding-block: 70px;
  }

  .menu-frame {
    box-shadow: 7px 8px 0 var(--brown);
  }

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

  .package-card:last-child {
    grid-column: auto;
  }

  .package-card {
    padding: 25px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps li::after {
    display: none;
  }

  .lead-section {
    padding-block: 75px;
  }

  .lead-layout {
    gap: 35px;
  }

  .wa-card {
    padding: 26px 20px;
    box-shadow: 7px 8px 0 var(--gold);
  }

  .faq-list {
    margin-top: 38px;
  }

  .chat-proof-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .location-grid article {
    padding: 17px;
  }

  .location-action {
    gap: 16px;
    padding: 20px;
  }

  .location-action .button {
    width: 100%;
  }

  .open-locations {
    padding-block: 72px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 36px;
  }

  .gallery-grid figure {
    border-radius: 12px;
  }

  .gallery-grid figcaption {
    padding: 12px;
  }

  .gallery-grid figcaption b {
    font-size: 14px;
  }

  .gallery-grid figcaption span {
    font-size: 10px;
    line-height: 1.35;
  }

  .chat-body {
    min-height: 360px;
  }

  .partner-proof {
    padding-block: 72px;
  }

  .final-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-inner .button {
    width: 100%;
  }

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

  .copyright {
    flex-direction: column;
    gap: 8px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-wa {
    min-width: 158px;
    height: 54px;
    justify-content: center;
    padding: 0 16px;
  }

  .floating-wa span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
  }

  .floating-wa::before {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    background-size: 18px;
    box-shadow: none;
  }

  .back-to-top {
    width: 46px;
    min-height: 46px;
  }
}

@media (max-width:479px) {
  .shell {
    width: calc(100% - 24px);
  }

  .promo-bar {
    padding-inline: 12px;
    line-height: 1.4;
  }

  .brand-logo {
    width: 150px;
    max-height: 40px;
  }

  .hero {
    padding-top: 32px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .08em;
  }

  h1 {
    margin-top: 18px;
    font-size: clamp(36px, 11.5vw, 46px);
    letter-spacing: -.055em;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 15px;
  }

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

  .button {
    gap: 10px;
    padding: 15px 16px;
    text-align: center;
  }

  .hero-visual {
    width: calc(100% - 8px);
    border-radius: 20px;
    padding: 7px;
    transform: rotate(.5deg);
  }

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

  .visual-sticker {
    width: 78px;
    height: 78px;
    top: -16px;
    right: -4px;
  }

  .visual-note {
    left: -4px;
    bottom: 6px;
    font-size: 9px;
  }

  .visual-note span {
    font-size: 24px;
  }

  .stats-grid strong {
    font-size: 17px;
  }

  .stats-grid span {
    font-size: 9px;
    line-height: 1.35;
  }

  .section-heading h2,
  .product-copy h2,
  .booth-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .toggle {
    width: 100%;
  }

  .toggle button {
    flex: 1;
    padding-inline: 10px;
    font-size: 11px;
  }

  .package-card {
    padding: 22px 18px;
  }

  .package-price strong {
    font-size: 30px;
  }

  .package-features {
    min-height: 0;
  }

  .package-cta {
    gap: 8px;
  }

  .lead-copy h2 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .wa-card h3 {
    font-size: 28px;
  }

  .faq-item button {
    padding-block: 19px;
    font-size: 14px;
    line-height: 1.4;
  }

  .faq-item p {
    font-size: 14px;
  }

  .faq-more {
    width: 100%;
    min-width: 0;
  }

  .final-cta {
    padding-block: 52px;
  }

  .brand-footer .brand-logo {
    width: 190px;
  }

  .floating-actions {
    right: 10px;
    bottom: 10px;
  }
}

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

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