:root {
  --black: #111111;
  --black-soft: #1a1a1a;
  --gold: #c6a85a;
  --gold-strong: #a88632;
  --cream: #f7f4ed;
  --white: #ffffff;
  --gray: #555555;
  --line: rgba(17, 17, 17, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --whatsapp: #25d366;
  --shadow-soft: 0 18px 48px rgba(17, 17, 17, 0.09);
  --shadow-gold: 0 18px 40px rgba(198, 168, 90, 0.22);
  --radius: 8px;
  --container: min(1180px, calc(100% - 32px));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(56px, 7vw, 92px) 0;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-light {
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(198, 168, 90, 0.13), transparent 36%),
    linear-gradient(180deg, #111111 0%, #191816 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section-heading.center .eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2,
.brand-name,
.footer-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.lead {
  margin-bottom: 0;
  color: var(--gray);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.section-dark .lead,
.section-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: var(--header-height);
  color: var(--white);
  transition: background 240ms ease, border-color 240ms ease, color 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--black);
  background: rgba(247, 244, 237, 0.92);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
}

body.menu-open .site-header {
  z-index: 110;
  color: var(--white);
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.menu-open .brand,
body.menu-open .nav-toggle {
  position: relative;
  z-index: 112;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(132px, 14vw, 168px);
  height: auto;
  max-height: 74px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(198, 168, 90, 0.12);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  opacity: 0.72;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 12px 11px;
  color: currentColor;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.86;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 8px;
  left: 12px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  opacity: 1;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  cursor: pointer;
}

body.menu-open .nav-toggle {
  color: var(--white);
  background: rgba(17, 17, 17, 0.74);
  border-color: rgba(198, 168, 90, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(6px) rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  opacity: 0;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-backdrop.is-visible {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.18);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #000000;
}

.btn-gold {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: #d7bd73;
  border-color: #d7bd73;
}

.btn-whatsapp {
  color: var(--white);
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.24);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #1fc25b;
  border-color: #1fc25b;
}

.btn-outline {
  color: currentColor;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(198, 168, 90, 0.54);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  min-height: 78svh;
  padding-top: var(--header-height);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.88) 0%, rgba(17, 17, 17, 0.64) 42%, rgba(17, 17, 17, 0.28) 100%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.12) 0%, rgba(17, 17, 17, 0.84) 100%);
}

.hero::after {
  background-image:
    linear-gradient(rgba(198, 168, 90, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 168, 90, 0.12) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, black 0%, transparent 58%);
  opacity: 0.36;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.04);
  transform: scale(1.02);
}

.hero-inner {
  display: grid;
  align-items: end;
  min-height: calc(78svh - var(--header-height));
  padding: clamp(54px, 8vw, 104px) 0 28px;
}

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

.hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-description {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(820px, 100%);
  margin-top: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
}

.trust-item {
  min-height: 94px;
  padding: 18px 20px;
  background: rgba(17, 17, 17, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.trust-item strong {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1;
}

.trust-item span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), #ffffff),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(198, 168, 90, 0.58);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
}

.product-card.wide {
  grid-column: span 2;
}

.product-card::before {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(198, 168, 90, 0.28);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 220ms ease;
}

.product-card:hover::before {
  transform: scale(1.15);
}

.product-visual {
  position: relative;
  height: 164px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.68)),
    #111111;
  isolation: isolate;
}

.product-card.wide .product-visual {
  height: 164px;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.03);
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

.product-card:hover .product-visual img,
.product-card:focus-within .product-visual img {
  filter: saturate(1) contrast(1.05);
  transform: scale(1.07);
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(17, 17, 17, 0.58) 100%),
    linear-gradient(90deg, rgba(17, 17, 17, 0.42), transparent 64%);
  pointer-events: none;
}

.product-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(198, 168, 90, 0.1);
  border: 1px solid rgba(198, 168, 90, 0.24);
  border-radius: 999px;
}

.product-card h3,
.advantage-card h3,
.unit-card h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.product-card p,
.advantage-card p,
.unit-card p {
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.58;
}

