:root {
  --cream: #f7efe1;
  --cream-2: #fff8ed;
  --sand: #ead8bd;
  --paper: #fffaf1;
  --ink: #211d19;
  --muted: #6e6256;
  --olive: #394129;
  --olive-2: #4b5434;
  --terracotta: #a8532b;
  --brown: #7a4424;
  --line: rgba(80, 57, 40, 0.16);
  --shadow: 0 24px 60px rgba(66, 43, 24, 0.12);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

#inicio,
#sobre,
#como-funciona,
#catalogo,
#perguntas,
#contato {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.85), transparent 28%),
    linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 48%, #fff8ef 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: -1;
}

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

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

svg {
  width: 1em;
  height: 1em;
}

.section-pad,
.footer-grid {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(28px, 4vw, 64px);
  padding-right: clamp(28px, 4vw, 64px);
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 237, 0.78);
  border-bottom: 1px solid rgba(122, 68, 36, 0.08);
}

.brand img {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  font-size: 14px;
  font-weight: 500;
  color: #27231f;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--terracotta);
  transition: transform 0.24s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.catalog-button,
.primary-button,
.secondary-button,
.cta-button {
  min-height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.catalog-button {
  padding: 0 28px;
  color: #fff8ec;
  background: linear-gradient(135deg, var(--olive), var(--olive-2));
  box-shadow: 0 16px 28px rgba(57, 65, 41, 0.18);
}

.catalog-button:hover,
.primary-button:hover,
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(57, 65, 41, 0.2);
}

.button-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.mobile-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.4);
}

.mobile-menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: 54px;
  padding-top: 50px;
  padding-bottom: 62px;
  position: relative;
}

.hero-copy {
  max-width: 610px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: block;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, .section-heading h2, .about-copy h2, .cta-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(45px, 6vw, 78px);
  line-height: 0.96;
  margin-bottom: 24px;
  font-weight: 800;
}

h1 em,
.about-copy em {
  font-style: normal;
  color: var(--terracotta);
}

.hero-copy > p {
  max-width: 510px;
  color: #51463e;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.primary-button {
  background: var(--olive);
  color: #fff8ec;
  padding: 0 26px;
}

.secondary-button {
  padding: 0 34px;
  border: 1px solid rgba(33, 29, 25, 0.42);
  background: rgba(255, 250, 241, 0.54);
}

.secondary-button:hover {
  transform: translateY(-2px);
  border-color: rgba(33, 29, 25, 0.72);
  background: rgba(255,255,255,.58);
}

.location-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #473d34;
  font-size: 15px;
  font-weight: 600;
}

.location-line svg {
  color: var(--terracotta);
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
}

.hero-shape {
  position: absolute;
  width: 76%;
  height: 84%;
  left: -4%;
  top: 6%;
  background: rgba(255, 244, 226, 0.88);
  border-radius: 52% 48% 0 0 / 36% 44% 0 0;
  transform: rotate(-2deg);
  box-shadow: 0 26px 60px rgba(122, 68, 36, 0.08);
}

.hero-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 0 96px;
  position: relative;
  box-shadow: var(--shadow);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 38px;
  padding-bottom: 38px;
  border-top: 1px solid rgba(122, 68, 36, 0.08);
  border-bottom: 1px solid rgba(122, 68, 36, 0.08);
  background: rgba(255, 250, 241, 0.38);
}

.benefit-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  align-items: start;
  column-gap: 18px;
  row-gap: 14px;
  min-height: 138px;
  padding: 12px 28px;
  border-right: 1px solid var(--line);
}

.benefit-card .benefit-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.benefit-card h2,
.benefit-card p {
  grid-column: 2;
  min-width: 0;
}

.benefit-card h2 {
  grid-row: 1;
}

.benefit-card p {
  grid-row: 2;
}

.benefit-card:last-child {
  border-right: 0;
}

.benefit-icon,
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #f6ead8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-size: 31px;
  box-shadow: inset 0 0 0 1px rgba(122, 68, 36, 0.08);
}

