:root {
  --ink: #053f53;
  --muted: #52737a;
  --blue: #039bd3;
  --blue-strong: #005d75;
  --cyan: #58c8e7;
  --teal: #04989d;
  --teal-deep: #006a78;
  --mint: #d8fff4;
  --mint-bright: #21d9b7;
  --leaf: #73dd92;
  --warm: #73dd92;
  --paper: #ffffff;
  --wash: #f3fbfb;
  --aqua-wash: #e9fafa;
  --line: rgba(0, 93, 117, 0.14);
  --shadow: 0 20px 55px rgba(0, 93, 117, 0.18);
  --radius: 8px;
  --header-height: 86px;
  --headline-font: "Ephesis", "Playfair Display", Georgia, cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--wash);
  line-height: 1.6;
  overflow-x: hidden;
}

[data-parallax] {
  --parallax-offset: 0px;
  --parallax-scale: 1.09;
  transform: translate3d(0, var(--parallax-offset), 0) scale(var(--parallax-scale));
  transform-origin: center;
  will-change: transform;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  clip: auto;
  border-radius: var(--radius);
  background: var(--paper);
  color: #01566E;
  box-shadow: var(--shadow);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  padding: 10px 12px 10px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(11, 63, 102, 0.13);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  top: 10px;
  box-shadow: 0 16px 42px rgba(11, 63, 102, 0.2);
}

.brand {
  display: inline-grid;
  grid-template-columns: 48px minmax(128px, 198px);
  align-items: center;
  width: 258px;
  min-width: 258px;
  gap: 10px;
}

.brand img {
  object-fit: contain;
}

.brand-symbol {
  width: 48px;
  height: 54px;
}

.brand-text {
  width: 198px;
  height: 52px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 0 14px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #01566E;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--teal);
  transition: transform 180ms ease;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.15;
}

.header-cta {
  padding: 0 18px;
  color: var(--paper);
  background: var(--teal);
  box-shadow: 0 10px 22px rgba(8, 168, 157, 0.24);
}

.header-cta svg,
.btn svg,
.feature-card svg,
.value-panel svg,
.care-list svg,
.contact-card svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
  stroke-width: 2.35;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  color: #01566E;
  background: #eaf8fb;
}

.hero {
  position: relative;
  min-height: 88svh;
  padding: 145px 24px 72px;
  overflow: hidden;
  color: var(--paper);
  background: #013d52;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  inset: -18svh 0;
  background-image: url("assets/images/entrada.webp");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 37, 53, 0.95), rgba(0, 93, 117, 0.74) 48%, rgba(33, 217, 183, 0.32)),
    linear-gradient(180deg, rgba(0, 47, 62, 0.18), rgba(0, 47, 62, 0.84));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 475px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 54px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow {
  color: #01566E;
  background: var(--mint);
}

.hero h1 {
  max-width: 790px;
  margin: 22px 0 18px;
  font-family: var(--headline-font);
  font-size: clamp(5.8rem, 8.5vw, 8rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin: 0;
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-width: 190px;
  padding: 0 20px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #003f52;
  background: var(--warm);
  box-shadow: 0 18px 30px rgba(115, 221, 146, 0.28);
}

.btn-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.btn-light {
  color: #01566E;
  background: var(--paper);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.16);
}

.hero-panel {
  position: relative;
  justify-self: end;
  width: 100%;
}

.panel-image {
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.panel-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: right center;
}

.life-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  width: min(220px, calc(100% - 28px));
  min-height: 54px;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(5, 38, 75, 0.78);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.life-badge svg {
  width: 24px;
  min-width: 24px;
  height: 24px;
  color: var(--cyan);
}

.life-badge span {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.hero-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1040px, calc(100% - 48px));
  margin: 54px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--blue-strong);
  background:
    linear-gradient(135deg, rgba(233, 250, 250, 0.96), rgba(255, 255, 255, 1)),
    var(--paper);
  box-shadow: var(--shadow);
}

