:root {
  color-scheme: light;
  --ink: #17211b;
  --muted: #5f6b64;
  --line: #d8dfd8;
  --surface: #f7f8f5;
  --surface-strong: #edf2ec;
  --brand: #0f5132;
  --brand-dark: #0a3421;
  --accent: #b88a2b;
  --action: #c94b36;
  --white: #ffffff;
  --shadow: 0 16px 45px rgba(18, 31, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 30px);
  color: #101713;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a,
.site-footer a {
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.client-area {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-client-area {
  display: none;
}

.menu-toggle {
  position: relative;
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 81, 50, 0.24);
  border-radius: 6px;
  background: var(--white);
  color: var(--brand-dark);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  margin: -1px 0 0 -9px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.menu-toggle:focus,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(15, 81, 50, 0.22);
  outline-offset: 2px;
}

.client-area-icon {
  display: inline-flex;
  width: 19px;
  height: 19px;
}

.client-area-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.button.primary {
  background: var(--brand);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--brand);
  border-color: var(--line);
}

.button:hover {
  transform: translateY(-1px);
}

.client-area:hover {
  color: var(--brand);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(84px, 12vw, 150px) clamp(20px, 6vw, 92px);
  background:
    linear-gradient(90deg, rgba(5, 13, 10, 0.78), rgba(5, 13, 10, 0.56), rgba(5, 13, 10, 0.32)),
    url("assets/condominio-hero.jpg");
  background-color: var(--brand-dark);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
}

.hero-content {
  width: min(650px, 100%);
  margin-left: clamp(0px, 20vw, 430px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(2.75rem, 5.4vw, 4.9rem);
  font-weight: 800;
}

.hero-copy,
.section-copy {
  color: var(--muted);
}

.hero-copy {
  width: min(610px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.06rem, 1.75vw, 1.28rem);
}

.section-copy {
  margin: 18px 0 0;
  font-size: 1.05rem;
}

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

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.privacy-notice {
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid #0f5132;
  border-radius: 0 10px 10px 0;
  background: #f3f8f5;
  color: #44524a;
  font-size: 0.9rem;
  line-height: 1.55;
}

.privacy-notice a {
  color: #0f5132;
  font-weight: 700;
}

.map-consent {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 32px;
  border: 1px solid #d8e3dc;
  border-radius: 18px;
  background: linear-gradient(145deg, #edf5f0, #f9fbfa);
  text-align: center;
}

.map-consent-content { max-width: 430px; }

.map-consent-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  place-items: center;
  border-radius: 50%;
  background: #0f5132;
}

.map-consent-icon svg {
  width: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}

.map-consent h3 { margin: 0 0 8px; }

.map-consent p {
  margin: 0 0 18px;
  color: #56655d;
  line-height: 1.6;
}

.map-consent .button {
  display: inline-flex;
  margin-bottom: 14px;
}

.map-consent a {
  display: block;
  color: #0f5132;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Política de Privacidade */
.privacy-page {
  background: #f5f7f5;
  color: #243129;
}

.privacy-header { position: static; }
.privacy-main { padding-bottom: 72px; }

.privacy-hero {
  padding: 76px 24px 64px;
  background: linear-gradient(135deg, #093c27 0%, #0f5132 60%, #1d6a46 100%);
  color: #fff;
}

.privacy-hero-inner,
.privacy-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.privacy-hero .eyebrow { color: #bfe2ce; }

.privacy-hero h1 {
  max-width: 760px;
  margin: 8px 0 18px;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.04;
}

.privacy-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #e4f0e9;
  font-size: 1.08rem;
  line-height: 1.7;
}

.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 24px;
  color: #c9dfd2;
  font-size: 0.88rem;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 42px;
  padding: 48px 24px 0;
}

.privacy-nav {
  align-self: start;
  position: sticky;
  top: 24px;
  padding: 20px;
  border: 1px solid #dde5df;
  border-radius: 14px;
  background: #fff;
}

.privacy-nav strong {
  display: block;
  margin-bottom: 10px;
  color: #0f5132;
}

.privacy-nav a {
  display: block;
  padding: 7px 0;
  color: #526057;
  font-size: 0.88rem;
  text-decoration: none;
}

.privacy-nav a:hover { color: #0f5132; }
.privacy-content { min-width: 0; }

.privacy-summary,
.privacy-section,
.privacy-contact-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid #dde5df;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(22, 57, 38, 0.05);
}

.privacy-summary {
  margin-bottom: 22px;
  border-top: 4px solid #0f5132;
}

.privacy-summary h2,
.privacy-section h2,
.privacy-contact-card h2 {
  margin: 0 0 14px;
  color: #123d29;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.privacy-section {
  margin: 0 0 22px;
  scroll-margin-top: 24px;
}

.privacy-section h3 {
  margin: 24px 0 8px;
  color: #184b33;
  font-size: 1.08rem;
}

.privacy-section p,
.privacy-section li,
.privacy-summary p,
.privacy-contact-card p {
  color: #4a5a50;
  line-height: 1.75;
}

.privacy-section ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.privacy-section li + li { margin-top: 8px; }

.privacy-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.privacy-table th,
.privacy-table td {
  padding: 14px;
  border: 1px solid #dfe7e1;
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.privacy-table th {
  background: #edf5f0;
  color: #17472f;
}

.privacy-contact-card {
  border: 0;
  background: #0f5132;
  color: #fff;
}

.privacy-contact-card h2,
.privacy-contact-card p { color: #fff; }

.privacy-contact-card a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 820px) {
  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-nav { position: static; }
}

@media (max-width: 560px) {
  .privacy-header {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 64px;
  }

  .privacy-header .main-nav {
    grid-column: 2;
    display: flex;
    width: auto;
    justify-self: end;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 2px 8px;
    padding: 0;
  }

  .privacy-header .main-nav a {
    display: inline-flex;
    width: auto;
    min-height: auto;
    padding: 4px 0;
    border: 0;
    background: transparent;
    font-size: 0.68rem;
  }

  .privacy-header .main-nav a:nth-child(2) { display: none; }
  .privacy-hero { padding: 52px 20px 46px; }
  .privacy-layout { padding: 28px 14px 0; }
  .privacy-nav { display: none; }
  .privacy-summary,
  .privacy-section,
  .privacy-contact-card { padding: 24px 20px; }
}

.hero .button.primary {
  background: var(--action);
  color: var(--white);
}

.hero .button.secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-dark);
  border-color: rgba(255, 255, 255, 0.55);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px clamp(18px, 3vw, 32px);
  background: var(--white);
}

.trust-item strong {
  color: var(--brand-dark);
  font-size: 1.08rem;
}

.trust-item span {
  color: var(--muted);
}

.client-portal {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(10, 52, 33, 0.98), rgba(15, 81, 50, 0.94)),
    url("assets/condominio-hero.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.client-portal h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.08;
}

.client-portal .eyebrow {
  color: #f0c66c;
}

.client-portal .section-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
}

.client-portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.client-portal .button.primary {
  background: var(--action);
}

.client-portal .button.secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-dark);
  border-color: rgba(255, 255, 255, 0.5);
}