.benefit-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  line-height: 1.04;
  margin-bottom: 12px;
  letter-spacing: -0.035em;
}

.benefit-card p {
  color: #4f473e;
  font-size: 13px;
  line-height: 1.65;
  max-width: 250px;
  margin-bottom: 0;
}

.how {
  padding-top: 52px;
  padding-bottom: 68px;
}

.section-heading {
  text-align: center;
  margin-bottom: 52px;
}

.section-heading .eyebrow {
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.05;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 21%;
  right: 21%;
  height: 1px;
  background-image: linear-gradient(to right, rgba(168, 83, 43, 0.35) 45%, transparent 0%);
  background-size: 11px 1px;
}

.step {
  text-align: center;
  position: relative;
  padding-top: 3px;
}

.step-number {
  width: 42px;
  height: 42px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.step-icon {
  margin-bottom: 20px;
}

.step h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.step p {
  color: #51463e;
  line-height: 1.65;
  font-size: 14px;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

.about {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 80px 0 0;
  background: #fff3e6;
  box-shadow: 0 28px 70px rgba(69, 42, 24, 0.12);
}

.about-photo {
  min-height: 560px;
  background: #e9dac8;
  position: relative;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: sepia(0.07) saturate(0.9) contrast(0.96);
}

.about-photo::after {
  content: "Muito\A prazer,";
  white-space: pre;
  position: absolute;
  left: 58px;
  top: 70px;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Caveat", cursive;
  font-size: 55px;
  line-height: 0.8;
  transform: rotate(-3deg);
  text-shadow: 0 2px 10px rgba(58, 38, 25, 0.12);
}

.about-copy {
  position: relative;
  padding: clamp(52px, 6vw, 82px) clamp(42px, 6vw, 76px);
  overflow: hidden;
}

.about-copy h2 {
  font-size: clamp(36px, 4.5vw, 55px);
  line-height: 1.02;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.about-copy p {
  color: #453c35;
  font-size: 15px;
  line-height: 1.72;
  margin-bottom: 14px;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.about-copy strong {
  color: var(--ink);
}

.signature {
  display: inline-block;
  margin-top: 14px;
  font-family: "Caveat", cursive;
  color: var(--terracotta);
  font-size: 43px;
  transform: rotate(-4deg);
  position: relative;
  z-index: 1;
}

.signature::after {
  content: "♡";
  margin-left: 6px;
  font-size: 30px;
}

.leaf-art {
  position: absolute;
  right: 32px;
  bottom: 16px;
  width: 155px;
  height: 240px;
  opacity: 0.22;
  background:
    radial-gradient(ellipse at 50% 20%, transparent 44%, var(--brown) 46%, transparent 49%) 50% 0/2px 100% no-repeat;
}

.leaf-art::before,
.leaf-art::after {
  content: "";
  position: absolute;
  width: 84px;
  height: 130px;
  border: 2px solid var(--brown);
  border-left: 0;
  border-bottom: 0;
  border-radius: 100% 0 100% 0;
  transform: rotate(-28deg);
}

.leaf-art::before {
  top: 18px;
  right: 42px;
  box-shadow: -26px 54px 0 -2px transparent;
}

.leaf-art::after {
  top: 82px;
  left: 24px;
  transform: scaleX(-1) rotate(-28deg);
}

.catalog {
  padding-top: 62px;
  padding-bottom: 28px;
}

.catalog .section-heading {
  margin-bottom: 26px;
}

.catalog-lead {
  max-width: 800px;
  margin: 16px auto 0;
  color: #554a41;
  font-size: 15px;
  line-height: 1.75;
}

.catalog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.catalog-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.catalog-filter,
.catalog-help,
.catalog-card .catalog-link {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.catalog-filter {
  border: 1px solid rgba(122, 68, 36, 0.18);
  background: rgba(255, 250, 241, 0.7);
  color: #4f443b;
  padding: 12px 18px;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.catalog-filter:hover {
  transform: translateY(-1px);
  border-color: rgba(122, 68, 36, 0.34);
}

.catalog-filter.is-active {
  background: linear-gradient(135deg, var(--olive), var(--olive-2));
  border-color: transparent;
  color: #fff8ec;
  box-shadow: 0 12px 20px rgba(57, 65, 41, 0.18);
}

.catalog-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(122, 68, 36, 0.16);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.catalog-help:hover,
.catalog-card .catalog-link:hover {
  transform: translateY(-2px);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(122, 68, 36, 0.12);
  box-shadow: 0 20px 48px rgba(62, 38, 24, 0.08);
}

.catalog-card.is-hidden {
  display: none;
}

.catalog-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eadfce;
}

.catalog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.catalog-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.catalog-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.catalog-slide.is-active {
  opacity: 1;
}

.catalog-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 248, 237, 0.92);
  color: #553c30;
  box-shadow: 0 12px 24px rgba(62, 38, 24, 0.16);
  cursor: pointer;
  z-index: 2;
}

.catalog-arrow:hover {
  background: #fffdf8;
}

.catalog-arrow.prev {
  left: 12px;
}

.catalog-arrow.next {
  right: 12px;
}

.catalog-arrow svg {
  width: 18px;
  height: 18px;
}

.catalog-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.catalog-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 248, 237, 0.6);
  cursor: pointer;
}

.catalog-dot.is-active {
  background: #fffdf8;
  box-shadow: 0 0 0 2px rgba(122, 68, 36, 0.14);
}

.catalog-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 248, 237, 0.92);
  color: var(--terracotta);
}

