:root {
  --bg: #ffffff;
  --bg-2: #cfcfcf;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.86);
  --text: #123546;
  --text-dim: rgba(18, 53, 70, 0.78);
  --text-faint: rgba(18, 53, 70, 0.16);
  --line: rgba(18, 53, 70, 0.12);
  --radius: 16px;
  --transition: 0.4s cubic-bezier(.25, .46, .45, .94);
  --accent: #c51d25;
  --accent-light: #c51d25;
  --accent-pale: rgba(197, 29, 37, 0.1);
  --accent-glow: rgba(197, 29, 37, 0.22);
  --orb-a: rgba(46, 103, 116, 0.55);
  --orb-b: rgba(11, 49, 59, 0.72);
  --hero-tint: rgba(18, 53, 70, 0.74);
  --hero-tint-strong: rgba(18, 53, 70, 0.88);
  --font-body: Arial, Helvetica, sans-serif;
  --font-heading: Arial, Helvetica, sans-serif;
  --font-accent: 'Roboto', Arial, Helvetica, sans-serif;
}

.theme-esquadrias {
  --accent: #a46933;
  --accent-light: #a46933;
  --accent-pale: rgba(164, 105, 51, 0.1);
  --accent-glow: rgba(164, 105, 51, 0.22);
}

.theme-moveis {
  --accent: #c51d25;
  --accent-light: #c51d25;
  --accent-pale: rgba(197, 29, 37, 0.1);
  --accent-glow: rgba(197, 29, 37, 0.22);
}

.theme-pisos {
  --bg: #ffffff;
  --bg-2: #cfcfcf;
  --accent: #c51d25;
  --accent-light: #c51d25;
  --accent-pale: rgba(197, 29, 37, 0.1);
  --accent-glow: rgba(197, 29, 37, 0.22);
  --hero-tint: rgba(18, 53, 70, 0.62);
  --hero-tint-strong: rgba(18, 53, 70, 0.82);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.grain {
  pointer-events: none;
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  z-index: 999;
  animation: grain 8s steps(10) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  30% { transform: translate(2%, 2%); }
  50% { transform: translate(-1%, 3%); }
  70% { transform: translate(3%, -1%); }
  90% { transform: translate(-3%, 1%); }
}

.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  contain: layout style;
}

.topnav__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition);
}

.topnav__back:hover {
  color: var(--text);
}

.topnav__back svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-family: var(--font-accent);
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  box-shadow: 0 16px 32px var(--accent-glow);
}

.btn-primary {
  padding: 16px 34px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px var(--accent-glow);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.topnav__menu-btn {
  width: 52px;
  height: 52px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.topnav__menu-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(18, 53, 70, 0.22);
  box-shadow: 0 12px 26px rgba(18, 53, 70, 0.1);
}

.topnav__menu-btn span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.topnav__menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topnav__menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.topnav__menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.topnav__drawer {
  position: fixed;
  top: 82px;
  right: 28px;
  z-index: 99;
  min-width: 220px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 46px rgba(18, 53, 70, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.topnav__drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.topnav__drawer a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.topnav__drawer a:hover {
  background: var(--accent-pale);
  color: var(--accent);
}

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

.orb--a {
  width: 700px;
  height: 700px;
  top: -260px;
  left: -180px;
  background: radial-gradient(circle, var(--orb-a) 0%, transparent 70%);
  animation: orbA 16s ease-in-out infinite alternate;
}

.orb--b {
  width: 520px;
  height: 520px;
  right: -120px;
  bottom: -160px;
  background: radial-gradient(circle, var(--orb-b) 0%, transparent 70%);
  animation: orbB 20s ease-in-out infinite alternate;
}

.orb--cta-a {
  width: 540px;
  height: 540px;
  top: -180px;
  right: -160px;
  background: radial-gradient(circle, rgba(46, 103, 116, 0.42) 0%, transparent 72%);
}

.orb--cta-b {
  width: 360px;
  height: 360px;
  left: -80px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(198, 47, 59, 0.28) 0%, transparent 72%);
}

@keyframes orbA {
  from { transform: translate(0, 0); }
  to { transform: translate(60px, 40px); }
}

@keyframes orbB {
  from { transform: translate(0, 0); }
  to { transform: translate(-40px, -60px); }
}

.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 84px;
  overflow: hidden;
  isolation: isolate;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
}

.lp-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.56;
  transform: translateZ(0);
}

