:root {
  --st-ink: #0c0c0c;
  --st-charcoal: #161616;
  --st-graphite: #2a2a2a;
  --st-wood: #c4a574;
  --st-wood-deep: #8b6914;
  --st-red: #e31e24;
  --st-lime: #7cff3a;
  --st-mist: #f3efe8;
  --st-muted: rgba(243, 239, 232, 0.72);
  --st-line: rgba(243, 239, 232, 0.14);
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--st-mist);
  background: var(--st-ink);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

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

.section,
.hero,
.pricing,
.roi {
  max-width: 100%;
  overflow-x: clip;
}

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

/* —— Nav —— */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, padding 0.35s ease;
}

.site-nav.is-scrolled {
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--st-line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: auto;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .brand-logo {
    height: 64px;
  }
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1a1a1a, #000);
}

.brand-mark span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--st-red);
  font-size: 1.15rem;
  line-height: 1;
}

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

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-name em {
  font-style: normal;
  color: var(--st-red);
}

.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav-links {
  display: none;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.85;
  color: #ffffff;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--st-red);
  color: #fff !important;
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  opacity: 1 !important;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-nav:hover {
  background: #c4181e;
  transform: translateY(-1px);
  color: #fff !important;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--st-line);
  background: transparent;
  color: var(--st-mist);
  display: grid;
  place-items: center;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(12, 12, 12, 0.97);
  padding: 6rem 1.5rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
}

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

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.35) 0%, rgba(12, 12, 12, 0.15) 35%, rgba(12, 12, 12, 0.88) 100%),
    url("/images/hero-fundo.jpg") center / cover no-repeat;
  padding: 7rem 0 4rem;
}

.hero-inner {
  width: 100%;
}

.hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.85rem;
  opacity: 0;
  animation: rise 0.9s ease 0.15s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 9vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  max-width: 100%;
  color: #ffffff;
  overflow-wrap: anywhere;
  opacity: 0;
  animation: rise 0.9s ease 0.3s forwards;
}

.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  max-width: 34rem;
  color: #ffffff;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: rise 0.9s ease 0.45s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  opacity: 0;
  animation: rise 0.9s ease 0.6s forwards;
  max-width: 100%;
}

.hero-actions .btn-primary-st,
.hero-actions .btn-ghost-st {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

.price-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--st-lime);
  color: #0c0c0c;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  line-height: 1.15;
  transform: rotate(-2deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.price-pill-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.price-pill small {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  align-self: flex-end;
  text-align: right;
}

.price-pill strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.btn-primary-st {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--st-red);
  color: #fff;
  border: none;
  padding: 0.95rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary-st:hover {
  background: #c4181e;
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #25d366;
  color: #fff;
  border: none;
  padding: 0.95rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-whatsapp svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost-st {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243, 239, 232, 0.35);
  color: var(--st-mist);
  padding: 0.95rem 1.4rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-ghost-st:hover {
  border-color: var(--st-mist);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.hero-disclaimer {
  margin-top: 2rem;
  font-size: 0.72rem;
  max-width: 40rem;
  opacity: 0.55;
  opacity: 0;
  animation: rise 0.9s ease 0.75s forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Sections —— */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-dark {
  background: var(--st-charcoal);
}

.section-ink {
  background: var(--st-ink);
}

.section-wood {
  background:
    linear-gradient(135deg, rgba(12, 12, 12, 0.82), rgba(12, 12, 12, 0.55)),
    url("/images/exterior-deck.png") center / cover no-repeat;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--st-wood);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(1.55rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  max-width: min(18ch, 100%);
  overflow-wrap: anywhere;
}

.section-title--modelo {
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  max-width: min(14ch, 100%);
  line-height: 1.15;
}

.section-copy {
  color: var(--st-muted);
  max-width: 36rem;
  margin-bottom: 0;
  font-size: 1.05rem;
  overflow-wrap: break-word;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }

  .split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split.reverse .split-media {
    order: -1;
  }
}

.split-media {
  position: relative;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(1.05);
}

.split-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(12, 12, 12, 0.55));
  pointer-events: none;
}

@media (max-width: 991.98px) {
  #estrutura {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  #estrutura .container {
    position: relative;
    z-index: 1;
  }

  #estrutura .split {
    display: block;
  }

  #estrutura .split-media {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    z-index: 0;
    pointer-events: none;
  }

  #estrutura .split-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    max-height: none;
    object-fit: cover;
    object-position: center;
  }

  #estrutura .split-media::after {
    display: block;
    inset: 0;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(12, 12, 12, 0.62) 0%,
      rgba(12, 12, 12, 0.82) 55%,
      rgba(12, 12, 12, 0.92) 100%
    );
  }

  #estrutura .split > div:not(.split-media) {
    position: relative;
    z-index: 1;
  }
}

/* —— Feature list —— */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--st-line);
  font-size: 1rem;
}

.check {
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid var(--st-lime);
  color: var(--st-lime);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* —— Benefits —— */
.benefit-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.benefit {
  padding-top: 1.25rem;
  border-top: 1px solid var(--st-line);
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--st-red);
  margin-bottom: 0.75rem;
}

.benefit h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 0.65rem;
}

.benefit p {
  margin: 0;
  color: var(--st-muted);
  font-size: 0.98rem;
}

/* —— Gallery —— */
.gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item--featured {
    grid-column: 1 / -1;
    min-height: 420px;
  }
}

.gallery-item {
  overflow: hidden;
  position: relative;
  min-height: 240px;
}