.product-card p {
  margin-bottom: 18px;
}

.product-card .btn {
  width: fit-content;
  margin-top: auto;
  padding-inline: 16px;
}

.promo-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(198, 168, 90, 0.15), transparent 46%),
    var(--cream);
  border: 1px solid rgba(198, 168, 90, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.055);
}

.promo-strip h3 {
  margin-bottom: 8px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.promo-strip p:last-child {
  margin: 0;
  color: var(--gray);
  font-size: 0.98rem;
}

.advantages-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.5fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.advantage-card {
  min-height: 178px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.advantage-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(198, 168, 90, 0.5);
}

.advantage-number {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.advantage-card p {
  color: rgba(255, 255, 255, 0.7);
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.coverage-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  margin-bottom: 24px;
  padding: clamp(28px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(198, 168, 90, 0.2), transparent 42%),
    var(--black);
  border: 1px solid rgba(198, 168, 90, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.coverage-stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-width: 0;
}

.coverage-number {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.5rem, 9vw, 7.2rem);
  font-weight: 700;
  line-height: 0.86;
  padding-bottom: 0.4em;
}

.coverage-panel h3 {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1.03;
}

.coverage-panel p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.coverage-cities span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.unit-card {
  position: relative;
  display: flex;
  min-height: 268px;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.055);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.unit-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.85;
}

.unit-card:hover,
.unit-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(198, 168, 90, 0.58);
  box-shadow: var(--shadow-soft);
}

.city-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 9px;
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(198, 168, 90, 0.34);
  border-radius: 999px;
}

.unit-hours {
  margin-bottom: 18px;
}

.unit-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.unit-actions .btn {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  font-size: 0.86rem;
}

.social-proof {
  background: var(--cream);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.proof-header {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(22px, 4vw, 46px);
  align-items: end;
  margin-bottom: 24px;
}

.proof-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.1);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius);
}

.proof-stat {
  display: grid;
  min-height: 104px;
  align-content: center;
  padding: 18px;
  background: var(--white);
}

.proof-stat strong {
  display: block;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.proof-stat span {
  display: block;
  margin-top: 8px;
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 800;
}

.proof-stat .btn {
  width: 100%;
  min-height: 44px;
  padding-inline: 14px;
  font-size: 0.82rem;
}

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

.testimonial-card {
  position: relative;
  min-height: 244px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.055);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(198, 168, 90, 0.46);
  box-shadow: 0 22px 54px rgba(17, 17, 17, 0.1);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 14px;
  right: 22px;
  color: rgba(198, 168, 90, 0.22);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.rating {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 18px;
  color: var(--gold-strong);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--black);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.22rem, 1.7vw, 1.45rem);
  font-weight: 600;
  line-height: 1.18;
}

