:root {
  --petroleo: #063d49;
  --petroleo-2: #082f38;
  --teal: #0f7c85;
  --teal-dark: #075b63;
  --celeste: #9bd9ea;
  --celeste-soft: #e9f8fb;
  --white: #ffffff;
  --green-dark: #1d4f3c;
  --green-soft: #e4f1eb;
  --gray-50: #f8fafb;
  --gray-100: #eef3f4;
  --gray-200: #d7e1e4;
  --gray-500: #6b7c83;
  --gray-600: #5a6a70;
  --gray-800: #233137;
  --shadow: 0 24px 70px rgba(6, 61, 73, 0.18);
  --shadow-soft: 0 14px 35px rgba(6, 61, 73, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--gray-800);
  background:
    radial-gradient(circle at 8% 5%, rgba(155, 217, 234, 0.36), transparent 34%),
    radial-gradient(circle at 94% 16%, rgba(29, 79, 60, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fcfd 42%, #edf6f4 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(15, 124, 133, 0.13);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 40px, var(--max-width));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand__logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(15, 124, 133, 0.16);
  box-shadow: 0 12px 26px rgba(6, 61, 73, 0.12);
  display: grid;
  place-items: center;
  padding: 5px;
  flex: 0 0 auto;
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.14;
}

.brand__text strong {
  color: var(--petroleo);
  font-size: 0.98rem;
}

.brand__text small {
  margin-top: 4px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav__menu a {
  color: var(--gray-600);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 10px 11px;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav__menu a:hover,
.nav__menu a:focus-visible {
  color: var(--petroleo);
  background: var(--celeste-soft);
  transform: translateY(-1px);
  outline: none;
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(15, 124, 133, 0.18);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(6, 61, 73, 0.10);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--petroleo);
  transition: 0.25s ease;
}

.nav__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: 92px 0;
  overflow: hidden;
}

.hero__shape,
.hero__glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.hero__shape--one {
  width: 520px;
  height: 520px;
  left: -220px;
  top: 8%;
  background: radial-gradient(circle, rgba(155, 217, 234, 0.55), transparent 68%);
}

.hero__shape--two {
  width: 500px;
  height: 500px;
  right: -200px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(29, 79, 60, 0.20), transparent 68%);
}

.hero__glow {
  width: 780px;
  height: 780px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(15, 124, 133, 0.08), transparent 68%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(315px, 0.95fr);
  align-items: center;
  gap: 56px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--celeste));
}

.hero h1,
.section__title h2,
.treatments__content h2,
.contact__content h2 {
  color: var(--petroleo);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(2.4rem, 7vw, 5.65rem);
  text-transform: uppercase;
}

.professional {
  margin-top: 22px;
  color: var(--green-dark);
  font-size: clamp(1.22rem, 2.6vw, 1.78rem);
  font-weight: 900;
}

.priority {
  width: fit-content;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  color: var(--petroleo-2);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 124, 133, 0.16);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.priority span {
  color: var(--teal);
}

.hero__statement {
  max-width: 640px;
  margin-top: 26px;
  color: var(--gray-600);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
}

.hero__actions,
.contact__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--petroleo), var(--teal));
  box-shadow: 0 18px 36px rgba(6, 61, 73, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 22px 44px rgba(6, 61, 73, 0.29);
}

.button--light {
  color: var(--petroleo);
  background: var(--white);
  border-color: rgba(15, 124, 133, 0.19);
  box-shadow: var(--shadow-soft);
}

.button--location {
  margin-top: 22px;
  color: var(--petroleo);
  background: var(--celeste-soft);
  border-color: rgba(15, 124, 133, 0.20);
}

.hero__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.logo-card {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(233, 248, 251, 0.92)),
    var(--white);
  border: 1px solid rgba(15, 124, 133, 0.16);
  border-radius: 42px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(15, 124, 133, 0.12);
  border-radius: 32px;
}

.logo-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(6, 61, 73, 0.12));
}

.mini-card {
  position: absolute;
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--petroleo);
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(15, 124, 133, 0.14);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
}

.mini-card--top {
  top: 46px;
  right: 2px;
}

.mini-card--bottom {
  bottom: 38px;
  left: 0;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section__title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section__title--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__title--center .kicker {
  justify-content: center;
}

.section__title h2,
.treatments__content h2,
.contact__content h2 {
  font-size: clamp(2rem, 4.5vw, 3.55rem);
}

.approach__card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: clamp(24px, 5vw, 48px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(155, 217, 234, 0.22), transparent 30%),
    linear-gradient(135deg, var(--petroleo), var(--teal-dark));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.approach__symbol {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  color: var(--petroleo);
  background: var(--celeste);
  font-size: 4rem;
  font-weight: 900;
}

.approach__main {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.approach__note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  font-weight: 700;
}

.therapies {
  background:
    linear-gradient(180deg, rgba(233, 248, 251, 0.8), rgba(255, 255, 255, 0.92)),
    var(--celeste-soft);
}

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

.therapy-card,
.complementary__card,
.location-card,
.contact-card,
.promo {
  position: relative;
  border: 1px solid rgba(15, 124, 133, 0.15);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.therapy-card {
  min-height: 218px;
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.therapy-card::after,
.complementary__card::after,
.location-card::after,
.contact-card::after,
.promo::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  top: -70px;
  border-radius: 999px;
  background: rgba(155, 217, 234, 0.32);
}

.therapy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(6, 61, 73, 0.17);
}

.therapy-card__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--green-dark));
  font-size: 1.5rem;
  font-weight: 900;
}