.gallery-item--featured {
  min-height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(12, 12, 12, 0.55);
  padding: 0.4rem 0.65rem;
  backdrop-filter: blur(6px);
}

/* —— Specs —— */
.spec-grid {
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--st-line);
}

@media (min-width: 768px) {
  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.spec-item {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.85rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--st-line);
  align-items: start;
}

@media (min-width: 768px) {
  .spec-item:nth-child(odd) {
    padding-right: 1.5rem;
    border-right: 1px solid var(--st-line);
  }

  .spec-item:nth-child(even) {
    padding-left: 1.5rem;
  }
}

.spec-index {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--st-wood);
  letter-spacing: 0.08em;
  padding-top: 0.2rem;
}

.spec-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--st-muted);
}

/* —— ROI —— */
.roi {
  position: relative;
  overflow: hidden;
}

.roi::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.78), rgba(12, 12, 12, 0.92)),
    url("/images/vista-aerea.png") center / cover no-repeat;
  z-index: 0;
}

.roi > .container {
  position: relative;
  z-index: 1;
}

.roi-table-wrap {
  margin: 2.25rem 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.roi-table {
  width: 100%;
  margin: 0;
  color: #fff;
  border-collapse: collapse;
  min-width: 0;
}

.roi-table th,
.roi-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  vertical-align: middle;
}

.roi-table th {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--st-wood);
  background: rgba(0, 0, 0, 0.25);
}

.roi-table td {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}

.roi-table tr:last-child td {
  border-bottom: none;
}

.roi-note {
  max-width: 42rem;
  color: var(--st-muted);
}

.roi-note strong {
  color: #fff;
}

.highlight-line {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 1.5rem;
  max-width: 28ch;
}

.highlight-line span {
  color: var(--st-lime);
}

/* —— Section break —— */
.section-break {
  background: var(--st-ink);
  padding: 2.75rem 0;
  border-top: 1px solid var(--st-line);
  border-bottom: 1px solid var(--st-line);
}

.section-break-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-break-inner::before,
.section-break-inner::after {
  content: "";
  flex: 1;
  max-width: 8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--st-wood), transparent);
}

.section-break-mark {
  width: 10px;
  height: 10px;
  border: 1px solid var(--st-red);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* —— Pricing CTA —— */
.pricing {
  position: relative;
  overflow: hidden;
  background: var(--st-ink);
}

.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(12, 12, 12, 0.88), rgba(12, 12, 12, 0.55)),
    url("/images/condicao-especial.jpg") center / cover no-repeat;
  transform: scaleX(-1);
  z-index: 0;
}

.pricing > .container {
  position: relative;
  z-index: 1;
}

.pricing-panel {
  max-width: 40rem;
}

.old-price {
  font-size: 1rem;
  opacity: 0.65;
  margin-bottom: 0.35rem;
}

.old-price s {
  color: var(--st-muted);
}

.new-price {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.new-price em {
  font-style: normal;
  color: var(--st-lime);
}

.price-caption {
  color: var(--st-muted);
  margin-bottom: 1.5rem;
}

.urgency {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 1.5rem 0 2rem;
  font-size: 0.92rem;
}

.urgency strong {
  color: var(--st-wood);
}

/* —— Contact —— */
.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  opacity: 0.75;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--st-line);
  color: var(--st-mist);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field select option {
  background: #ffffff;
  color: #0c0c0c;
}

.form-field select option:checked,
.form-field select option:hover {
  background: #e8e4dc;
  color: #0c0c0c;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--st-wood);
  background: rgba(255, 255, 255, 0.07);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-success {
  border: 1px solid rgba(124, 255, 58, 0.35);
  background: rgba(124, 255, 58, 0.08);
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  color: var(--st-lime);
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  color: #fff;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--st-line);
  padding: 2.5rem 0;
  background: #090909;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.82rem;
  opacity: 0.55;
  max-width: 28rem;
}

.footer-info {
  max-width: 36rem;
}

.footer-address {
  font-size: 0.82rem;
  opacity: 0.7;
  line-height: 1.45;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--st-line);
  color: var(--st-mist);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-social-link:hover {
  border-color: var(--st-red);
  color: #fff;
  background: rgba(227, 30, 36, 0.12);
}

.footer-contacts {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--st-muted);
  transition: color 0.2s ease;
}

.footer-contact-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--st-wood);
}

.footer-contact-link:hover {
  color: #fff;
}

.no-obra {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.no-obra span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--st-line);
  padding: 0.85rem 1.15rem;
}

.no-obra span b {
  color: var(--st-red);
}

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

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

/* —— Mobile overflow fixes —— */
@media (max-width: 767.98px) {
  .hero {
    padding: 6rem 0 3rem;
  }

  .hero-kicker {
    letter-spacing: 0.12em;
    font-size: 0.7rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-label {
    letter-spacing: 0.12em;
  }

  .roi-table th,
  .roi-table td {
    padding: 0.7rem 0.45rem;
  }

  .roi-table th {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }

  .roi-table td {
    font-size: 0.85rem;
  }

  .no-obra span {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0.85rem;
    font-size: 1rem;
  }

  .highlight-line {
    max-width: 100%;
    font-size: 1.15rem;
  }

  .new-price {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .urgency {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-brand-block {
    align-items: center;
    width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }

  .gallery-item,
  .gallery-item--featured {
    min-height: 200px;
  }

  .btn-primary-st,
  .btn-ghost-st,
  .btn-whatsapp {
    width: 100%;
  }

  .hero-actions .price-pill {
    width: 100%;
    transform: none;
  }
}