.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 63, 75, 0.26) 0%,
    var(--hero-tint) 45%,
    var(--hero-tint-strong) 100%
  );
}

.lp-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 110px 40px 0;
  color: #fff;
}

.logo-wrap {
  margin-bottom: 24px;
}

.logo {
  height: 56px;
  width: auto;
}

.logo-fallback {
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  color: #fff;
  text-transform: uppercase;
}

.logo-fallback strong {
  font-weight: 600;
}

.lp-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.lp-hero__title {
  max-width: 720px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 5.8vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
}

.lp-hero__title em {
  color: #fff;
  font-style: normal;
}

.lp-hero__sub {
  max-width: 560px;
  margin-bottom: 36px;
  font-size: clamp(0.96rem, 1.8vw, 1.06rem);
  color: rgba(255, 255, 255, 0.82);
}

.section {
  position: relative;
  overflow: hidden;
  padding: 96px 24px;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

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

.section--alt {
  background: var(--bg-2);
}

.section--cta {
  background: var(--hero-tint-strong);
  text-align: center;
}

.section--cta .section__eyebrow,
.section--cta .section__title,
.section--cta .section__lead,
.section--cta .section__note {
  color: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

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

.container--narrow {
  max-width: 760px;
}

.section__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--teal, #123f4b);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section__title {
  margin-bottom: 36px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section__lead {
  margin-bottom: 36px;
  font-size: 1.02rem;
  color: var(--text-dim);
}

.section__note {
  margin-top: 22px;
  font-size: 0.95rem;
  color: var(--text-dim);
  font-style: italic;
}

.features,
.ambientes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.feature-card,
.brand-item,
.testimonial,
.ambiente-card,
.etapa {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(17, 63, 75, 0.06);
}

.about-panel {
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: 0 16px 36px rgba(17, 63, 75, 0.08);
}

.about-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 30px;
  align-items: start;
}

.about-panel__lead {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.about-panel__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-stat {
  padding: 18px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.about-stat strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
}

.about-stat span {
  display: block;
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--text-dim);
}

.feature-card {
  padding: 30px 26px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  will-change: transform;
}

.feature-card:hover,
.brand-item:hover,
.ambiente-card:hover,
.etapa:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 47, 59, 0.24);
  box-shadow: 0 18px 40px rgba(17, 63, 75, 0.1);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-pale);
  color: var(--accent);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3,
.ambiente-card__body h3,
.etapa h3,
.lp-footer h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.feature-card p,
.ambiente-card__body p,
.etapa p,
.lp-footer p,
.footer-contacts li,
.footer-hours li,
.testimonial blockquote,
.testimonial cite span {
  color: var(--text-dim);
}

.feature-card p {
  font-size: 0.9rem;
}

.split__text {
  min-width: 0;
}

.split__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(17, 63, 75, 0.14);
}

.split__image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.split__image-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.split__image-badge span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist--centered {
  text-align: left;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-dim);
}

.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-pale);
  border: 1px solid rgba(198, 47, 59, 0.25);
}

.check::after {
  content: "";
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg) translateY(-1px);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery__item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(17, 63, 75, 0.09);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.95);
  will-change: transform;
}

.gallery__item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.brands,
.testimonials {
  display: grid;
  gap: 22px;
}

.brands {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  align-items: center;
}

.brand-item {
  min-height: 92px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.brand-item img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.9);
  opacity: 0.72;
  transition: filter var(--transition), opacity var(--transition);
}

.brand-item:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

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

.testimonial {
  position: relative;
  padding: 34px 30px;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: rgba(198, 47, 59, 0.18);
}

.testimonial__stars {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 1rem;
}

.testimonial blockquote {
  margin-bottom: 18px;
  font-size: 0.94rem;
  font-style: italic;
  line-height: 1.7;
}