.hero-strip div {
  display: grid;
  align-content: center;
  min-height: 96px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.hero-strip i,
.hero-strip svg {
  width: 28px;
  min-width: 28px;
  height: 28px;
  margin-bottom: 10px;
  color: var(--teal-deep);
  stroke-width: 2.35;
}

.hero-strip div:last-child {
  border-right: 0;
}

.hero-strip strong {
  display: block;
  color: var(--blue-strong);
  font-size: 1.4rem;
  line-height: 1.1;
}

.hero-strip span {
  display: block;
  margin-top: 5px;
  color: var(--blue-strong);
  font-weight: 600;
  opacity: 1;
  visibility: visible;
}

section {
  padding: 108px 24px;
  scroll-margin-top: 108px;
}

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

.section-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: center;
  width: min(1100px, 100%);
  margin: 0 auto;
  gap: 70px;
}

.intro {
  padding-top: 132px;
}

.intro-logo {
  display: grid;
  place-items: center;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(8, 121, 201, 0.12);
}

.section-white,
.intro-logo,
.hero-strip,
.feature-card,
.care-list div,
.footer-info-item {
  color: #01566E;
}

.section-white p,
.feature-card p,
.care-list div span,
.footer-info-item strong {
  color: #01566E;
}

.intro-logo img {
  width: 230px;
}

.section-kicker {
  color: #01566E;
  background: #e6f9fb;
}

h2 {
  max-width: 780px;
  margin: 18px 0 18px;
  font-family: var(--headline-font);
  font-size: clamp(4rem, 5.6vw, 5.8rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
}

h3 {
  margin: 16px 0 8px;
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.intro p,
.care-copy p,
.contact-copy p {
  max-width: 700px;
  font-size: 1.07rem;
}

.quote-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 30px;
  padding: 24px 26px;
  border: 1px solid rgba(4, 152, 157, 0.2);
  border-left: 5px solid var(--mint-bright);
  border-radius: var(--radius);
  color: var(--blue-strong);
  background:
    linear-gradient(135deg, rgba(216, 255, 244, 0.72), rgba(233, 250, 250, 0.92)),
    var(--paper);
  box-shadow: 0 18px 40px rgba(0, 93, 117, 0.1);
  font-weight: 800;
}

.quote-line span,
.life-badge strong,
.contact-highlight h3,
.footer-tagline {
  font-family: var(--headline-font);
  font-weight: 400;
  letter-spacing: 0;
}

.quote-line span {
  color: var(--blue-strong);
  font-size: 2.55rem;
  line-height: 0.94;
}

.quote-line svg {
  width: 34px;
  min-width: 34px;
  height: 34px;
  color: var(--teal);
}

.section-heading {
  width: min(980px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading .section-kicker {
  margin: 0 auto;
}

.section-heading h2,
.contact-copy h2 {
  margin-right: auto;
  margin-left: auto;
}

.section-heading p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.features {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  background: #003f52;
}

.features-bg {
  position: absolute;
  inset: -18svh 0;
  z-index: -2;
  background-image: url("assets/images/area-verde-real.webp");
  background-position: center;
  background-size: cover;
  opacity: 0.58;
}

.features::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 47, 62, 0.86), rgba(0, 106, 120, 0.78)),
    linear-gradient(90deg, rgba(4, 152, 157, 0.28), rgba(115, 221, 146, 0.16));
}

.features .section-heading h2,
.features .section-heading p {
  color: var(--paper);
}

.features .section-kicker {
  color: #01566E;
  background: var(--mint);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 16px;
}

.feature-card,
.value-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(8, 121, 201, 0.09);
}

.feature-card {
  min-height: 344px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.18);
}

.feature-card > img {
  width: 100%;
  height: 142px;
  object-fit: cover;
}

.feature-card > div {
  padding: 22px 20px 24px;
}

.feature-card h3 {
  color: #01566E;
}

.feature-card svg {
  width: 42px;
  min-width: 42px;
  height: 42px;
  color: var(--blue);
}

.feature-card p,
.value-panel p {
  margin: 0;
}

.feature-card:nth-child(even) svg {
  color: var(--teal);
}

.feature-card:nth-child(5) svg {
  color: var(--warm);
}

.care-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.8fr);
  align-items: center;
  width: 100%;
  margin: 0;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  gap: 52px;
  background: var(--paper);
}

.care-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.care-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.care-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.care-list div {
  display: flex;
  align-items: center;
  min-height: 58px;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-weight: 800;
}

.care-list svg {
  color: var(--teal);
}

.care-path {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  background: #003f52;
}

