:root {
  --teal-900: #12312d;
  --teal-800: #0f4f4a;
  --teal-700: #0f766e;
  --teal-600: #14877d;
  --green-700: #2f855a;
  --amber-500: #f59e0b;
  --orange-500: #f97316;
  --cream-50: #f7fbf8;
  --mint-100: #e8f6ef;
  --line: #d8e7df;
  --ink: #152c28;
  --muted: #5f726d;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 49, 45, 0.14);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.65;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.65);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--teal-900);
  color: var(--white);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(216, 231, 223, 0.86);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--container), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  width: 224px;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--teal-900);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover {
  color: var(--teal-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.94rem;
  line-height: 1.1;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  background: var(--teal-700);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.18);
}

.button-primary:hover {
  background: var(--teal-800);
}

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

.button-secondary:hover {
  border-color: var(--amber-500);
}

.button-whatsapp {
  background: var(--green-700);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 680px;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 39, 35, 0.88) 0%, rgba(12, 39, 35, 0.72) 42%, rgba(12, 39, 35, 0.25) 100%),
    linear-gradient(180deg, rgba(12, 39, 35, 0.1), rgba(12, 39, 35, 0.45));
}

.hero-inner {
  width: min(var(--container), calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 82px 0 92px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #d6fff0;
  font-size: 0.95rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--amber-500);
}

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

h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: 3.6rem;
  line-height: 1.07;
  font-weight: 800;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
}

.fact {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.fact strong {
  display: block;
  color: var(--white);
  font-size: 1.32rem;
  line-height: 1.2;
}

.fact span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.section {
  padding: 82px 0;
}

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

.section-mint {
  background: var(--mint-100);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

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

.section-kicker {
  margin-bottom: 10px;
  color: var(--teal-700);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  color: var(--teal-900);
  font-size: 2.35rem;
  line-height: 1.18;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(18, 49, 45, 0.06);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #e5f5f1;
  color: var(--teal-700);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--teal-900);
  font-size: 1.12rem;
  line-height: 1.32;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.about-copy p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--teal-900);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-700);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.info-panel {
  padding: 28px;
  border-radius: 8px;
  background: var(--teal-900);
  color: var(--white);
  box-shadow: var(--shadow);
}

.info-panel h3 {
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.info-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.info-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.info-row svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--amber-500);
}

.info-row span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.info-row strong,
.info-row a {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.cta-band {
  background: var(--teal-700);
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
}

.cta-inner h2 {
  color: var(--white);
}

.cta-inner p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.contact-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(18, 49, 45, 0.06);
}

.contact-card {
  padding: 30px;
}

.contact-card h3,
.map-card h3 {
  margin-bottom: 16px;
  color: var(--teal-900);
  font-size: 1.35rem;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0 0 26px;
}

.contact-list div {
  display: grid;
  gap: 3px;
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--teal-900);
  font-size: 1.03rem;
  font-weight: 800;
}

.contact-list a {
  color: var(--teal-700);
}

.map-card {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}

.map-visual {
  position: relative;
  min-height: 330px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(15, 118, 110, 0.12) 49%, rgba(15, 118, 110, 0.12) 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(245, 158, 11, 0.16) 49%, rgba(245, 158, 11, 0.16) 51%, transparent 51%),
    #edf7f2;
  background-size: 112px 112px, 112px 112px, auto;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 8px;
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.28);
  transform: translate(-50%, -62%) rotate(-45deg);
}

.map-pin svg {
  width: 27px;
  height: 27px;
  transform: rotate(45deg);
}

.map-content {
  padding: 26px;
  border-top: 1px solid var(--line);
}

.map-content p {
  margin-bottom: 18px;
  color: var(--muted);
}

.site-footer {
  padding: 32px 0;
  background: var(--teal-900);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.94rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 1040px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-top: 2px;
  }

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

@media (max-width: 820px) {
  .hero,
  .hero-inner {
    min-height: 650px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-facts,
  .about-layout,
  .cta-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .container,
  .footer-inner,
  .hero-inner {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    width: 196px;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .button {
    flex: 1 1 0;
  }

  .site-nav {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    min-height: 720px;
    padding: 58px 0 70px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(12, 39, 35, 0.82) 0%, rgba(12, 39, 35, 0.76) 68%, rgba(12, 39, 35, 0.5) 100%);
  }

  h1 {
    font-size: 2.24rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions .button,
  .cta-actions .button,
  .contact-card .button {
    width: 100%;
  }

  .hero-facts,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .contact-card,
  .info-panel {
    padding: 24px;
  }

  .map-visual {
    min-height: 260px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
