:root {
  --teal: #3aa1bd;
  --teal-deep: #257575;
  --mint: #9de8e4;
  --mint-soft: #d8f5f2;
  --text: #1f2b2e;
  --text-soft: #4d6267;
  --surface: #ffffff;
  --border: rgba(31, 43, 46, 0.12);
  --shadow-soft: 0 24px 60px rgba(29, 52, 58, 0.12);
  --shadow-strong: 0 18px 48px rgba(16, 42, 47, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--surface);
}

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

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

#sobre,
#diferenciais,
#contato {
  scroll-margin-top: 112px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 43, 46, 0.08);
}

.site-header__inner {
  width: min(1224px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(58, 161, 189, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.site-brand:hover,
.site-brand:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(58, 161, 189, 0.24);
}

.site-brand__logo {
  width: min(150px, 38vw);
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
}

.site-nav a {
  font-size: 0.92rem;
  color: var(--teal-deep);
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--teal);
  color: #ffffff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.hero::before {
  width: 36rem;
  height: 36rem;
  top: -10rem;
  right: -8rem;
}

.hero::after {
  width: 18rem;
  height: 18rem;
  bottom: -8rem;
  left: -4rem;
}

.hero__inner,
.section__inner,
.site-footer__inner,
.site-footer__legal {
  width: min(1224px, calc(100vw - 48px));
  margin: 0 auto;
}

.hero__inner {
  min-height: calc(100svh - 90px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 56px;
  padding: 80px 0;
}

.hero__copy,
.hero__mark {
  position: relative;
  z-index: 1;
  animation: rise 760ms ease both;
}

.hero__mark {
  animation-delay: 120ms;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--teal {
  color: var(--teal-deep);
}

.hero h1,
.section-heading h2,
.service h3,
.location h2,
.footer-block h3 {
  font-family: "Montserrat", sans-serif;
}

.hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 4vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero__lead {
  max-width: 38rem;
  margin: 24px 0 0;
  font-size: 1.04rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions,
.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button--light {
  background: #ffffff;
  color: var(--teal-deep);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.36);
  color: #ffffff;
  background: transparent;
}

.button--primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(58, 161, 189, 0.22);
}

.button--ghost {
  border-color: rgba(37, 117, 117, 0.24);
  background: transparent;
  color: var(--teal-deep);
}

.hero__mark {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__mark-shell {
  width: min(460px, 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero__logo {
  width: min(100%, 350px);
  filter: brightness(0) invert(1) drop-shadow(0 20px 38px rgba(9, 41, 50, 0.26));
  animation: float 7s ease-in-out infinite;
}

.section {
  padding: 108px 0;
}

.section--white {
  background: #ffffff;
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.section-heading h2,
.location h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading--center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-heading--center h2 {
  max-width: none;
}

.intro__text,
.location__lead,
.service p,
.footer-block p,
.footer-block a,
.location__details p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.intro__text {
  margin: 0;
}

.service-list {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service {
  padding: 28px 0 0;
  border-top: 2px solid rgba(31, 43, 46, 0.14);
  transition: transform 220ms ease, border-color 220ms ease;
}

.service:hover,
.service:focus-within {
  transform: translateY(-6px);
  border-color: rgba(37, 117, 117, 0.36);
}

.service__index {
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--teal-deep);
}

.service h3 {
  margin: 0 0 14px;
  font-size: 1.7rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.service p {
  margin: 0;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: 56px;
  align-items: start;
}

.location__lead {
  max-width: 38rem;
  margin: 22px 0 0;
}

.location__details {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.location__details p {
  margin: 0;
}

.location__details strong {
  color: var(--text);
}

.location__details a:hover,
.location__details a:focus-visible {
  color: var(--teal-deep);
}

.location__media {
  display: grid;
  gap: 28px;
}

.location__image-link {
  width: min(360px, 100%);
  justify-self: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transition: transform 220ms ease;
}

.location__image-link:hover,
.location__image-link:focus-visible {
  transform: translateY(-6px);
}

.location__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.location__map {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(31, 43, 46, 0.08);
}

.location__map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  background: var(--teal);
  color: #ffffff;
  padding: 72px 0 30px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.footer-block h3 {
  margin: 0 0 18px;
  font-size: 1.15rem;
}

.footer-block p,
.footer-block a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.92);
}

.footer-block a:hover,
.footer-block a:focus-visible {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  color: var(--teal);
}

.site-footer__legal {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer__legal p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  margin-top: 16px;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.legal-page {
  background: #f7fbfc;
}

.legal-main {
  padding-bottom: 64px;
}

.legal-hero {
  background: linear-gradient(180deg, var(--teal) 0%, #51b2cb 100%);
  color: #ffffff;
  padding: 96px 0 56px;
}

.legal-hero__inner,
.legal-content {
  width: min(920px, calc(100vw - 48px));
  margin: 0 auto;
}

.legal-hero__inner h1,
.legal-content h2,
.legal-content h3 {
  font-family: "Montserrat", sans-serif;
}

.legal-hero__inner h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.legal-hero__inner p {
  max-width: 42rem;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.legal-content {
  margin-top: -18px;
  padding: 38px clamp(22px, 4vw, 42px);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(31, 43, 46, 0.08);
}

.legal-meta {
  margin: 0 0 26px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.legal-content h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.legal-content h3 {
  margin: 34px 0 12px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content strong {
  color: var(--text);
}

.legal-content a {
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.legal-content ul {
  margin: 0 0 14px 18px;
  padding: 0;
}

.legal-content li + li {
  margin-top: 6px;
}

.legal-box {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 24px;
  background: var(--mint-soft);
  border: 1px solid rgba(37, 117, 117, 0.12);
}

.legal-box p:last-child {
  margin-bottom: 0;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--teal-deep);
  font-weight: 600;
}

.legal-back:hover,
.legal-back:focus-visible {
  transform: translateX(-2px);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1024px) {
  .hero__inner,
  .location,
  .intro,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    min-height: auto;
    padding: 64px 0 72px;
  }

  .hero__copy,
  .hero__mark,
  .location__copy {
    max-width: 680px;
  }

  .hero__mark {
    justify-content: flex-start;
  }

  .section-heading h2,
  .location h2 {
    max-width: none;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .location__image-link {
    justify-self: flex-start;
  }
}

@media (max-width: 767px) {
  .site-header__inner,
  .hero__inner,
  .section__inner,
  .site-footer__inner,
  .site-footer__legal {
    width: min(100vw - 32px, 1224px);
  }

  .site-header__inner {
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 18px;
  }

  .hero::before {
    width: 22rem;
    height: 22rem;
    top: -7rem;
    right: -9rem;
  }

  .hero::after {
    width: 14rem;
    height: 14rem;
    left: -5rem;
  }

  .hero__inner {
    gap: 40px;
    padding: 42px 0 56px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .hero__lead,
  .intro__text,
  .location__lead,
  .location__details p,
  .service p,
  .footer-block p,
  .footer-block a {
    font-size: 0.96rem;
  }

  .hero__actions,
  .location__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__mark-shell {
    width: min(320px, 100%);
    padding: 42px;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading h2,
  .location h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.6rem);
  }

  .service-list {
    margin-top: 48px;
  }

  .location {
    gap: 40px;
  }

  .location__image-link {
    width: min(320px, 82vw);
    justify-self: center;
  }

  .location__map iframe {
    min-height: 280px;
  }

  .site-footer {
    padding: 56px 0 24px;
  }

  .site-footer__inner {
    gap: 28px;
  }

  .site-footer__legal {
    margin-top: 32px;
  }

  .site-footer__legal p {
    font-size: 0.84rem;
  }

  .site-footer__links {
    gap: 10px 18px;
  }

  .site-footer__links a {
    font-size: 0.84rem;
  }

  .legal-hero {
    padding: 74px 0 42px;
  }

  .legal-hero__inner,
  .legal-content {
    width: min(100vw - 32px, 920px);
  }

  .legal-content {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .legal-content h3 {
    font-size: 1.08rem;
  }
}