.review-meta {
  margin-top: 18px;
  padding-top: 16px;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 800;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.review-meta span {
  display: block;
  margin-top: 3px;
  color: rgba(85, 85, 85, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.final-cta {
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198, 168, 90, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 168, 90, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.35;
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  max-width: 850px;
}

.final-cta .section-heading {
  margin-bottom: 0;
}

.final-cta h2 {
  max-width: 14ch;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 0.96;
}

.faq-list {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 22px 58px 22px 22px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  transform: translateY(-50%);
  color: var(--gold-strong);
  border: 1px solid rgba(198, 168, 90, 0.34);
  border-radius: 50%;
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  margin: -6px 22px 22px;
  color: var(--gray);
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--black);
  border-top: 1px solid rgba(198, 168, 90, 0.24);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) repeat(3, minmax(130px, 1fr));
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  padding: 48px 0 46px;
}

.footer-column:first-child {
  max-width: 320px;
}

.footer-column:first-child p {
  max-width: 32ch;
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.68;
}

.footer-logo {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.footer-logo-image {
  width: min(184px, 54vw);
  height: auto;
  object-fit: contain;
}

.footer-column h3 {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column a {
  transition: color 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gold);
}

.social-links {
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.social-link i {
  width: 21px;
  color: var(--gold);
  font-size: 1.18rem;
  text-align: center;
  transition: transform 160ms ease, color 160ms ease;
}

.social-link--whatsapp i {
  color: var(--whatsapp);
}

.social-link:hover i,
.social-link:focus-visible i {
  transform: translateY(-1px);
}

.footer-bottom {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 55;
  display: grid;
  width: 60px;
  height: 60px;
  min-height: 60px;
  padding: 0;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: linear-gradient(135deg, #35df79 0%, var(--whatsapp) 62%, #1fb75a 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 18px 40px rgba(37, 211, 102, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.mobile-whatsapp::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -30%;
  z-index: 1;
  width: 42%;
  height: 280%;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.36) 50%, rgba(255, 255, 255, 0) 90%);
  opacity: 0;
  transform: translate3d(-180%, 0, 0) rotate(18deg);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms ease;
  pointer-events: none;
}

.mobile-whatsapp:hover,
.mobile-whatsapp:focus-visible {
  transform: translate3d(0, -2px, 0) scale(1.02);
  background: linear-gradient(135deg, #42e485 0%, var(--whatsapp) 50%, #1fa854 100%);
  box-shadow:
    0 24px 46px rgba(37, 211, 102, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.mobile-whatsapp:hover::after,
.mobile-whatsapp:focus-visible::after {
  opacity: 0.62;
  transform: translate3d(360%, 0, 0) rotate(18deg);
}

.mobile-whatsapp svg {
  position: relative;
  z-index: 2;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 580ms ease, transform 580ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .units-grid .unit-card:last-child {
    grid-column: span 2;
  }

  .testimonial-card:last-child {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) and (max-width: 1536px) and (min-height: 700px) and (max-height: 900px) {
  .hero {
    min-height: clamp(620px, 74svh, 700px);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.66) 44%, rgba(17, 17, 17, 0.32) 100%),
      linear-gradient(180deg, rgba(17, 17, 17, 0.14) 0%, rgba(17, 17, 17, 0.84) 100%);
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-inner {
    min-height: calc(clamp(620px, 74svh, 700px) - var(--header-height));
    padding-top: 44px;
    padding-bottom: 24px;
  }

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

  .hero h1 {
    max-width: 700px;
    margin-bottom: 12px;
    font-size: clamp(3rem, 6.2vw, 5.65rem);
    line-height: 0.98;
  }

  .hero-description {
    max-width: 590px;
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .btn {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.88rem;
  }

  .hero-trust {
    width: min(740px, 100%);
    gap: 6px;
    margin-top: 22px;
  }

  .trust-item {
    min-height: 78px;
    padding: 14px 16px;
  }

  .trust-item strong {
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  }

  .trust-item span {
    margin-top: 5px;
    font-size: 0.82rem;
    line-height: 1.3;
  }
}

@media (min-width: 1024px) and (max-width: 1536px) and (max-height: 800px) {
  .hero {
    min-height: 620px;
  }

  .hero-inner {
    min-height: calc(620px - var(--header-height));
    padding-top: 34px;
    padding-bottom: 20px;
  }

  .hero h1 {
    max-width: 660px;
    font-size: clamp(2.85rem, 5.7vw, 5.1rem);
  }

  .hero-description {
    max-width: 560px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-trust {
    width: min(700px, 100%);
    margin-top: 18px;
  }

  .trust-item {
    min-height: 72px;
    padding: 12px 14px;
  }
}

@media (min-width: 1024px) and (max-width: 1536px) and (min-height: 700px) and (max-height: 900px) {
  #produtos {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  #produtos .section-heading {
    margin-bottom: 16px;
  }

  #produtos .eyebrow {
    margin-bottom: 8px;
  }

  #produtos h2 {
    margin-bottom: 7px;
  }

  #produtos .lead {
    max-width: 610px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  #produtos .category-grid {
    grid-auto-rows: auto;
    gap: 10px;
  }

  #produtos .product-card {
    min-height: 248px;
  }

  #produtos .product-card.wide {
    min-height: 270px;
  }

  #produtos .product-visual {
    height: 112px;
  }

  #produtos .product-card.wide .product-visual {
    height: 140px;
  }

  #produtos .product-content {
    padding: 13px 14px 14px;
  }

  #produtos .product-kicker {
    margin-bottom: 6px;
    padding: 3px 7px;
    font-size: 0.62rem;
  }

  #produtos .product-card h3 {
    margin-bottom: 5px;
    font-size: 1rem;
    line-height: 1.16;
  }

  #produtos .product-card p {
    display: -webkit-box;
    margin-bottom: 9px;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  #produtos .product-card .btn {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.79rem;
  }

  #produtos .promo-strip {
    gap: 16px;
    margin-top: 12px;
    padding: 14px 18px;
  }

  #produtos .promo-strip h3 {
    margin-bottom: 5px;
    font-size: 1.22rem;
  }

  #produtos .promo-strip p:last-child {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  #produtos .promo-strip .btn {
    min-height: 42px;
    padding: 9px 15px;
    font-size: 0.83rem;
  }
}

