:root {
  --verde: #629802;
  --verde-escuro: #2f4f08;
  --verde-musgo: #20350e;
  --rosa: #b90e50;
  --rosa-vinho: #7d123f;
  --grafite: #161714;
  --grafite-2: #1d1f22;
  --grafite-3: #383b40;
  --marfim: #fcfaf7;
  --texto: #263025;
  --texto-suave: #677064;
  --branco: #ffffff;
  --linha: rgba(255, 255, 255, 0.12);
  --linha-clara: rgba(98, 152, 2, 0.14);
  --sombra: 0 24px 60px rgba(10, 14, 9, 0.16);
  --sombra-forte: 0 28px 80px rgba(15, 19, 14, 0.28);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: min(1480px, calc(100% - 64px));
  --top-bar-height: 54px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--texto);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 52%, #f3f3f3 100%);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: '';
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(95px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background: rgba(185, 14, 80, 0.08);
  top: -120px;
  left: -140px;
}

body::after {
  background: rgba(98, 152, 2, 0.08);
  right: -120px;
  top: 320px;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #fff;
  color: #111;
  z-index: 9999;
  border-radius: 12px;
}

.top-urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  min-height: var(--top-bar-height);
  background: linear-gradient(90deg, #1d1f22 0%, #161714 100%);
  color: #fff;
  border-bottom: 2px solid var(--verde);
  box-shadow: 0 10px 28px rgba(10, 14, 9, 0.4);
}

.top-urgency-bar__inner {
  min-height: var(--top-bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 0;
  text-align: center;
  flex-wrap: wrap;
}

.top-urgency-bar__text {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.top-urgency-bar__icon {
  margin-right: 8px;
}

.top-urgency-bar__timer {
  font-size: 0.96rem;
  font-weight: 700;
  white-space: nowrap;
}

.top-urgency-bar__timer strong {
  color: var(--verde);
  font-size: 1.08rem;
}

.site-header {
  position: fixed;
  top: calc(var(--top-bar-height) + 16px);
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(16, 21, 15, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 45px rgba(9, 11, 8, 0.18);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled .header-shell {
  background: rgba(16, 21, 15, 0.72);
  box-shadow: 0 24px 50px rgba(9, 11, 8, 0.26);
}

.brand img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-copy {
  text-align: right;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.header-copy strong {
  display: block;
  color: #ffffff;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

.header-cta,
.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
  cursor: pointer;
}

.header-cta,
.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #ff6b00, #ff8c00 55%, #ffa500 100%);
  box-shadow: 0 14px 28px rgba(255, 107, 0, 0.28);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(255, 107, 0, 0.34);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(10, 14, 9, 0.10);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  padding: calc(var(--top-bar-height) + 110px) 0 40px;
}

.hero-shell {
  position: relative;
  min-height: 760px;
  border-radius: 42px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(15, 18, 13, 0.74) 8%, rgba(15, 18, 13, 0.52) 42%, rgba(15, 18, 13, 0.20) 68%),
    linear-gradient(145deg, rgba(47, 79, 8, 0.16), rgba(125, 18, 63, 0.14)),
    url('assets/hero-bg.webp') center center / cover no-repeat;
  box-shadow: var(--sombra-forte);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  align-items: end;
}

.hero-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(98, 152, 2, 0.20), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(185, 14, 80, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(10, 12, 9, 0.04), rgba(10, 12, 9, 0.16));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
  gap: 28px;
  align-items: end;
  padding: 64px;
}

.hero-text {
  max-width: 760px;
  color: #ffffff;
}

.eyebrow,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow::before,
.tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.eyebrow::before {
  background: linear-gradient(135deg, #9bd22d, #ec6ea1);
}

.hero h1,
.section-header h2,
.location-copy h2,
.cta-box h2,
.hero-card h2,
.highlight-card h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  margin-bottom: 24px;
}

.hero h1 strong,
.section-header h2 span {
  color: #d8f28a;
}

.hero-text p {
  max-width: 650px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 42px;
}

.metric {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
}

.metric span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.74);
}

.hero-card {
  align-self: end;
  padding: 34px;
  color: #ffffff;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(11, 13, 11, 0.72), rgba(11, 13, 11, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(8, 9, 10, 0.24);
}