.path-bg,
.path-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.path-bg {
  inset: -18svh 0;
  background-image: url("assets/images/reunioes.webp");
  background-position: center;
  background-size: cover;
}

.path-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 37, 53, 0.93), rgba(0, 93, 117, 0.76)),
    linear-gradient(180deg, rgba(0, 47, 62, 0.52), rgba(0, 47, 62, 0.9));
}

.path-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.path-heading {
  max-width: 840px;
  margin: 0 auto 42px;
  text-align: center;
}

.path-heading .section-kicker {
  margin: 0 auto;
  color: #01566E;
  background: var(--mint);
}

.path-heading h2 {
  color: var(--paper);
}

.path-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

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

.path-card {
  position: relative;
  min-height: 270px;
  padding: 28px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.path-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.16);
}

.path-card svg {
  width: 38px;
  height: 38px;
  color: var(--warm);
}

.path-card span {
  position: absolute;
  top: 24px;
  right: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.55rem;
  font-weight: 900;
}

.path-card h3 {
  margin-top: 28px;
  color: var(--paper);
}

.path-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.gallery {
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.gallery .section-kicker {
  color: #01566E;
  background: var(--mint);
}

.gallery h2,
.gallery p {
  color: var(--ink);
}

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

.gallery-swiper {
  width: min(1180px, 100%);
  max-width: 100%;
  overflow: hidden;
  padding: 8px 0 70px;
}

.swiper-slide {
  position: relative;
  height: 440px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--aqua-wash);
  box-shadow: 0 18px 38px rgba(0, 93, 117, 0.14);
}

.gallery-item {
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
}

.gallery-item:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 4px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.swiper-slide:hover img {
  transform: scale(1.04);
}

.swiper-slide span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: #01566E;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.gallery-controls {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  width: min(320px, 100%);
  margin: 0 auto;
  gap: 16px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-strong);
  background: var(--aqua-wash);
  cursor: pointer;
}

.swiper-pagination {
  position: static;
}

.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(0, 93, 117, 0.22);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--teal);
}

.values-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  background: #003f52;
}

.values-bg {
  position: absolute;
  inset: -18svh 0;
  z-index: -2;
  background-image: url("assets/images/terapias-interacao.webp");
  background-position: center;
  background-size: cover;
  opacity: 0.44;
}

.values-photo::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(0, 37, 53, 0.94), rgba(0, 93, 117, 0.76)),
    linear-gradient(180deg, rgba(0, 47, 62, 0.7), rgba(33, 217, 183, 0.28));
}

.values-photo .section-heading h2,
.values-photo .section-heading p {
  color: var(--paper);
}

.values-photo .section-kicker {
  color: #01566E;
  background: var(--mint);
}

.values-experience {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 28px;
}

.values-manifesto {
  position: relative;
  min-height: 610px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(216, 255, 244, 0.58);
  border-radius: var(--radius);
  color: var(--blue-strong);
  background:
    linear-gradient(145deg, rgba(216, 255, 244, 0.96), rgba(255, 255, 255, 0.9)),
    var(--paper);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.values-manifesto::before {
  position: absolute;
  top: 28px;
  right: 28px;
  bottom: 28px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, var(--teal), var(--cyan), var(--leaf));
}

.values-map-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(0, 93, 117, 0.16);
  border-radius: var(--radius);
  color: var(--paper);
  background: linear-gradient(135deg, var(--blue-strong), var(--teal));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.values-manifesto h3 {
  max-width: 440px;
  margin: 28px 0 20px;
  color: var(--blue-strong);
  font-family: var(--headline-font);
  font-size: clamp(3rem, 4.1vw, 4.35rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
}

.values-manifesto p {
  max-width: 430px;
  margin: 0;
  color: #245d68;
  font-size: 1.04rem;
}

.values-checkpoints {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.values-checkpoints div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  min-height: 76px;
  gap: 4px 14px;
  padding: 14px;
  border: 1px solid rgba(0, 93, 117, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.values-checkpoints svg {
  grid-row: span 2;
  width: 28px;
  min-width: 28px;
  height: 28px;
  color: var(--teal);
}

.values-checkpoints strong {
  color: var(--blue-strong);
  font-size: 1.05rem;
  line-height: 1.1;
}

.values-checkpoints span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
}

.values-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-content: stretch;
  gap: 14px;
}

.values-grid::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 26px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, rgba(216, 255, 244, 0.8), rgba(88, 200, 231, 0.74), rgba(115, 221, 146, 0.68));
  pointer-events: none;
}