.testimonial cite {
  display: block;
  font-style: normal;
}

.testimonial cite strong {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial cite span {
  font-size: 0.8rem;
}

.disclaimer-box {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.76);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.disclaimer-box p {
  font-size: 0.92rem;
  color: var(--text-dim);
}

.disclaimer-box p + p {
  margin-top: 8px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}

.map-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  display: block;
}

.lp-footer {
  background: #0b313b;
  color: rgba(255, 255, 255, 0.76);
  padding: 64px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 48px;
  margin-bottom: 42px;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}

.lp-footer p,
.footer-contacts li,
.footer-hours li {
  color: rgba(255, 255, 255, 0.76);
}

.lp-footer h4 {
  margin-bottom: 16px;
  font-size: 1.15rem;
  color: #fff;
}

.footer-contacts,
.footer-hours {
  list-style: none;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
}

.footer-contacts svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  fill: var(--accent-light);
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-hours strong {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-social a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.lp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.46);
}

.lp-footer__bottom a {
  font-size: 0.8rem;
  color: #fff;
  opacity: 0.84;
  text-decoration: none;
}

.lp-footer__bottom a:hover {
  opacity: 1;
}

.theme-pisos .lp-hero {
  align-items: center;
  min-height: 536px;
  padding-bottom: 0;
}

.theme-pisos .lp-hero__img {
  opacity: 1;
  object-position: center center;
}

.theme-pisos .lp-hero__content {
  padding-top: 120px;
  padding-bottom: 80px;
}

.theme-pisos .lp-badge {
  display: none;
}

.theme-pisos .lp-hero__title {
  max-width: 760px;
  font-size: clamp(2.8rem, 5vw, 3.9rem);
}

.theme-pisos .lp-hero__sub {
  max-width: 620px;
  font-size: 1.125rem;
  font-weight: 600;
}