@media (min-width: 1024px) and (max-width: 1536px) and (min-height: 700px) and (max-height: 820px) {
  #produtos {
    padding-top: 28px;
    padding-bottom: 30px;
  }

  #produtos .section-heading {
    margin-bottom: 12px;
  }

  #produtos .category-grid {
    gap: 8px;
  }

  #produtos .product-card {
    min-height: 226px;
  }

  #produtos .product-card.wide {
    min-height: 248px;
  }

  #produtos .product-visual {
    height: 110px;
  }

  #produtos .product-card.wide .product-visual {
    height: 140px;
  }

  #produtos .product-content {
    padding: 11px 12px 12px;
  }

  #produtos .product-card:not(.wide) p {
    -webkit-line-clamp: 1;
  }

  #produtos .product-card.wide p {
    -webkit-line-clamp: 2;
  }

  #produtos .product-card .btn {
    min-height: 38px;
    padding: 7px 11px;
  }

  #produtos .promo-strip {
    margin-top: 10px;
    padding: 12px 16px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-panel {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    width: 100vw;
    min-width: 100vw;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 4vh, 34px);
    padding: calc(var(--header-height) + 24px) clamp(20px, 6vw, 48px) max(48px, calc(env(safe-area-inset-bottom) + 24px));
    color: var(--white);
    background:
      radial-gradient(circle at 78% 12%, rgba(198, 168, 90, 0.18), transparent 32%),
      radial-gradient(circle at 22% 82%, rgba(198, 168, 90, 0.1), transparent 36%),
      linear-gradient(180deg, #111111 0%, #171613 48%, #070707 100%);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    clip-path: circle(0% at calc(100% - 38px) 36px);
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transition:
      clip-path 540ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 340ms ease,
      visibility 0s linear 540ms;
  }

  .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    clip-path: circle(150% at calc(100% - 38px) 36px);
    transition-delay: 0s;
  }

  .nav-panel::before {
    content: "";
    position: absolute;
    top: var(--header-height);
    right: clamp(24px, 8vw, 72px);
    left: clamp(24px, 8vw, 72px);
    height: 1px;
    transform: scaleX(0.65);
    background: linear-gradient(90deg, transparent, rgba(198, 168, 90, 0.42), transparent);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 360ms ease,
      transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-panel::after {
    content: "";
    position: absolute;
    inset: auto 12% 8% 12%;
    height: 24%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 168, 90, 0.12), transparent 64%);
    opacity: 0;
    filter: blur(24px);
    transform: translateY(20px);
    pointer-events: none;
    transition:
      opacity 440ms ease,
      transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-panel.is-open::before {
    opacity: 1;
    transform: scaleX(1);
    transition-delay: 180ms;
  }

  .nav-panel.is-open::after {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 180ms;
  }

  .nav-links {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(100%, 440px);
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 1.7vh, 14px);
  }

  .nav-link {
    display: flex;
    width: 100%;
    min-height: clamp(50px, 7vh, 68px);
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(1.08rem, 4.3vw, 1.64rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    pointer-events: auto;
    transition:
      opacity 340ms ease,
      transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
      color 220ms ease;
  }

  .nav-link::after {
    right: 28%;
    bottom: 9px;
    left: 28%;
    background: var(--gold);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    color: var(--white);
    background: transparent;
  }

  .nav-panel.is-open .nav-link {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .nav-panel.is-open .nav-link:nth-child(1) {
    transition-delay: 120ms, 120ms, 0s;
  }

  .nav-panel.is-open .nav-link:nth-child(2) {
    transition-delay: 170ms, 170ms, 0s;
  }

  .nav-panel.is-open .nav-link:nth-child(3) {
    transition-delay: 220ms, 220ms, 0s;
  }

  .nav-panel.is-open .nav-link:nth-child(4) {
    transition-delay: 270ms, 270ms, 0s;
  }

  .nav-panel.is-open .nav-link:nth-child(5) {
    transition-delay: 320ms, 320ms, 0s;
  }

  .header-cta {
    position: relative;
    z-index: 1;
    width: min(100%, 320px);
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    pointer-events: auto;
    transition:
      opacity 340ms ease,
      transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
      background 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease;
  }

  .nav-panel.is-open .header-cta {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 370ms, 370ms, 0s, 0s, 0s;
  }

  .hero {
    min-height: 76svh;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(17, 17, 17, 0.52) 0%, rgba(17, 17, 17, 0.86) 56%, rgba(17, 17, 17, 0.96) 100%),
      linear-gradient(90deg, rgba(17, 17, 17, 0.45), transparent);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-inner {
    min-height: calc(76svh - var(--header-height));
    padding-top: 78px;
    padding-bottom: 24px;
  }

  .hero-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px;
  }

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

  .advantages-layout,
  .coverage-panel,
  .proof-header,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .coverage-panel {
    align-items: start;
  }

  .coverage-stat {
    max-width: 520px;
  }

  .proof-header {
    align-items: start;
  }

  .mobile-whatsapp {
    display: grid;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 54px 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 124px;
    max-height: 60px;
  }

  .brand-name {
    font-size: 1.18rem;
  }

  .brand-subtitle {
    font-size: 0.58rem;
  }

  .hero {
    min-height: 72svh;
  }

  .hero-inner {
    min-height: calc(72svh - var(--header-height));
    padding-top: 66px;
    padding-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
    line-height: 1;
  }

  .hero-description {
    font-size: 0.96rem;
  }

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

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .btn {
    min-height: 44px;
  }

  .hero-trust {
    display: none;
  }

  .category-grid,
  .units-grid,
  .advantage-list,
  .testimonial-grid,
  .proof-summary {
    grid-template-columns: 1fr;
  }

  .product-card.wide,
  .testimonial-card:last-child {
    grid-column: auto;
  }

  .product-card,
  .unit-card,
  .testimonial-card {
    min-height: auto;
  }

  .product-visual,
  .product-card.wide .product-visual {
    height: 170px;
  }

  .coverage-panel {
    gap: 20px;
    padding: 24px;
  }

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

  .coverage-number {
    font-size: clamp(4rem, 22vw, 5.7rem);
  }

  .coverage-panel h3 {
    max-width: 10ch;
  }

  .coverage-cities {
    gap: 8px;
  }

  .coverage-cities span {
    font-size: 0.76rem;
  }

  .final-cta h2 {
    max-width: 12ch;
  }

  .promo-strip {
    grid-template-columns: 1fr;
  }

  .promo-strip .btn {
    width: 100%;
  }

  .footer-inner {
    padding-bottom: 88px;
  }

  .mobile-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
  }

  .mobile-whatsapp svg {
    width: 27px;
    height: 27px;
  }
}