.value-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-content: start;
  column-gap: 16px;
  grid-column: 1 / span 5;
  min-height: 0;
  overflow: hidden;
  padding: 22px 24px;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07)),
    rgba(0, 47, 62, 0.56);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.value-panel::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  height: auto;
  content: "";
  background: linear-gradient(180deg, var(--mint), var(--cyan));
  pointer-events: none;
}

.value-panel:hover {
  transform: translateX(8px);
  border-color: rgba(89, 219, 167, 0.54);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.07)),
    rgba(5, 34, 62, 0.54);
}

.value-panel-featured {
  grid-column: 1 / span 5;
}

.value-panel:not(.value-panel-featured):not(.value-panel-wide) {
  grid-column: 2 / span 5;
}

.value-panel-wide {
  grid-column: 1 / -1;
}

.value-panel-wide .value-tags {
  max-width: none;
}

.value-label {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 46px;
  height: 30px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #bdf8e6;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.value-icon {
  display: grid;
  grid-row: 1 / span 4;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 2px 0 0;
  border-radius: var(--radius);
  color: #073f63;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.value-icon svg {
  width: 30px;
  min-width: 30px;
  height: 30px;
}

.value-panel h3 {
  grid-column: 2;
  margin-top: 0;
  margin-right: 72px;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 1.25rem;
}

.value-panel strong {
  grid-column: 2;
  display: block;
  max-width: 620px;
  margin: 0 0 10px;
  color: #dffcff;
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.38;
}

.value-panel p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.5;
}

.value-tags {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.value-tags li {
  min-height: 38px;
  padding: 8px 10px 8px 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--paper);
  background:
    linear-gradient(90deg, var(--mint) 0 5px, transparent 5px),
    rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 168px;
  color: var(--paper);
  background: #005d75;
}

.contact-bg {
  position: absolute;
  inset: -18svh 0;
  z-index: -2;
  background-image: url("assets/images/area-lazer.webp");
  background-position: center;
  background-size: cover;
  opacity: 0.38;
}

.contact::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(0, 93, 117, 0.96), rgba(4, 152, 157, 0.88) 52%, rgba(33, 217, 183, 0.72)),
    linear-gradient(180deg, rgba(0, 47, 62, 0.46), rgba(0, 47, 62, 0.22));
}

.contact-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-copy {
  width: min(900px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.contact-copy .section-kicker {
  margin: 0 auto;
  color: #01566E;
  background: var(--mint);
}

.contact-copy h2,
.contact-copy p {
  color: var(--paper);
}

.contact-copy p {
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.84);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 20px;
  align-items: stretch;
}

.contact-highlight,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.contact-highlight {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 430px;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.14);
}