.catalog-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 22px 24px;
  flex: 1;
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f6ead8;
  color: #644f41;
  font-size: 12px;
  font-weight: 600;
}

.catalog-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.catalog-card p {
  margin-bottom: 0;
  color: #574b42;
  font-size: 14px;
  line-height: 1.7;
}

.catalog-card .catalog-link {
  margin-top: auto;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--olive);
  color: #fff8ec;
  font-size: 14px;
  font-weight: 700;
  padding: 0 18px;
  box-shadow: 0 14px 26px rgba(57, 65, 41, 0.16);
}

.catalog-note {
  color: #7a6b5f;
  font-size: 12px;
  line-height: 1.5;
}

.catalog-empty {
  padding: 36px 24px;
  border-radius: 20px;
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(122, 68, 36, 0.12);
  color: #574b42;
  text-align: center;
  grid-column: 1 / -1;
}

.catalog-empty p {
  max-width: 560px;
  margin: 0 auto 18px;
  line-height: 1.7;
}

.catalog-empty-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--olive);
  color: #fff8ec;
  font-size: 14px;
  font-weight: 800;
  padding: 0 22px;
  box-shadow: 0 14px 26px rgba(57, 65, 41, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-empty-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(57, 65, 41, 0.2);
}

.main-cta {
  margin-top: 56px;
  margin-bottom: 36px;
  min-height: 205px;
  display: grid;
  grid-template-columns: 330px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 0;
  background: linear-gradient(135deg, #8f431c 0%, #b55b2b 100%);
  color: #fff7ed;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(128, 60, 24, 0.22);
}

.cta-image {
  height: 205px;
  overflow: hidden;
  border-radius: 0 26px 26px 0;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-copy h2 {
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.05;
  max-width: 560px;
  margin-bottom: 14px;
}

.cta-copy p {
  color: rgba(255, 248, 237, 0.9);
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 0;
}

.cta-button {
  margin-right: 40px;
  background: #fff5e8;
  color: var(--ink);
  padding: 0 32px;
  min-width: 218px;
}

.faq {
  padding-top: 24px;
  padding-bottom: 58px;
}

.faq .section-heading {
  margin-bottom: 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.faq-column {
  display: grid;
  gap: 14px;
  align-content: start;
}

details {
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(122, 68, 36, 0.16);
  border-radius: 10px;
  overflow: hidden;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: #2c2722;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "⌄";
  color: var(--terracotta);
  font-size: 19px;
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(180deg);
}

details p {
  padding: 0 22px 20px;
  margin: 0;
  color: #5d5147;
  line-height: 1.6;
  font-size: 14px;
}

.footer {
  background: rgba(246, 234, 216, 0.6);
  border-top: 1px solid rgba(122, 68, 36, 0.1);
}

.footer-grid {
  padding-top: 42px;
  padding-bottom: 42px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr 0.85fr;
  gap: 48px;
}

.footer-logo {
  width: 116px;
  margin-bottom: 14px;
}

.footer h3 {
  font-size: 15px;
  margin-bottom: 16px;
}

.footer p,
.footer a {
  display: block;
  color: #554a41;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 7px;
}

.footer a:hover {
  color: var(--terracotta);
}

.footer-contact {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: var(--ink) !important;
  font-size: 21px !important;
  font-weight: 700;
}

.footer-contact svg {
  width: 24px;
  height: 24px;
}

.copyright {
  background: #2f3322;
  color: rgba(255, 248, 237, 0.8);
  text-align: center;
  padding: 14px 18px;
  font-size: 12px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--olive);
  color: #fff;
  font-size: 30px;
  box-shadow: 0 18px 35px rgba(57, 65, 41, 0.28);
  z-index: 35;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .section-pad,
  .footer-grid,
  .about {
    width: min(100% - 36px, var(--container));
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 82px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 250, 241, 0.96);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu {
    display: block;
  }

  .catalog-button {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 38px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: auto;
  }

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

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

  .benefit-card:nth-child(2) {
    border-right: 0;
  }

  .benefit-card:nth-child(1),
  .benefit-card:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

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

  .about-photo {
    min-height: 470px;
  }

  .main-cta {
    grid-template-columns: 1fr;
    padding-bottom: 30px;
    gap: 24px;
  }

  .cta-image {
    width: 100%;
    border-radius: 0;
  }

  .cta-copy,
  .cta-button {
    margin-left: 28px;
    margin-right: 28px;
  }

  .cta-button {
    width: max-content;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 78px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand img {
    width: 92px;
  }

  .catalog-button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 12px;
  }

  .catalog-button .button-icon {
    display: none;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(40px, 11vw, 56px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

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

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-visual img {
    height: 370px;
    border-radius: 28px;
  }

  .benefits {
    grid-template-columns: 1fr;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .catalog {
    padding-top: 42px;
  }

  .catalog-top {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-help {
    width: 100%;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-card h3 {
    font-size: 24px;
  }

  .benefit-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 22px 8px;
  }

  .benefit-card p {
    max-width: none;
  }

  .benefit-card:last-child {
    border-bottom: 0;
  }

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

  .steps::before {
    display: none;
  }

  .step {
    padding: 22px 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 250, 241, 0.5);
  }

  .step-number {
    margin-bottom: 16px;
  }

  .about {
    width: 100%;
    border-radius: 0;
  }

  .about-photo {
    min-height: 430px;
  }

  .about-photo::after {
    left: 28px;
    top: 42px;
    font-size: 46px;
  }

  .about-copy {
    padding: 42px 24px;
  }

  .main-cta {
    border-radius: 0;
    width: 100%;
  }

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

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

  .floating-whatsapp {
    display: flex;
  }
}

/* Ícones refinados: WhatsApp oficial e coração sem falhas */
.icon-whatsapp,
.icon-heart {
  display: block;
  flex: 0 0 auto;
}

.button-icon .icon-whatsapp {
  width: 21px;
  height: 21px;
}

.step-icon .icon-whatsapp {
  width: 30px;
  height: 30px;
}

.footer-contact .icon-whatsapp {
  width: 24px;
  height: 24px;
}

.floating-whatsapp .icon-whatsapp {
  width: 32px;
  height: 32px;
}

.benefit-icon .icon-heart {
  width: 33px;
  height: 33px;
}


/* Ajuste da imagem de apresentação da Suzana: mantém a arte inteira, sem corte e sem texto duplicado. */
.about-photo {
  min-height: auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #eee3d2;
}

.about-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.about-photo::after {
  display: none;
}

.icon-bag-check {
  width: 1em;
  height: 1em;
}