.theme-pisos .section__title {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.theme-pisos .section__eyebrow {
  color: var(--text);
}

.theme-pisos .feature-card,
.theme-pisos .brand-item,
.theme-pisos .testimonial,
.theme-pisos .ambiente-card,
.theme-pisos .etapa,
.theme-pisos .about-panel,
.theme-pisos .about-stat {
  border-radius: 15px;
}

.lead-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.lead-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.lead-form__field span,
.lead-form__options legend {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.lead-form__field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid #051468;
  border-radius: 35px;
  background: #fff;
  color: #000;
  font: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.lead-form__field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(197, 29, 37, 0.12);
}

.lead-form__options {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.lead-form__options legend {
  width: 100%;
  margin-bottom: 10px;
  text-align: left;
}

.lead-pill {
  position: relative;
  display: inline-flex;
}

.lead-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.lead-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(5, 20, 104, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.lead-pill input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.lead-form__submit {
  width: 100%;
  min-height: 58px;
}

.ambiente-card {
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  will-change: transform;
}

.ambiente-card__img {
  height: 186px;
  overflow: hidden;
}

.ambiente-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.92);
}

.ambiente-card:hover .ambiente-card__img img {
  transform: scale(1.05);
  filter: brightness(1);
}

.ambiente-card__body {
  padding: 20px 22px 24px;
}

.ambiente-card__body h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.ambiente-card__body p {
  font-size: 0.86rem;
}

.processo {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0;
}

.etapa {
  flex: 1;
  min-width: 170px;
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.etapa__num {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
}

.etapa h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.etapa p {
  font-size: 0.84rem;
}

.etapa__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 8px 0;
  color: var(--accent);
  opacity: 0.4;
  font-size: 1.5rem;
}

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

.lp-hero__content > * {
  opacity: 0;
  animation: fadeUp 0.9s var(--transition) forwards;
}

.lp-hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.lp-hero__content > *:nth-child(2) { animation-delay: 0.25s; }
.lp-hero__content > *:nth-child(3) { animation-delay: 0.4s; }
.lp-hero__content > *:nth-child(4) { animation-delay: 0.55s; }
.lp-hero__content > *:nth-child(5) { animation-delay: 0.7s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .about-panel__grid {
    grid-template-columns: 1fr;
  }

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

  .gallery__item--wide {
    grid-column: span 2;
  }

  .container--split,
  .lp-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 20px;
  }

  .lp-hero__content {
    padding: 110px 20px 0;
  }

  .topnav {
    padding: 12px 18px;
  }

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

  .processo {
    flex-direction: column;
  }

  .etapa {
    width: 100%;
  }

  .etapa__arrow {
    width: 100%;
    padding: 10px 0;
    transform: rotate(90deg);
  }

  .lead-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topnav {
    padding: 12px 16px;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .topnav__back {
    font-size: 0.74rem;
    letter-spacing: 0.05em;
  }

  .topnav__menu-btn {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

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

  .gallery__item--wide,
  .gallery__item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .btn-primary {
    width: 100%;
  }

  .lp-hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .lp-hero__content {
    padding-top: 96px;
  }

  .logo {
    height: 48px;
  }

  .features,
  .ambientes,
  .brands,
  .about-panel__stats {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .brand-item,
  .testimonial,
  .about-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .split__image img {
    height: 320px;
  }

  .map-wrap iframe {
    height: 280px;
  }

  .lead-form {
    padding: 22px 18px;
  }

  .topnav__drawer {
    top: 76px;
    right: 16px;
    left: 16px;
    min-width: 0;
  }

  .lead-form__options {
    justify-content: stretch;
  }

  .lead-pill {
    width: 100%;
  }

  .lead-pill span {
    width: 100%;
  }

  .lp-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 16px;
  }

  .lp-hero__content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lp-hero__title {
    font-size: 2.5rem;
  }

  .lp-badge,
  .section__eyebrow {
    letter-spacing: 0.14em;
  }

  .checklist li,
  .section__lead,
  .feature-card p,
  .testimonial blockquote {
    font-size: 0.92rem;
  }

  .split__image-badge {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    font-size: 1.2rem;
  }

  .lp-footer {
    padding: 56px 16px 26px;
  }

  .theme-pisos .lp-hero__content {
    padding-bottom: 48px;
  }
}

@media (prefers-reduced-motion: reduce), (hover: none), (pointer: coarse) {
  .grain,
  .orb--a,
  .orb--b {
    animation: none;
  }

  .feature-card,
  .brand-item,
  .ambiente-card,
  .etapa,
  .btn-primary,
  .topnav__menu-btn,
  .footer-social a,
  .gallery__item img,
  .ambiente-card__img img {
    transition: none;
  }

  .feature-card:hover,
  .brand-item:hover,
  .ambiente-card:hover,
  .etapa:hover,
  .btn-primary:hover,
  .topnav__menu-btn:hover,
  .footer-social a:hover,
  .gallery__item:hover img,
  .ambiente-card:hover .ambiente-card__img img {
    transform: none;
    box-shadow: inherit;
    filter: inherit;
  }
}

/* Shared top navigation override to match the pisos reference */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  background: #123546;
  border-bottom: none;
  backdrop-filter: none;
  box-shadow: none !important;
}

.topnav__brand {
  display: inline-flex;
  align-items: center;
}

.topnav__logo {
  width: 124px;
  height: auto;
}

.topnav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}

.topnav__links a {
  position: relative;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition);
}

.topnav__links a:hover,
.topnav__links a:focus-visible {
  color: #c51d25;
}

.topnav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 4px;
  background: #c51d25;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.topnav__links a:hover::after,
.topnav__links a:focus-visible::after {
  transform: scaleX(1);
}

.topnav__back,
.topnav__menu-btn,
.topnav__drawer {
  display: none !important;
}

.lp-hero__content {
  padding-top: 150px;
}

@media (max-width: 900px) {
  .topnav {
    flex-direction: column;
    gap: 16px;
    padding: 18px 20px;
  }

  .topnav__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
    margin-left: 0;
  }

  .topnav__links a::after {
    bottom: -8px;
    height: 3px;
  }

  .lp-hero__content {
    padding-top: 190px;
  }
}