.whatsapp-orbit {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #01566E;
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.whatsapp-orbit svg {
  width: 38px;
  height: 38px;
}

.contact-highlight > span {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-highlight h3 {
  margin: 14px 0 14px;
  color: var(--paper);
  font-size: clamp(2.15rem, 3.8vw, 3.35rem);
  line-height: 1.04;
}

.contact-highlight p {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn-whatsapp {
  color: #01566E;
  background: var(--paper);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.contact-phone svg {
  width: 18px;
  min-width: 18px;
  height: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  min-height: 0;
  gap: 0 16px;
  padding: 20px;
  color: var(--paper);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.contact-card[href]:hover,
.contact-card[href]:focus-visible {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.contact-card svg {
  grid-row: 1 / 4;
  grid-column: 1;
  align-self: center;
  width: 34px;
  min-width: 34px;
  height: 34px;
  color: var(--mint);
}

.contact-card-whatsapp svg {
  color: var(--leaf);
  filter: drop-shadow(0 8px 16px rgba(115, 221, 146, 0.24));
}

.contact-card span {
  grid-column: 2;
  color: var(--mint);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-card strong {
  grid-column: 2;
  margin-top: 4px;
  overflow-wrap: anywhere;
  color: var(--paper);
  font-size: 1.08rem;
  line-height: 1.28;
}

.contact-card-email strong {
  font-size: 0.96rem;
  line-height: 1.22;
}

.contact-card em {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: #01566E;
  background: var(--mint);
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.contact-card-info {
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  padding: 38px max(24px, calc((100% - 1180px) / 2));
  border-top: 1px solid var(--line);
  color: #01566E;
  background: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 24px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.footer-brand {
  display: grid;
  grid-template-columns: 62px minmax(180px, 290px);
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.footer-brand-symbol,
.footer-brand-text {
  object-fit: contain;
}

.footer-brand-symbol {
  width: 62px;
  height: 70px;
}

.footer-brand-text {
  width: 290px;
  height: 64px;
}

.footer-tagline {
  max-width: 100%;
  margin: 0;
  color: #01566E;
  font-size: clamp(2.45rem, 3vw, 3.35rem);
  line-height: 0.9;
  white-space: nowrap;
}

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

.footer-info-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #01566E;
  background:
    linear-gradient(135deg, rgba(219, 255, 244, 0.84), rgba(234, 248, 251, 0.9)),
    var(--paper);
  box-shadow: 0 16px 38px rgba(8, 121, 201, 0.1);
}

.footer-info-item svg,
.footer-copy-mark {
  grid-row: span 2;
  width: 22px;
  height: 22px;
  color: var(--mint);
}

.footer-info-item svg {
  color: var(--teal);
}

.footer-copy-mark {
  display: grid;
  place-items: center;
  color: #01566E;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.footer-info-item span {
  color: #01566E;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-info-item strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #01566E;
  font-size: 0.96rem;
  line-height: 1.25;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--teal);
  box-shadow: 0 18px 34px rgba(8, 168, 157, 0.32);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 28px 84px;
  color: var(--paper);
  background: rgba(3, 15, 28, 0.9);
  backdrop-filter: blur(18px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-stage {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: min(1120px, 100%);
  height: min(760px, calc(100svh - 78px));
  margin: 0;
  gap: 16px;
}

.lightbox-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.lightbox-stage figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.lightbox-stage figcaption span {
  font-size: 1.05rem;
}

.lightbox-stage figcaption strong {
  color: var(--warm);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 50px;
  height: 50px;
}

.lightbox-nav {
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translateY(-50%);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translateY(calc(-50% - 2px));
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 9px;
    padding: 0 8px;
    font-size: 0.76rem;
  }

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

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

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

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

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    right: 16px;
    left: 16px;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-inner,
  .section-grid,
  .care-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 34px;
  }

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

  .hero-panel {
    max-width: 560px;
  }

  .hero-strip,
  .values-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .values-experience {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .values-manifesto {
    min-height: 0;
  }

  .values-manifesto h3 {
    max-width: 620px;
  }

  .values-grid::before {
    left: 22px;
  }

  .value-panel,
  .value-panel-featured,
  .value-panel-wide {
    grid-column: auto;
    min-height: 0;
  }

  .hero-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-strip div:last-child {
    border-bottom: 0;
  }

  .intro {
    padding-top: 108px;
  }

  .intro-logo {
    min-height: 240px;
  }

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

  .care-section {
    width: 100%;
    padding-right: max(24px, calc((100% - 680px) / 2));
    padding-left: max(24px, calc((100% - 680px) / 2));
  }

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

  .contact-highlight {
    min-height: 330px;
  }

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

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

  .footer-brand {
    grid-template-columns: 58px minmax(180px, 260px);
  }

  .footer-brand-symbol {
    width: 58px;
    height: 64px;
  }

  .footer-brand-text {
    width: 260px;
    height: 58px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-info {
    grid-template-columns: 1fr;
  }

  .footer-tagline {
    white-space: normal;
  }
}

/* ajuste para a seção "values" que esta quebrada em dispositivos com menos de 980px, a solução foi esconder a seção, mas pode ser necessário criar um layout alternativo para esses casos. */
@media (max-width: 980px) {
  .values{
    display:none;
  }

}

/* ajuste para a seção "values" que esta quebrada em dispositivos com menos de 980px, a solução foi esconder a seção, mas pode ser necessário criar um layout alternativo para esses casos. */

@media (max-width: 620px) {
  :root {
    --header-height: 74px;
  }

 
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 8px 10px 8px 12px;
  }

  .brand {
    grid-template-columns: 42px minmax(116px, 168px);
    width: 220px;
    min-width: 220px;
    gap: 8px;
  }

  .brand-symbol {
    width: 42px;
    height: 48px;
  }

  .brand-text {
    width: 168px;
    height: 42px;
  }

  .hero {
    padding: 104px 16px 56px;
  }

  .hero h1 {
    font-size: 4.25rem;
    line-height: 0.82;
  }

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

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .life-badge {
    right: 12px;
    bottom: 12px;
    width: min(196px, calc(100% - 24px));
    min-height: 50px;
    padding: 9px 10px;
  }

  .life-badge svg {
    width: 22px;
    min-width: 22px;
    height: 22px;
  }

  .life-badge span {
    font-size: 0.72rem;
  }

  .hero-strip {
    width: calc(100% - 24px);
    margin-top: 34px;
    margin-bottom: 0;
  }

  .hero-strip div {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    min-height: 78px;
    gap: 3px 12px;
    padding: 14px;
  }

  .hero-strip svg,
  .hero-strip i {
    grid-row: span 2;
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin: 0;
  }

  .hero-strip strong {
    font-size: 1.12rem;
  }

  .hero-strip span {
    margin-top: 0;
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .quote-line {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px 12px;
    padding: 18px;
  }

  .quote-line svg {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  .quote-line span {
    font-size: 2rem;
    line-height: 0.98;
  }

  .values-manifesto {
    padding: 24px;
  }

  .values-manifesto::before {
    top: auto;
    right: 24px;
    bottom: 24px;
    left: 24px;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--cyan), var(--leaf));
  }

  .values-manifesto h3 {
    font-size: 3rem;
  }

  .values-checkpoints div {
    min-height: 70px;
    padding: 12px;
  }

  .value-panel {
    padding: 22px;
  }

  .value-panel:hover {
    transform: none;
  }

  .value-tags {
    grid-template-columns: 1fr;
  }

  section {
    padding: 78px 16px;
  }

  h2 {
    font-size: 3.35rem;
    line-height: 0.88;
  }

  .section-grid {
    gap: 34px;
  }

  .intro-logo img {
    width: 190px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px;
  }

  .features .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .features .section-heading .section-kicker,
  .features .section-heading h2,
  .features .section-heading p {
    margin-right: 0;
    margin-left: 0;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 132px;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  }

  .feature-card > img {
    width: 100%;
    height: 100%;
    min-height: 132px;
  }

  .feature-card > div {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-content: center;
    column-gap: 12px;
    padding: 14px;
  }

  .feature-card svg {
    grid-row: span 2;
    width: 34px;
    min-width: 34px;
    height: 34px;
    padding: 6px;
    border-radius: 10px;
    background: #eaf8fb;
  }

  .feature-card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    line-height: 1.12;
  }

  .feature-card p {
    font-size: 0.88rem;
    line-height: 1.34;
  }

  .footer-top {
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    width: 100%;
  }

  .footer-brand-symbol {
    width: 78px;
    height: 86px;
  }

  .footer-brand-text {
    width: min(280px, 100%);
    height: 64px;
  }

  .footer-tagline {
    max-width: 320px;
    font-size: 2.55rem;
    line-height: 0.9;
  }

  .footer-info-item {
    min-height: 82px;
    padding: 14px;
  }

  .care-section {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    gap: 32px;
  }

  .contact-layout {
    gap: 16px;
  }

  .contact-highlight {
    min-height: 300px;
    padding: 24px;
  }

  .contact-highlight h3 {
    font-size: 1.9rem;
  }

  .contact-actions .btn,
  .contact-phone {
    width: 100%;
  }

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

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

  .swiper-slide {
    height: 330px;
  }

  .contact-card {
    min-height: 0;
    padding: 18px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .lightbox {
    padding: 74px 14px 24px;
  }

  .lightbox-stage {
    height: min(640px, calc(100svh - 118px));
  }

  .lightbox-nav {
    top: auto;
    bottom: 22px;
    width: 48px;
    height: 48px;
    transform: none;
  }

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

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
  }
}

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

  .hero-bg,
  .path-bg,
  .features-bg,
  .values-bg,
  .contact-bg {
    transform: none !important;
  }
}
