:root {
  --cream: #fff2da;
  --cream-2: #fff9ee;
  --red: #df371d;
  --red-2: #f04c1d;
  --orange: #ff7c18;
  --yellow: #ffc21d;
  --green: #0b8e4d;
  --brown: #3f1f17;
  --muted: #6b3f31;
  --line: rgba(105, 54, 31, .18);
  --white: #ffffff;
  --shadow-soft: 0 10px 22px rgba(122, 45, 16, .12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--brown);
  background: var(--cream);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
mark { color: var(--yellow); background: transparent; }

.page-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 16px 34px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 28px 14px;
  background: var(--cream-2);
  border-radius: 0 0 28px 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.brand-name {
  font-size: clamp(34px, 4.2vw, 50px);
  letter-spacing: -2px;
}
.brand-dots {
  color: var(--yellow);
  font-size: 28px;
  letter-spacing: -8px;
  transform: translateY(7px);
}
.top-badges {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  background: #fff7e8;
  border: 1px solid rgba(100, 48, 23, .14);
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(84, 40, 18, .05);
  font-size: 13px;
  font-weight: 900;
  color: #4b271c;
}
.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 165px;
  line-height: 1.08;
}
.badge-item img { width: 28px; height: 28px; object-fit: contain; flex: 0 0 auto; }
.badge-divider { width: 1px; height: 30px; background: rgba(104, 51, 24, .16); }

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: 518px;
  background: linear-gradient(135deg, #e2371b 0%, #f15a1b 52%, #dd3018 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(255,255,255,.13) 0 2px, transparent 3px), radial-gradient(circle at 20% 70%, rgba(255,255,255,.1) 0 2px, transparent 3px);
  background-size: 42px 42px, 58px 58px;
  opacity: .7;
}
.hero-content, .hero-visual { position: relative; z-index: 1; }
.hero-content {
  padding: 58px 0 52px 58px;
  color: var(--white);
}
.hero h1 {
  max-width: 500px;
  margin: 0 0 20px;
  font-size: clamp(42px, 5.9vw, 70px);
  line-height: .92;
  letter-spacing: -2.6px;
  font-weight: 900;
}
.hero-text {
  max-width: 445px;
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 11px;
  max-width: 385px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: 20px;
  box-shadow: 0 5px 10px rgba(79, 29, 12, .18);
}
.btn-primary {
  color: var(--red);
  background: linear-gradient(180deg, #ffd744, var(--yellow));
}
.btn-whatsapp {
  color: var(--white);
  background: linear-gradient(180deg, #12a860, var(--green));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.38), 0 5px 10px rgba(79, 29, 12, .18);
}
.btn-whatsapp::before { content: ""; width: 29px; height: 29px; margin-right: 11px; background: url('assets/icons/whatsapp.svg') center/contain no-repeat; }
.hero-visual {
  min-height: 518px;
  overflow: hidden;
}
.hero-box {
  position: absolute;
  width: 445px;
  right: 38px;
  top: 18px;
  transform: rotate(7deg);
  filter: drop-shadow(0 24px 20px rgba(86, 25, 6, .25));
}
.hero-coxinha {
  position: absolute;
  width: 555px;
  right: -68px;
  bottom: -28px;
  border-radius: 0;
  filter: drop-shadow(0 20px 18px rgba(79, 26, 7, .25));
}

section { margin-top: 18px; }
section h2 {
  margin: 0 0 16px;
  text-align: center;
  color: var(--red);
  font-size: clamp(29px, 3.7vw, 43px);
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 900;
}
section h2::before, section h2::after {
  content: "••";
  color: var(--yellow);
  margin: 0 10px;
  letter-spacing: -4px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0 28px;
}
.audience-card {
  min-height: 248px;
  padding: 28px 18px 20px;
  text-align: center;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(117, 61, 31, .12);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.card-icon {
  width: 83px;
  height: 83px;
  object-fit: contain;
  margin: 0 auto 16px;
}
h3 {
  margin: 0 0 9px;
  font-size: 21px;
  line-height: 1.03;
  font-weight: 900;
}
p { line-height: 1.32; }
.audience-card p, .benefit-strip p, .step-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 0 10px;
}
.product-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 0 16px 14px;
}
.product-yellow { background: linear-gradient(135deg, #ffc31f, #ff9e17); }
.product-red { background: linear-gradient(135deg, #f25a21, #dc2d18); }
.product-title-box {
  margin: 0 auto;
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 0;
}
.product-title-box h3 {
  margin: 0;
  padding: 7px 34px 9px;
  border-radius: 0 0 18px 18px;
  background: rgba(174, 40, 24, .9);
  color: #fff;
  font-size: 25px;
  line-height: 1;
}
.product-subtitle {
  margin: 8px auto 12px;
  max-width: 390px;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: inherit;
}
.product-yellow .product-subtitle { color: #3b2117; }
.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.product-gallery figure {
  margin: 0;
  color: #3b2117;
  text-align: center;
  font-weight: 900;
}
.image-box {
  overflow: hidden;
  border-radius: 15px;
  background: rgba(255,255,255,.92);
  padding: 8px;
  margin-bottom: 8px;
}
.image-box img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
}
.product-gallery figcaption { padding: 0 4px 4px; }
.product-red .product-gallery figcaption { color: #fff; }

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(117, 61, 31, .12);
  margin: 0 10px;
  box-shadow: var(--shadow-soft);
}
.benefit-strip article {
  position: relative;
  min-height: 176px;
  padding: 25px 15px 18px;
  text-align: center;
}
.benefit-strip article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 27px;
  bottom: 27px;
  width: 1px;
  background: rgba(97, 52, 31, .22);
}
.mini-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 0 auto 12px;
}
.benefit-strip h3 { font-size: 16px; }
.benefit-strip p { font-size: 13px; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 0 18px;
}
.step-card {
  position: relative;
  min-height: 118px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px 12px 14px 28px;
  background: transparent;
  border: 1px solid rgba(117, 61, 31, .16);
  border-radius: 18px;
}
.step-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yellow);
  font-size: 38px;
  font-weight: 900;
}
.step-number {
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 19px;
}
.step-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.step-card h3 { font-size: 15px; }
.step-card p { font-size: 13px; }

.final-cta {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: center;
  margin-top: 26px;
  padding: 28px 28px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #df3219, #f45a1c 58%, #d82b19);
  color: var(--white);
  overflow: hidden;
}
.final-copy h2 {
  margin: 0 0 12px;
  text-align: left;
  color: var(--white);
  font-size: clamp(34px, 4vw, 52px);
  line-height: .98;
}
.final-copy h2::before, .final-copy h2::after { content: none; }
.final-copy p {
  max-width: 400px;
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
}
.final-copy img {
  width: min(390px, 100%);
  margin-top: 2px;
  filter: drop-shadow(0 18px 18px rgba(72, 21, 5, .22));
}
.lead-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 248, 236, .96);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7), 0 14px 28px rgba(83, 25, 9, .16);
}
.lead-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.lead-form input {
  width: 100%;
  height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(89, 49, 31, .16);
  background: #fffaf1;
  color: var(--brown);
  font-size: 16px;
  font-weight: 700;
  outline: none;
}
.lead-form input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,189,22,.22);
}
.btn-full { width: 100%; min-height: 58px; font-size: 17px; }
.lead-form small {
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

@media (max-width: 980px) {
  .topbar { display: grid; justify-items: center; }
  .hero, .final-cta { grid-template-columns: 1fr; }
  .hero-content { padding: 42px 28px 10px; }
  .hero-visual { min-height: 390px; }
  .hero-box { width: 360px; right: 22%; }
  .hero-coxinha { width: 480px; right: 7%; }
  .audience-grid, .benefit-strip { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .step-card:nth-child(2)::after { display: none; }
  .benefit-strip article::after { display: none; }
  .benefit-strip article { border-bottom: 1px solid rgba(97, 52, 31, .12); }
}

@media (max-width: 640px) {
  .page-shell { padding: 8px 10px 24px; }
  .brand-name { font-size: 34px; }
  .top-badges { gap: 9px; padding: 8px 10px; font-size: 11px; }
  .badge-item { max-width: 130px; }
  .badge-item img { width: 23px; height: 23px; }
  .hero h1 { letter-spacing: -1px; }
  .hero-text { font-size: 16px; }
  .hero-actions { max-width: none; }
  .btn { min-height: 56px; font-size: 16px; }
  .hero-visual { min-height: 330px; }
  .hero-box { width: 285px; right: 8%; }
  .hero-coxinha { width: 365px; right: -22%; }
  .audience-grid, .benefit-strip, .steps-row, .product-gallery { grid-template-columns: 1fr; padding: 0; }
  .audience-card { min-height: 230px; }
  .image-box img { height: 205px; }
  .step-card::after { display: none !important; }
  .final-cta { padding: 22px 16px; }
  .lead-form { padding: 17px; }
  section h2::before, section h2::after { display: none; }
}