.hero-card small,
.highlight-card small,
.address-card small {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card small,
.highlight-card small {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-card h2 {
  font-size: 2.3rem;
  margin-bottom: 14px;
}

.hero-card p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.76);
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.hero-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-card li::before {
  content: '';
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d8f28a;
}

.section {
  padding: 46px 0;
}

.section-cta {
  padding-bottom: 90px;
}

.section-header {
  margin-bottom: 28px;
}

.section-header.center {
  text-align: center;
}

.tag {
  margin-bottom: 20px;
  color: var(--verde-escuro);
  background: rgba(98, 152, 2, 0.08);
  border: 1px solid rgba(98, 152, 2, 0.12);
}

.tag::before {
  background: linear-gradient(135deg, var(--verde), var(--rosa));
}

.tag-dark {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.section-header h2,
.location-copy h2,
.cta-box h2 {
  color: var(--grafite);
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 16px;
}

.section-header p,
.location-copy p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--texto-suave);
  font-size: 1rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  padding: 30px;
  border-radius: 30px;
  color: #ffffff;
  box-shadow: var(--sombra);
  background: linear-gradient(145deg, #111214 0%, #1d1f22 45%, #383b40 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.highlight-card--image {
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.46), rgba(8, 9, 10, 0.88)),
    linear-gradient(145deg, rgba(34, 34, 34, 0.78), rgba(8, 8, 8, 0.94)),
    url('assets/highlight-01.webp') center center / cover no-repeat;
}

.highlight-card h3 {
  position: relative;
  z-index: 1;
  font-size: 2.05rem;
  margin-bottom: 14px;
}

.highlight-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--sombra);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 15, 11, 0.04) 0%, rgba(12, 15, 11, 0.18) 42%, rgba(12, 15, 11, 0.82) 100%);
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px;
  color: #ffffff;
}

.gallery-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.4rem;
  font-weight: 700;
}

.gallery-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.96rem;
}

.location-box {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--sombra-forte);
  background:
    linear-gradient(112deg, rgba(12, 14, 12, 0.82) 0%, rgba(12, 14, 12, 0.70) 44%, rgba(12, 14, 12, 0.52) 100%),
    url('assets/location-bg.webp') center center / cover no-repeat;
}

.location-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.location-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 28px;
  align-items: end;
  padding: 52px;
}

.location-copy h2,
.location-copy p {
  color: #ffffff;
}

.location-copy p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.address-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  color: #ffffff;
}

.address-card small {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.address-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.22rem;
  line-height: 1.4;
}

.address-card span {
  color: rgba(255, 255, 255, 0.74);
}

.cta-box {
  text-align: center;
  padding: 54px 24px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 243, 0.92));
  border: 1px solid rgba(98, 152, 2, 0.10);
  box-shadow: var(--sombra);
}

.cta-box h2 {
  margin-bottom: 20px;
}

.section-action,
.section-inline-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.section-inline-cta {
  justify-content: flex-start;
}

.section-action--center {
  justify-content: center;
}

.lead-toast {
  position: fixed;
  left: 16px;
  bottom: 24px;
  z-index: 999;
  width: min(360px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(16, 21, 15, 0.92);
  border: 1px solid var(--verde);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(98, 152, 2, 0.15);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  cursor: pointer;
}

.lead-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lead-toast__avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--verde);
  color: #ffffff;
  font-size: 1.4rem;
}

.lead-toast__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.lead-toast__content strong {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lead-toast__content span {
  font-size: 0.94rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.86);
}

.lead-toast__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  cursor: pointer;
}

.site-footer {
  padding: 0 0 32px;
}

.footer-shell {
  text-align: center;
  color: var(--texto-suave);
  font-size: 0.92rem;
}

/* Widget WhatsApp */
.nxwa-root,
.nxwa-root * {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.nxwa-root {
  position: relative;
  z-index: 2147483646;
  line-height: 1.25;
  color: #101828;
}

.nxwa-trigger {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 84px;
  height: 84px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.nxwa-trigger-shell {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 28px rgba(10, 130, 48, .28);
  padding: 0;
}

.nxwa-trigger-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.nxwa-badge {
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff465d 0%, #e11d48 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 28px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(225, 29, 72, .34);
  opacity: 0;
  visibility: hidden;
}

.nxwa-trigger.nxwa-has-badge .nxwa-badge {
  opacity: 1;
  visibility: visible;
}

.nxwa-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 2147483645;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.nxwa-overlay.nxwa-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nxwa-modal {
  position: fixed;
  right: 18px;
  bottom: 108px;
  width: 408px;
  max-width: calc(100vw - 24px);
  z-index: 2147483646;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(.98);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.nxwa-modal.nxwa-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nxwa-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, .08);
  box-shadow: 0 30px 70px rgba(2, 12, 27, .26);
}

.nxwa-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 26px;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
  z-index: 3;
}