.client-portal-panel {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 22px 54px rgba(2, 18, 10, 0.24);
}

.portal-status {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.portal-status span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portal-status strong {
  color: var(--brand-dark);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.16;
}

.portal-feature-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.portal-feature-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.portal-feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--brand);
}

.portal-feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.portal-feature-list strong,
.portal-feature-list small {
  display: block;
}

.portal-feature-list strong {
  color: var(--brand-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.portal-feature-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 92px);
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 30px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.text-block {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  color: var(--muted);
}

.text-block p {
  margin: 0;
  padding-top: 18px;
  border-top: 2px solid var(--line);
}

.services,
.contact {
  background: var(--white);
}

.service-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-item,
.contact-item {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 31, 24, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-item {
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.service-item:hover,
.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 81, 50, 0.26);
  box-shadow: 0 18px 42px rgba(18, 31, 24, 0.1);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--brand-dark);
  font-weight: 800;
}

.service-item h3,
.contact-item h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.service-item p,
.contact-item p {
  margin: 0;
  color: var(--muted);
}

.proposal {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  background: var(--surface-strong);
}

.proposal-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(15, 81, 50, 0.2);
  border-color: var(--brand);
}


.location {
  background: var(--surface-strong);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1.3fr);
  gap: 24px;
  align-items: stretch;
}