@media (max-width: 768px) {
  .social-proof .proof-header {
    gap: 22px;
    margin-bottom: 22px;
    text-align: center;
  }

  .social-proof .section-heading {
    margin: 0 auto;
    text-align: center;
  }

  .social-proof .eyebrow,
  .final-cta .eyebrow {
    justify-content: center;
  }

  .social-proof .eyebrow::after,
  .final-cta .eyebrow::after {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
  }

  .social-proof .lead {
    max-width: 35ch;
    margin: 0 auto;
  }

  .social-proof .proof-summary {
    grid-template-columns: 1fr;
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .social-proof .proof-stat {
    min-height: 88px;
    justify-items: center;
    padding: 15px 18px;
    text-align: center;
  }

  .social-proof .proof-stat strong {
    font-size: 2.1rem;
  }

  .social-proof .proof-stat span {
    margin-top: 6px;
  }

  .social-proof .proof-stat .btn {
    width: min(100%, 250px);
  }

  .social-proof .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .social-proof .testimonial-card:last-child {
    grid-column: auto;
  }

  .final-cta-inner {
    max-width: 100%;
  }

  .final-cta .section-heading {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .final-cta h2 {
    max-width: 18ch;
    margin-right: auto;
    margin-left: auto;
    line-height: 1;
  }

  .final-cta .lead {
    max-width: 34ch;
    margin: 0 auto;
  }

  .final-cta .cta-actions {
    display: grid;
    gap: 10px;
    width: min(100%, 320px);
    margin: 24px auto 0;
  }

  .final-cta .cta-actions .btn {
    width: 100%;
  }

  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 86px;
  }

  .site-footer .footer-column:first-child {
    max-width: 300px;
  }

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

  .site-footer .footer-logo-image {
    width: min(156px, 48vw);
  }

  .site-footer .footer-column h3 {
    margin-bottom: 11px;
  }

  .site-footer .footer-column ul {
    gap: 7px;
  }

  .site-footer .social-links {
    gap: 12px;
  }

  .site-footer .social-link {
    gap: 10px;
  }

  .site-footer .social-link i {
    width: 20px;
    font-size: 1.12rem;
  }

  .footer-bottom .container {
    padding-right: 66px;
  }

  #unidades .coverage-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 20px;
    padding: 22px 18px 20px;
  }

  #unidades .coverage-stat {
    display: grid;
    grid-template-columns: clamp(58px, 19vw, 76px) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    max-width: none;
  }

  #unidades .coverage-number {
    font-size: clamp(4.1rem, 20vw, 5.3rem);
    line-height: 0.82;
  }

  #unidades .coverage-panel h3 {
    max-width: none;
    margin: 0;
    font-size: clamp(1.48rem, 7vw, 1.8rem);
    line-height: 1.06;
  }

  #unidades .coverage-copy {
    min-width: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(198, 168, 90, 0.24);
  }

  #unidades .coverage-panel p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  #unidades .coverage-cities {
    gap: 8px;
    margin-top: 16px;
  }

  #unidades .coverage-cities span {
    max-width: 100%;
    padding: 6px 9px;
    font-size: 0.76rem;
    line-height: 1.32;
    white-space: normal;
  }

  #unidades .units-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 52px;
  }

  #unidades .units-grid .unit-card,
  #unidades .units-grid .unit-card:last-child {
    grid-column: auto;
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 21px 18px 18px;
  }

  #unidades .city-label {
    margin-bottom: 12px;
  }

  #unidades .unit-card h3 {
    max-width: 100%;
    margin-bottom: 9px;
    font-size: 1.22rem;
    line-height: 1.22;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  #unidades .unit-hours {
    margin-bottom: 16px;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  #unidades .unit-actions {
    gap: 9px;
  }

  #unidades .unit-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 45px;
    padding: 10px 12px;
    font-size: 0.84rem;
    line-height: 1.3;
    white-space: normal;
  }

  .mobile-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 53px;
    height: 53px;
    min-height: 53px;
  }

  .mobile-whatsapp svg {
    width: 25px;
    height: 25px;
  }
}
