@charset "UTF-8";

/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  background: #f3f7f5;
  color: #0c1a17;
  font-family:
    "Manrope",
    system-ui,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,
h2,
h3 {
  font-family:
    "Sora",
    system-ui,
    sans-serif;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
a {
  color: #17724b;
  text-decoration: none;
}
a:hover {
  color: #1f8a5c;
  text-decoration: underline;
}
:focus-visible {
  outline: 2px solid #1f8a5c;
  outline-offset: 2px;
  border-radius: 4px;
}
img {
  max-width: 100%;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding-top: 104px;
}
.section__head {
  max-width: 620px;
}
.section__head--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.section__head h2 {
  margin: 12px 0 0;
  font:
    700 clamp(26px, 3.4vw, 40px)/1.12 "Sora",
    system-ui,
    sans-serif;
}
.eyebrow {
  margin: 0;
  font:
    600 11px "Manrope",
    system-ui,
    sans-serif;
  letter-spacing: 0.2em;
  color: #4e7a6a;
}
.eyebrow--light {
  color: #63d29c;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 7px 15px;
  border-radius: 999px;
  font:
    600 11px "Manrope",
    system-ui,
    sans-serif;
  letter-spacing: 0.18em;
  color: #dfeae6;
}
.eyebrow-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #63d29c;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font:
    700 15px "Manrope",
    system-ui,
    sans-serif;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn--sm {
  font-size: 13px;
  padding: 11px 20px;
}
.btn--block {
  width: 100%;
}
.btn--primary {
  background: #1f8a5c;
  color: #fff;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(31, 138, 92, 0.4);
  color: #fff;
  text-decoration: none;
}
.btn--primary:disabled {
  opacity: 0.5;
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}
.btn--dark {
  border-color: #1f8a5c;
  color: #17724b;
}
.btn--dark:hover {
  background: rgba(31, 138, 92, 0.1);
  color: #115c3d;
}
.link-arrow {
  font:
    700 14px "Manrope",
    system-ui,
    sans-serif;
  color: #1f8a5c;
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
  text-decoration: none;
}
.link-arrow::after {
  content: " \2192";
}
.link-arrow:hover {
  text-decoration: none;
  color: #17724b;
}
.card-lift {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card-lift:hover,
.card-lift:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(8, 32, 28, 0.16);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: #1f8a5c;
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  font:
    700 14px "Manrope",
    system-ui,
    sans-serif;
}
.skip-link:focus {
  left: 0;
}
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  animation: waPulse 2.6s ease-out infinite;
}
.wa-float img {
  width: 56px;
  height: 56px;
  display: block;
}
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float {
    animation: none;
  }
}
@media print {
  .hd,
  .wa-float,
  .skip-link {
    display: none !important;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