.location-info {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-info h3 {
  margin: 0;
  font-size: 1.35rem;
}

.location-info p {
  margin: 0;
  color: var(--muted);
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-access {
  background: var(--surface-strong);
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.quick-access-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 142px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(18, 31, 24, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.quick-access-item:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 81, 50, 0.32);
  box-shadow: 0 14px 34px rgba(18, 31, 24, 0.12);
}

.primary-access {
  border-color: rgba(15, 81, 50, 0.38);
}

.review-access {
  border-color: rgba(184, 138, 43, 0.42);
}

.review-access .quick-access-icon {
  background: #fff3d7;
  color: #9a6a18;
}

.quick-access-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--brand);
}

.primary-access .quick-access-icon {
  background: var(--brand);
  color: var(--white);
}

.quick-access-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.quick-access-item strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.08rem;
  line-height: 1.2;
}

.quick-access-item small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

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

.contact-item {
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 310px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 31, 24, 0.08);
}

.featured-contact {
  border-color: rgba(15, 81, 50, 0.34);
}

.contact-item-header {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--surface-strong);
  color: var(--brand);
  font-weight: 900;
}

.featured-contact .contact-icon {
  background: var(--brand);
  color: var(--white);
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-actions {
  display: grid;
  gap: 8px;
}

.contact-actions a {
  display: grid;
  gap: 2px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--brand);
  text-decoration: none;
}

.contact-actions a:hover {
  border-color: rgba(15, 81, 50, 0.32);
  background: var(--white);
}

.contact-actions span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-actions strong {
  overflow-wrap: anywhere;
  color: var(--brand-dark);
  font-size: 0.94rem;
  line-height: 1.25;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 92px);
  background: var(--brand-dark);
  color: var(--white);
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.site-footer p,
.footer-address {
  margin: 0;
}

.footer-address {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.5;
}

.footer-address a {
  color: inherit;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 12px;
  min-width: 268px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #1f9f55;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(13, 54, 31, 0.28);
  text-decoration: none;
}

.floating-whatsapp span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.floating-whatsapp strong {
  grid-column: 2;
  font-size: 1rem;
}

.whatsapp-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: #1f9f55;
  line-height: 1;
}

.whatsapp-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.whatsapp-icon .bubble {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.whatsapp-icon .phone {
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: translateY(-1px);
}

.review-prompt {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 22;
  display: none;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  width: min(360px, calc(100vw - 44px));
  padding: 14px 42px 14px 14px;
  border: 1px solid rgba(184, 138, 43, 0.34);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(18, 31, 24, 0.18);
}

.review-prompt.is-visible {
  display: grid;
}

.review-prompt-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 6px;
  background: rgba(184, 138, 43, 0.12);
  color: #7a5211;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.review-prompt-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #fff3d7;
  color: #9a6a18;
}

.review-prompt-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.review-prompt-content {
  min-width: 0;
}

.review-prompt-content strong,
.review-prompt-content span {
  display: block;
}

.review-prompt-content strong {
  color: var(--brand-dark);
  font-size: 0.98rem;
  line-height: 1.2;
}

.review-prompt-content span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.review-prompt-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 10px;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.app-install-prompt {
  position: fixed;
  right: 12px;
  bottom: 84px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
  padding: 14px 42px 14px 14px;
  border: 1px solid rgba(15, 81, 50, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 18px 42px rgba(15, 38, 29, 0.22);
}

.app-install-prompt.is-visible {
  display: grid;
}

.app-install-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 6px;
  background: rgba(15, 81, 50, 0.08);
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.app-install-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
}

.app-install-icon svg {
  width: 27px;
  height: 27px;
  display: block;
}

.app-install-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.app-install-content {
  min-width: 0;
}

.app-install-content strong {
  display: block;
  color: var(--brand-dark);
  font-size: 0.98rem;
  line-height: 1.2;
}

.app-install-content span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.app-install-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.app-install-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.app-install-actions a:last-child {
  background: var(--brand-dark);
}

.desktop-app-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 24px;
}

.desktop-app-modal.is-visible {
  display: grid;
}

.desktop-app-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 18, 0.56);
  backdrop-filter: blur(4px);
}

