:root {
  --azul-profundo: #103f4f;
  --azul-escuro: #0b2c39;
  --verde-saude: #2f7d62;
  --verde-claro: #dceee6;
  --dourado: #b88a36;
  --cinza-texto: #546169;
  --cinza-borda: #d7e0de;
  --branco-gelo: #f7faf8;
  --branco: #ffffff;
  --whatsapp: #18ad55;
  --sombra: 0 24px 70px rgba(16, 63, 79, 0.16);
  --fonte: "Rethink Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--branco-gelo);
  color: var(--azul-escuro);
  font-family: var(--fonte);
  font-size: 17px;
  line-height: 1.58;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(247, 250, 248, 0.92) 0%, rgba(247, 250, 248, 0.72) 48%, rgba(220, 238, 230, 0.72) 100%);
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--azul-escuro);
  color: var(--branco);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 44, 57, 0.96);
  color: var(--branco);
  box-shadow: 0 12px 30px rgba(11, 44, 57, 0.14);
  backdrop-filter: blur(12px);
}

.header-bar {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand__name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--branco);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  padding: 15px 24px;
  color: var(--branco);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(24, 173, 85, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(24, 173, 85, 0.35);
}

.button--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.92rem;
}

.button--whatsapp {
  background: var(--whatsapp);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--verde-saude);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--verde-claro);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 50px;
  background: linear-gradient(90deg, rgba(247, 250, 248, 1) 0%, rgba(247, 250, 248, 0.94) 44%, rgba(220, 238, 230, 0.45) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(0deg, var(--branco-gelo) 0%, rgba(247, 250, 248, 0) 100%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.hero__copy {
  max-width: 640px;
  margin-inline: 0;
  text-align: left;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(2.05rem, 4.35vw, 4.05rem);
  line-height: 0.97;
  letter-spacing: 0;
}

.hero__lead {
  max-width: none;
  margin: 22px 0 0;
  color: var(--cinza-texto);
  font-size: 1.2rem;
  line-height: 1.58;
}

.hero__lead strong {
  color: var(--azul-profundo);
  font-weight: 800;
}

.hero__trust-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  padding: 10px 14px;
  border: 1px solid var(--cinza-borda);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(16, 63, 79, 0.1);
}

.hero__trust-card img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 14%;
}

.hero__trust-copy {
  display: grid;
  gap: 1px;
  font-size: 0.92rem;
  line-height: 1.25;
}

.hero__trust-copy strong {
  font-size: 1rem;
}

.hero__city {
  color: var(--verde-saude);
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 26px;
}

.hero__note {
  max-width: none;
  margin: 16px 0 0;
  color: var(--cinza-texto);
  font-size: 0.96rem;
}

.hero__photo {
  position: relative;
  align-self: stretch;
  min-height: 620px;
  margin: 0;
}

.hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  border-radius: 8px;
  box-shadow: var(--sombra);
}

.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(0deg, rgba(247, 250, 248, 0.72) 0%, rgba(247, 250, 248, 0.18) 28%, rgba(247, 250, 248, 0) 58%);
  pointer-events: none;
}

.hero__facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid var(--cinza-borda);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(16, 63, 79, 0.1);
}

.hero-fact {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 108px;
  padding: 16px;
  border: 1px solid var(--cinza-borda);
  border-radius: 8px;
  background: var(--branco-gelo);
}

.hero-fact__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--azul-profundo);
  color: var(--branco);
}

.hero-fact__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-fact__body {
  display: grid;
  gap: 2px;
}

.hero-fact strong {
  color: var(--azul-escuro);
  font-size: 1.12rem;
  line-height: 1.1;
}

.hero-fact span span {
  color: var(--cinza-texto);
  line-height: 1.22;
}

.video-band,
.pain-section,
.contact,
.faq {
  padding: 92px 0;
}

.video-band {
  background: var(--branco-gelo);
}

.video-band__grid,
.contact__grid,
.about-section__grid {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 54px;
  align-items: center;
}

.video-card {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--branco);
  box-shadow: var(--sombra);
}

.video-card iframe,
.video-card video {
  width: 100%;
  border: 0;
  background: var(--azul-escuro);
}

.video-card iframe {
  aspect-ratio: 16 / 9;
}

.video-loader {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--azul-escuro);
}

.video-loader iframe {
  height: 100%;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--azul-escuro);
  color: var(--branco);
  cursor: pointer;
  font: inherit;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.22s ease;
}

.video-thumb:hover img {
  transform: scale(1.03);
}

.video-thumb:focus-visible {
  outline: 3px solid var(--dourado);
  outline-offset: -7px;
}

.video-thumb__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(11, 44, 57, 0.06) 0%, rgba(11, 44, 57, 0.5) 100%);
  font-weight: 900;
  text-shadow: 0 3px 16px rgba(11, 44, 57, 0.42);
}

.video-thumb__play {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(11, 44, 57, 0.28);
}

.video-thumb__play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--azul-profundo);
}

.video-card video {
  height: min(640px, 72vh);
  object-fit: contain;
}