@media (max-width: 560px) {
  .topnav__links {
    gap: 12px 18px;
  }

  .topnav__links a {
    font-size: 0.88rem;
  }
}

/* Offer section: matches the original WordPress hierarchy shown in the reference */
.section--offer {
  background: #ffffff !important;
  color: #123546;
  padding: 48px 0 78px;
}

.offer-container {
  max-width: 1120px;
}

.offer-title {
  margin: 0 0 14px;
  color: #123546;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.offer-subtitle {
  max-width: 720px;
  margin: 0 auto 58px;
  color: #000000;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

.offer-content {
  max-width: 900px;
  margin: 0;
}

.offer-content h3 {
  margin: 0 0 22px;
  color: #123546;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3.8vw, 34px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

.offer-checklist {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-checklist li {
  position: relative;
  min-height: 20px;
  padding-left: 22px;
  color: #4b5358;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.offer-checklist li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #c51d25;
}

.offer-checklist li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 4px;
  width: 5px;
  height: 3px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .section--offer {
    padding: 44px 0 62px;
  }

  .offer-subtitle {
    margin-bottom: 42px;
    font-size: 18px;
  }

  .offer-checklist {
    gap: 18px;
  }
}

/* Offer section refinement: centered, animated, polished */
.section--offer .offer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section--offer .offer-content {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.section--offer .offer-checklist {
  justify-items: center;
}

.section--offer .offer-checklist li {
  width: fit-content;
  max-width: 100%;
  text-align: center;
  padding-left: 0;
  padding-top: 22px;
}

.section--offer .offer-checklist li::before {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.section--offer .offer-checklist li::after {
  left: 50%;
  top: 3px;
  transform: translateX(-50%) translateX(-.5px) rotate(-45deg);
}

.section--offer [data-reveal] {
  transform: translateY(18px) scale(.98);
}

.section--offer [data-reveal].revealed {
  transform: translateY(0) scale(1);
}

@media (min-width: 760px) {
  .section--offer .offer-checklist li {
    padding-top: 0;
    padding-left: 24px;
    text-align: left;
  }

  .section--offer .offer-checklist li::before {
    left: 0;
    top: 4px;
    transform: none;
  }

  .section--offer .offer-checklist li::after {
    left: 4px;
    top: 7px;
    transform: rotate(-45deg);
  }
}

/* Keep offer checklist text centered on all breakpoints */
.section--offer .offer-checklist li {
  padding-left: 0 !important;
  padding-top: 22px !important;
  text-align: center !important;
}

.section--offer .offer-checklist li::before {
  left: 50% !important;
  top: 0 !important;
  transform: translateX(-50%) !important;
}

.section--offer .offer-checklist li::after {
  left: 50% !important;
  top: 3px !important;
  transform: translateX(-50%) translateX(-.5px) rotate(-45deg) !important;
}

/* Offer checklist: checks beside the text */
.section--offer .offer-checklist li {
  padding-top: 0 !important;
  padding-left: 24px !important;
  text-align: left !important;
}

.section--offer .offer-checklist li::before {
  left: 0 !important;
  top: 4px !important;
  transform: none !important;
}

.section--offer .offer-checklist li::after {
  left: 4px !important;
  top: 7px !important;
  transform: rotate(-45deg) !important;
}

/* Offer section compact spacing: closer to the reference print */
.section--offer {
  padding-top: 42px !important;
  padding-bottom: 52px !important;
}

.section--offer .offer-title {
  margin-bottom: 14px !important;
}

.section--offer .offer-subtitle {
  margin-bottom: 46px !important;
}

.section--offer .offer-content h3 {
  margin-bottom: 20px !important;
}

.section--offer .offer-checklist {
  gap: 20px !important;
}

@media (max-width: 768px) {
  .section--offer {
    padding-top: 36px !important;
    padding-bottom: 44px !important;
  }

  .section--offer .offer-subtitle {
    margin-bottom: 34px !important;
  }

  .section--offer .offer-checklist {
    gap: 16px !important;
  }
}

/* Offer section image layout: title above, text left, image right */
.section--offer .offer-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  align-items: center;
  gap: 70px;
}

.section--offer .offer-content {
  width: auto;
  max-width: none;
  text-align: left;
}

.section--offer .offer-content h3 {
  text-align: left;
}

.section--offer .offer-checklist {
  justify-items: start !important;
}

.section--offer .offer-image {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(18, 53, 70, .14);
}

.section--offer .offer-image img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.section--offer .offer-image:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .section--offer .offer-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section--offer .offer-content,
  .section--offer .offer-content h3 {
    text-align: center;
  }

  .section--offer .offer-checklist {
    justify-items: center !important;
  }
}

/* Pisos: ideal section exactly like the reference layout */
.theme-pisos .section--ideal-print {
  background: #123546 !important;
  color: #ffffff;
  padding: 86px 0 64px;
}

.theme-pisos .ideal-print__title {
  margin: 0 0 72px;
  color: #ffffff;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 5vw, 46px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.theme-pisos .ideal-print__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  align-items: center;
  gap: 72px;
}

.theme-pisos .ideal-print__list {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.theme-pisos .ideal-print__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.theme-pisos .ideal-print__list .check {
  width: 14px;
  height: 14px;
  margin: 0;
}

.theme-pisos .ideal-print__list .check::before {
  width: 14px;
  height: 14px;
}

.theme-pisos .ideal-print__list .check::after {
  width: 6px;
  height: 3px;
  left: 4px;
  top: 4px;
}

.theme-pisos .ideal-print__card {
  padding: 10px 10px 28px;
  border-radius: 12px;
  background: #ffffff;
  color: #050a69;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 1.38;
}

.theme-pisos .ideal-print__card p {
  margin: 0;
  color: #050a69;
}

.theme-pisos .ideal-print__card p + p {
  margin-top: 20px;
  font-weight: 400;
}

.theme-pisos .ideal-print__card strong {
  font-weight: 900;
}

/* Pisos: center the 20+ card in Sobre nós */
.theme-pisos .about-panel__stats .about-stat:first-child {
  display: flex;
  min-height: 136px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.theme-pisos .about-panel__stats .about-stat:first-child strong {
  margin-bottom: 10px;
  text-align: center;
}

.theme-pisos .about-panel__stats .about-stat:first-child span {
  text-align: center;
}

@media (max-width: 900px) {
  .theme-pisos .ideal-print__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .theme-pisos .ideal-print__title {
    margin-bottom: 46px;
  }
}

/* Pisos final polish: centered text outside grid content */
.theme-pisos .section:not(.section--offer):not(.section--ideal-print) .section__eyebrow,
.theme-pisos .section:not(.section--offer):not(.section--ideal-print) .section__title,
.theme-pisos .section:not(.section--offer):not(.section--ideal-print) .section__lead {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.theme-pisos .about-panel__lead,
.theme-pisos .section__note,
.theme-pisos .lp-footer p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.theme-pisos .about-panel__grid {
  text-align: center;
}

.theme-pisos .about-stat {
  text-align: center;
}

/* Keep grid/card body copy readable while headings remain centered */
.theme-pisos .gallery,
.theme-pisos .brands,
.theme-pisos .testimonials,
.theme-pisos .footer-contacts,
.theme-pisos .footer-hours,
.theme-pisos .lead-form,
.theme-pisos .offer-layout {
  text-align: initial;
}

.theme-pisos .testimonial,
.theme-pisos .brand-item {
  text-align: center;
}

/* Pisos ideal section: subtle visual polish, same structure */
.theme-pisos .section--ideal-print {
  position: relative;
  overflow: hidden;
}

.theme-pisos .section--ideal-print::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -12%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(197, 29, 37, .16);
  filter: blur(80px);
  pointer-events: none;
}

.theme-pisos .section--ideal-print .container {
  position: relative;
  z-index: 1;
}

.theme-pisos .ideal-print__card {
  box-shadow: 0 24px 62px rgba(0, 0, 0, .18);
  transition: transform var(--transition), box-shadow var(--transition);
}

.theme-pisos .ideal-print__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 76px rgba(0, 0, 0, .22);
}

.theme-pisos .ideal-print__list li {
  transition: transform var(--transition), color var(--transition);
}

.theme-pisos .ideal-print__list li:hover {
  transform: translateX(4px);
  color: rgba(255, 255, 255, .92);
}

.theme-pisos .section--ideal-print [data-reveal] {
  transform: translateY(18px);
}

.theme-pisos .section--ideal-print [data-reveal].revealed {
  transform: translateY(0);
}

/* Final cross-page polish: premium about, carousel brands, larger project frames */
.about-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 251, 251, .88)),
    radial-gradient(circle at 0% 0%, rgba(197, 29, 37, .12), transparent 34%);
  box-shadow: 0 28px 72px rgba(5, 30, 40, .16);
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), rgba(197, 29, 37, .18));
}