.desktop-app-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 26px;
  width: min(760px, 100%);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(15, 81, 50, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(6, 23, 15, 0.28);
}

.desktop-app-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  background: rgba(15, 81, 50, 0.08);
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.desktop-app-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-app-copy h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.desktop-app-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.desktop-app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.desktop-app-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.desktop-app-buttons a:last-child {
  background: var(--brand-dark);
}

.desktop-app-qr {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.desktop-app-qr img {
  width: 230px;
  height: 230px;
  border-radius: 6px;
  background: var(--white);
}

.desktop-app-qr span {
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 720px;
    padding-bottom: 120px;
  }

  .hero-content {
    margin-left: 0;
  }

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

  .text-block,
  .service-grid,
  .location-grid,
  .client-portal,
  .proposal {
    grid-template-columns: 1fr;
  }

  .quick-access-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: auto;
    padding: 8px 14px 10px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .mobile-client-area {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    gap: 7px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(15, 81, 50, 0.28);
    border-radius: 6px;
    background: var(--white);
    color: var(--brand);
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: visible;
    padding: 8px 0 4px;
    font-size: 0.78rem;
  }

  .site-header.menu-ready .main-nav {
    display: none;
  }

  .site-header.menu-ready.is-menu-open .main-nav {
    display: grid;
  }

  .main-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    white-space: nowrap;
  }

  .main-nav .client-area {
    display: none;
  }

  .client-area-icon {
    width: 17px;
    height: 17px;
  }

  .client-area-icon svg {
    width: 17px;
    height: 17px;
  }

  .button {
    width: 100%;
  }

  .hero {
    min-height: 500px;
    padding-top: 42px;
    padding-bottom: 64px;
    background-position: center center;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .trust-item {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .client-portal {
    gap: 26px;
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .client-portal h2 {
    font-size: 2rem;
  }

  .client-portal-actions {
    display: grid;
  }

  .client-portal-panel {
    padding: 20px;
  }

  .portal-feature-list li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .portal-feature-icon {
    width: 38px;
    height: 38px;
  }

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

  .quick-access-item {
    grid-template-columns: 42px 1fr;
    min-height: auto;
    padding: 20px;
  }

  .quick-access-icon {
    width: 42px;
    height: 42px;
  }

  .quick-access-icon svg {
    width: 23px;
    height: 23px;
  }

  .contact-item {
    min-height: auto;
    padding: 20px;
  }

  .contact-actions a {
    min-height: 52px;
  }

  .proposal-form {
    padding: 20px;
  }

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

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    left: auto;
    width: max-content;
    height: auto;
    max-width: calc(100vw - 24px);
    min-width: 0;
    grid-template-columns: 34px max-content;
    gap: 2px 10px;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 8px;
  }

  .app-install-prompt {
    right: 14px;
    bottom: 78px;
    left: 14px;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    max-width: 340px;
    padding: 12px 38px 12px 12px;
  }

  .app-install-close {
    top: 7px;
    right: 7px;
    width: 26px;
    height: 26px;
  }

  .app-install-icon {
    width: 34px;
    height: 34px;
  }

  .app-install-icon svg {
    width: 22px;
    height: 22px;
  }

  .app-install-content strong {
    font-size: 0.92rem;
  }

  .app-install-content span {
    display: none;
  }

  .app-install-actions {
    gap: 6px;
    margin-top: 8px;
  }

  .app-install-actions a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .floating-whatsapp span {
    display: block;
  }

  .floating-whatsapp > span:not(.whatsapp-icon) {
    font-size: 0.64rem;
    line-height: 1;
    text-align: center;
  }

  .floating-whatsapp strong {
    display: block;
    font-size: 0.85rem;
    line-height: 1.1;
    text-align: center;
  }

  .whatsapp-icon {
    width: 34px;
    height: 34px;
  }

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

  .site-footer {
    flex-direction: column;
    padding-bottom: 82px;
  }
}

@media (min-width: 761px) {
  .app-install-prompt.is-visible {
    display: none;
  }
}

@media (max-width: 760px) {
  .review-prompt,
  .review-prompt.is-visible,
  .desktop-app-modal,
  .desktop-app-modal.is-visible {
    display: none;
  }
}