.video-card figcaption {
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  color: var(--cinza-texto);
  font-size: 0.95rem;
}

.video-card figcaption strong {
  color: var(--azul-escuro);
}

.video-band__copy h2,
.contact h2,
.about-copy h2,
.social-band h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.video-band__copy p,
.about-copy p,
.contact p,
.section-heading p,
.social-band p {
  color: var(--cinza-texto);
}

.video-band__copy p {
  max-width: 620px;
}

.services {
  padding: 92px 0;
  background: var(--azul-escuro);
  color: var(--branco);
}

.services__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.services__top h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
}

.services__top p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
}

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

.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.service-card__number {
  display: inline-flex;
  min-width: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--branco-gelo);
  color: var(--verde-saude);
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

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

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

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

.pain-grid article,
.process-steps article,
.faq-list details {
  border: 1px solid var(--cinza-borda);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.pain-grid article {
  min-height: 220px;
  padding: 24px;
}

.pain-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--verde-claro);
  color: var(--azul-profundo);
  font-size: 1.55rem;
  line-height: 1;
}

.pain-grid h3,
.process-steps h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.12;
}

.pain-grid p,
.process-steps p {
  margin: 0;
  color: var(--cinza-texto);
}

.process {
  padding: 92px 0;
  background: linear-gradient(180deg, var(--branco-gelo) 0%, var(--verde-claro) 100%);
}

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

.process-steps article {
  padding: 24px;
}

.process-steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--azul-profundo);
  color: var(--branco);
  font-weight: 900;
}

.about-section {
  overflow: hidden;
  padding: 92px 0;
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.94) 0%, rgba(247, 250, 248, 0.82) 52%, rgba(220, 238, 230, 0.7) 100%);
}

.about-photo {
  position: relative;
  margin: 0;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 36px;
  border-radius: 8px;
  background: var(--azul-profundo);
  z-index: 0;
}

.about-photo img {
  position: relative;
  z-index: 1;
  width: min(390px, 100%);
  height: 500px;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 8px;
  box-shadow: var(--sombra);
}

.about-kicker {
  color: var(--dourado);
}

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

.contact__grid--single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  border-left: 4px solid var(--verde-saude);
  padding: 10px 14px;
  background: var(--branco-gelo);
  color: var(--cinza-texto);
}

.contact-list strong {
  color: var(--azul-escuro);
}

.social-band {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  color: var(--branco);
  background:
    linear-gradient(90deg, rgba(11, 44, 57, 0.94) 0%, rgba(11, 44, 57, 0.78) 54%, rgba(11, 44, 57, 0.42) 100%),
    url("assets/atendimento-mesa.jpg") center center / cover no-repeat;
}

.social-band__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.social-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.faq {
  background: var(--branco-gelo);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--azul-escuro);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--verde-saude);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--cinza-texto);
}

.faq h2 span {
  color: var(--verde-saude);
}

.faq-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.site-footer {
  padding: 34px 20px 112px;
  background: var(--azul-escuro);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.site-footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.copyright {
  margin: 0;
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--branco);
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(24, 173, 85, 0.38);
  animation: whatsapp-pulse 2.7s ease-in-out infinite;
}

.floating-whatsapp img {
  width: 36px;
  height: 36px;
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 45px rgba(24, 173, 85, 0.34);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 22px 58px rgba(24, 173, 85, 0.5);
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 46px;
    background: linear-gradient(180deg, var(--branco-gelo) 0%, var(--verde-claro) 100%);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero__copy {
    max-width: none;
    text-align: center;
  }

  .hero__lead,
  .hero__note {
    margin-inline: auto;
  }

  .hero__trust-card,
  .hero__actions {
    justify-content: center;
  }

  .hero__photo {
    display: none;
  }

  .hero__facts {
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .video-band__grid,
  .contact__grid,
  .about-section__grid,
  .services__top {
    grid-template-columns: 1fr;
  }

  .video-card {
    order: 2;
  }

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

  .about-photo img {
    width: 100%;
    height: auto;
    max-height: 600px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    position: static;
  }

  .header-bar {
    min-height: 68px;
  }

  .brand__name {
    font-size: 0.95rem;
    white-space: normal;
  }

  .button--small {
    display: none;
  }

  .hero {
    padding: 34px 0 34px;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.02;
  }

  .hero__lead {
    font-size: 1.02rem;
  }

  .hero__trust-card {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero__actions .button {
    width: 100%;
  }

  /* hero__photo display: none herdado de 980px */

  .hero__facts,
  .pain-grid,
  .process-steps,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-fact {
    min-height: 92px;
  }

  .video-band,
  .services,
  .pain-section,
  .process,
  .about-section,
  .contact,
  .faq {
    padding: 64px 0;
  }

  .video-card video {
    height: min(520px, 70vh);
  }

  .service-card {
    min-height: auto;
  }

  .service-card__number {
    margin-bottom: 24px;
  }

  .about-photo::before {
    inset: 18px -10px -12px 20px;
  }

  .social-band {
    padding: 68px 0;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

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