.nxwa-header {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 22px 58px 20px 20px;
  background: linear-gradient(135deg, #25D366 0%, #16b95a 100%);
  color: #fff;
}

.nxwa-header-icon-wrap {
  width: 82px;
  min-width: 82px;
  height: 82px;
  border-radius: 18px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.nxwa-header-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.nxwa-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
  width: max-content;
}

.nxwa-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
}

.nxwa-header-copy {
  min-width: 0;
}

.nxwa-header-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.nxwa-header-copy p {
  margin: 6px 0 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  line-height: 1.45;
}

.nxwa-body {
  background: #ffffff;
  padding: 20px;
}

.nxwa-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f4fff8;
  border: 1px solid #d7f6e3;
  color: #0f5132;
}

.nxwa-note-bullet {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 999px;
  background: #25D366;
}

.nxwa-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.nxwa-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nxwa-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.nxwa-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nxwa-input {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 1px solid #d0d7e2;
  border-radius: 18px;
  background: #ffffff;
  color: #101828;
  font-size: 17px;
  line-height: 56px;
}

.nxwa-help {
  margin: 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

.nxwa-error {
  min-height: 18px;
  margin: 0;
  color: #c5163a;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.nxwa-submit {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #25D366 0%, #16b95a 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 54px;
  text-transform: uppercase;
  cursor: pointer;
}

.nxwa-disclaimer {
  margin: 2px 0 0 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 1280px) {
  :root {
    --container: min(100%, calc(100% - 32px));
  }
}

@media (max-width: 1080px) {
  .hero-content,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    max-width: 520px;
  }
}

@media (max-width: 820px) {
  :root {
    --top-bar-height: 64px;
    --container: min(100%, calc(100% - 20px));
  }

  .site-header {
    top: calc(var(--top-bar-height) + 10px);
  }

  .header-shell {
    padding: 12px 14px;
  }

  .header-copy {
    display: none;
  }

  .header-cta,
  .btn {
    min-height: 50px;
    padding: 0 20px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: calc(var(--top-bar-height) + 96px);
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-content {
    padding: 28px;
  }

  .hero-metrics,
  .highlights-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 360px;
  }

  .section,
  .section-cta {
    padding: 32px 0;
  }

  .location-grid {
    padding: 30px;
  }

  .top-urgency-bar__inner {
    gap: 6px;
  }

  .top-urgency-bar__text,
  .top-urgency-bar__timer {
    width: 100%;
    font-size: 0.88rem;
  }

  .lead-toast {
    bottom: 104px;
  }
}

@media (max-width: 640px) {
  .nxwa-trigger {
    right: 14px;
    bottom: 14px;
    width: 78px;
    height: 78px;
  }

  .nxwa-trigger-shell {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    padding: 15px;
  }

  .nxwa-modal {
    right: 12px;
    left: 12px;
    bottom: 96px;
    width: auto;
    max-width: none;
  }

  .nxwa-header-icon-wrap {
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 8px;
  }
}

@media (max-width: 560px) {
  .brand img {
    height: 42px;
  }

  .header-right {
    gap: 10px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-text p,
  .section-header p,
  .location-copy p {
    font-size: 0.96rem;
  }

  .hero-card,
  .highlight-card,
  .gallery-card,
  .location-box,
  .cta-box,
  .address-card {
    border-radius: 24px;
  }

  .hero-card,
  .highlight-card,
  .gallery-copy,
  .address-card,
  .location-grid,
  .cta-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gallery-card {
    min-height: 320px;
  }

  .lead-toast {
    left: 10px;
    width: calc(100vw - 20px);
    padding: 12px 14px;
    gap: 12px;
    border-radius: 18px;
  }

  .lead-toast__avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .lead-toast__content strong {
    font-size: 1rem;
  }

  .lead-toast__content span {
    font-size: 0.88rem;
  }

  .nxwa-header {
    padding: 18px 52px 18px 16px;
  }

  .nxwa-header-copy h2 {
    font-size: 18px;
  }

  .nxwa-header-copy p {
    font-size: 13px;
  }

  .nxwa-body {
    padding: 16px;
  }
}