.about-panel__grid {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
}

.about-panel__lead {
  max-width: 760px;
  color: #233942 !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
  font-weight: 500;
  line-height: 1.85;
}

.about-stat {
  min-height: 118px;
  padding: 22px 18px;
  border: 1px solid rgba(18, 53, 70, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 32px rgba(18, 53, 70, .08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 29, 37, .24);
  box-shadow: 0 22px 44px rgba(18, 53, 70, .12);
}

.about-stat strong {
  color: var(--accent) !important;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.about-stat span {
  color: #42545b !important;
  font-size: .9rem;
}

.section--dark .about-panel,
.section--cta .about-panel {
  color: #123546;
}

.section--dark .about-panel .about-panel__lead,
.section--dark .about-panel .about-stat span,
.section--cta .about-panel .about-panel__lead,
.section--cta .about-panel .about-stat span {
  color: #2c424a !important;
}

/* Brands carousel */
.brands--carousel {
  position: relative;
  display: block !important;
  overflow: hidden;
  padding: 10px 0 16px;
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.brands--carousel .brands__track {
  display: flex;
  width: max-content;
  gap: 22px;
  align-items: center;
  animation: brandsMarquee 28s linear infinite;
}

.brands--carousel:hover .brands__track {
  animation-play-state: paused;
}

.brands--carousel .brand-item {
  flex: 0 0 clamp(190px, 22vw, 250px);
  min-height: 112px;
}

@keyframes brandsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Larger project imagery with in-frame zoom */
.gallery {
  grid-auto-rows: clamp(250px, 24vw, 330px);
  gap: clamp(16px, 2vw, 24px);
}

.gallery__item,
.ambiente-card__img {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 22px 48px rgba(5, 30, 40, .14);
}

.gallery__item img,
.ambiente-card__img img {
  transform: scale(1.04);
  transform-origin: center;
  transition: transform .75s ease, filter .75s ease;
}

.gallery__item:hover img,
.ambiente-card:hover .ambiente-card__img img {
  transform: scale(1.14);
  filter: brightness(1.03) saturate(1.05);
}

.ambiente-card__img {
  min-height: clamp(270px, 28vw, 380px);
}

.ambiente-card__img img {
  height: 100%;
}

@media (max-width: 760px) {
  .brands--carousel .brand-item {
    flex-basis: 210px;
  }

  .gallery {
    grid-auto-rows: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands--carousel .brands__track {
    animation: none;
  }
}

/* About cards: prevent text overflow and keep content framed */
.about-panel__stats {
  align-items: stretch;
}

.about-stat {
  min-width: 0;
  min-height: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  word-break: normal;
  overflow-wrap: anywhere;
}

.about-stat strong,
.about-stat span {
  max-width: 100%;
}

.about-stat strong {
  font-size: clamp(1.2rem, 2vw, 1.72rem) !important;
  line-height: 1.08;
}

.about-stat span {
  font-size: clamp(.78rem, 1.1vw, .9rem) !important;
  line-height: 1.45;
}

@media (max-width: 420px) {
  .about-stat {
    padding: 18px 14px;
  }
}

/* Final mobile UX pass: navigation, readability and touch targets */
body.menu-open {
  overflow: hidden;
}

.topnav {
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 40px);
  background: rgba(18, 53, 70, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16) !important;
}

.topnav__brand {
  min-width: 112px;
}

.topnav__logo {
  width: 112px;
}

.topnav__links {
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.topnav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  letter-spacing: 0;
}

.topnav__links a::after {
  display: none;
}

.topnav__links a:hover,
.topnav__links a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  outline: none;
}

.topnav__links a:last-child {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 24px var(--accent-glow);
}

.topnav__back,
.topnav__drawer,
.topnav__menu-btn {
  display: none !important;
}

.about-panel__lead,
.section__lead,
.offer-subtitle,
.testimonial blockquote,
.feature-card p,
.ambiente-card p,
.etapa p,
.offer-checklist li {
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .topnav {
    flex-direction: row;
    min-height: 70px;
    padding: 10px 16px;
  }

  .topnav__links {
    display: none;
  }

  .topnav__menu-btn {
    display: inline-flex !important;
    width: 48px;
    height: 48px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }

  .topnav__menu-btn span {
    background: #ffffff;
  }

  .topnav__drawer {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    z-index: 99;
    display: grid !important;
    min-width: 0;
    max-height: calc(100vh - 92px);
    gap: 8px;
    padding: 12px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(18, 53, 70, 0.98);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity var(--transition), transform var(--transition);
  }

  .topnav__drawer.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .topnav__drawer a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 800;
    text-decoration: none;
  }

  .topnav__drawer a:hover,
  .topnav__drawer a:focus-visible {
    background: var(--accent);
    outline: none;
  }

  .lp-hero {
    min-height: 92svh;
  }

  .lp-hero__content {
    min-height: 92svh;
    justify-content: center;
    padding: 96px 20px 44px;
  }

  .lp-hero__title {
    max-width: 11ch;
    font-size: clamp(2.7rem, 12vw, 4.8rem);
    line-height: 0.92;
  }

  .lp-hero__sub {
    max-width: 31rem;
    font-size: clamp(1rem, 4.2vw, 1.12rem);
    line-height: 1.48;
  }

  .section {
    padding: 64px 18px;
  }

  .section__title,
  .offer-title,
  .ideal-print__title {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.05;
  }

  .section__lead,
  .offer-subtitle {
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.52;
  }

  .about-panel {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .about-panel__grid {
    gap: 18px;
  }

  .about-panel__lead {
    padding: 0;
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-panel__stats {
    gap: 10px;
  }

  .about-stat {
    min-height: auto;
    padding: 16px;
    text-align: left;
  }

  .features,
  .ambientes,
  .testimonials,
  .gallery {
    gap: 14px;
  }

  .feature-card,
  .ambiente-card,
  .testimonial,
  .etapa {
    border-radius: 14px;
  }

  .feature-card,
  .testimonial,
  .etapa {
    padding: 20px 18px;
  }

  .section--offer .offer-checklist {
    gap: 10px;
  }

  .section--offer .offer-checklist li {
    min-height: auto;
    padding: 16px 16px 16px 46px;
    text-align: left;
    line-height: 1.42;
  }

  .section--offer .offer-checklist li::before {
    left: 16px;
  }

  .section--offer .offer-checklist li::after {
    left: 22px;
  }
}

@media (max-width: 560px) {
  .topnav {
    align-items: center;
  }

  .topnav__logo {
    width: 102px;
  }

  .btn-primary {
    min-height: 52px;
    padding: 14px 18px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .lp-badge {
    max-width: 100%;
    white-space: normal;
  }

  .lp-hero__content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lp-hero__title {
    font-size: clamp(2.45rem, 14vw, 3.35rem);
  }

  .logo {
    height: 44px;
  }

  .section {
    padding: 54px 16px;
  }

  .section__eyebrow {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .section__title,
  .offer-title,
  .ideal-print__title {
    margin-bottom: 14px;
  }

  .gallery__item img,
  .ambiente-card__img img,
  .offer-image img {
    min-height: 230px;
    object-fit: cover;
  }

  .processo {
    gap: 10px;
  }

  .etapa__arrow {
    display: none;
  }

  .lead-form {
    border-radius: 14px;
  }
}