.therapy-card h3,
.complementary__card h3,
.location-card h3,
.promo h3,
.contact-card h3 {
  position: relative;
  z-index: 1;
  color: var(--petroleo);
  font-size: 1.28rem;
  line-height: 1.2;
}

.therapy-card p,
.complementary__card p,
.location-card p,
.promo p,
.contact-card p {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: var(--gray-600);
  font-weight: 700;
}

.complementary {
  background:
    radial-gradient(circle at 10% 12%, rgba(155, 217, 234, 0.28), transparent 30%),
    linear-gradient(135deg, #ffffff, #f1faf9);
}

.complementary__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 32px;
  align-items: stretch;
}

.complementary__card {
  min-height: 240px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-xl);
}

.complementary__card .therapy-card__icon {
  width: 66px;
  height: 66px;
  font-size: 1.7rem;
}

.complementary__card h3 {
  font-size: clamp(1.8rem, 4vw, 2.65rem);
}

.complementary__card p {
  font-size: 1.12rem;
}

.treatments {
  background:
    radial-gradient(circle at 90% 8%, rgba(155, 217, 234, 0.25), transparent 28%),
    linear-gradient(135deg, var(--petroleo-2), var(--petroleo));
  color: var(--white);
}

.treatments .kicker,
.treatments__content h2 {
  color: var(--white);
}

.treatments .kicker::before {
  background: var(--celeste);
}

.treatments__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 30px;
  align-items: center;
}

.treatments__text {
  margin-top: 24px;
  color: var(--celeste);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
}

.promo {
  padding: 34px;
  border-radius: var(--radius-xl);
  color: var(--gray-800);
}

.promo__badge {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--teal));
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(29, 79, 60, 0.22);
}

.promo .button {
  position: relative;
  z-index: 1;
  margin-top: 22px;
}

.locations {
  background:
    linear-gradient(180deg, #ffffff 0%, #edf8f7 100%);
}

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

.location-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 4vw, 38px);
  border-radius: var(--radius-xl);
}

.location-card--featured {
  background:
    radial-gradient(circle at 90% 0%, rgba(155, 217, 234, 0.38), transparent 30%),
    linear-gradient(145deg, #ffffff, #effafa);
  border-color: rgba(15, 124, 133, 0.24);
}

.location-card__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--petroleo), var(--teal));
  font-weight: 900;
}

.location-card em {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 900;
}

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

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border: 1px solid rgba(15, 124, 133, 0.12);
  border-radius: 22px;
}

.contact-item > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--green-dark));
  font-weight: 900;
}

.contact-item strong {
  display: block;
  color: var(--petroleo);
  font-size: 1.05rem;
}

.contact-item a,
.contact-item p {
  display: block;
  margin-top: 6px;
  color: var(--gray-600);
  font-weight: 700;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: var(--teal-dark);
  outline: none;
}

.contact-card {
  min-height: 100%;
  padding: 34px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.contact-card img {
  position: relative;
  z-index: 1;
  width: 210px;
  height: 210px;
  object-fit: contain;
  margin: 0 auto 26px;
  border-radius: 30px;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(15, 124, 133, 0.14);
  box-shadow: var(--shadow-soft);
}

.contact-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  margin-top: 16px;
  padding: 10px 14px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--teal));
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(29, 79, 60, 0.34);
  font-size: 1.45rem;
  font-weight: 900;
}

.footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.84);
  background: var(--petroleo-2);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.footer strong {
  color: var(--white);
  font-size: 1.05rem;
}

.footer p {
  margin-top: 7px;
}

.animations-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animations-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .nav__toggle {
    display: block;
  }

  .nav__menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 86px;
    display: grid;
    gap: 6px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 124, 133, 0.14);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
  }

  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__menu a {
    padding: 14px 16px;
    background: var(--gray-50);
  }

  .hero__grid,
  .complementary__grid,
  .treatments__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 74px 0;
  }

  .hero__visual {
    min-height: auto;
  }

  .logo-card {
    width: min(100%, 420px);
  }
}

@media (max-width: 820px) {
  .therapy-grid,
  .location-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

  .approach__symbol {
    width: 92px;
    height: 92px;
    font-size: 3rem;
  }

  .mini-card {
    display: none;
  }
}

@media (max-width: 560px) {
  .container,
  .nav {
    width: min(100% - 28px, var(--max-width));
  }

  .brand__logo {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .brand__text strong {
    font-size: 0.88rem;
  }

  .brand__text small {
    font-size: 0.62rem;
    letter-spacing: 0.09em;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 64px;
  }

  .hero h1 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .priority {
    border-radius: 22px;
    align-items: flex-start;
  }

  .hero__actions,
  .contact__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .logo-card {
    border-radius: 28px;
    padding: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .therapy-card,
  .complementary__card,
  .location-card,
  .promo,
  .contact-card {
    padding: 24px;
    border-radius: 24px;
  }

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

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}
