:root {
  --brand-primary: #a9a59a;
  --btn-primary: #9d6f28;
  --btn-primary-hover: #875c1c;
  --bg-main: #fdfcf7;
  --bg-soft-1: #e9e7e0;
  --bg-soft-2: #d0cec7;
  --text-main: #3d3a34;
  --text-light: #fdfcf7;
  --border-soft: #bab8b1;
  --shadow: 0 10px 30px rgba(61, 58, 52, 0.12);
  --about-accent: #a68b74;
  /* Hero: greige + marrom claro (harmonia com fundo da foto) */
  --hero-base-top: #faf7f2;
  --hero-base-mid: #efe7db;
  --hero-base-bottom: #e3d9cb;
  --hero-mist-warm: rgba(228, 218, 204, 0.88);
  --hero-mist-side: rgba(206, 196, 180, 0.48);
  --hero-shell-top: rgba(244, 237, 226, 0.94);
  --hero-shell-bottom: rgba(230, 222, 210, 0.78);
  /* Metade da altura da faixa de destaques: centro na junção hero / próxima seção */
  --hero-hl-overlap: clamp(2.85rem, 10vw, 3.85rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text-main);
  background: linear-gradient(180deg, #fdfcf7 0%, #f6f2eb 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4.2rem 0;
}

.alt-bg {
  background: var(--bg-soft-1);
}

.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(61, 58, 52, 0.08);
  width: min(1120px, 92%);
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 12px 32px rgba(61, 58, 52, 0.07);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 98px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: min(232px, 52vw);
  height: 69px;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

.main-nav ul {
  list-style: none;
  display: none;
  margin: 0;
  padding: 0;
  gap: 1.2rem;
}

.main-nav a {
  font-weight: 600;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--btn-primary);
}

.menu-toggle {
  border: 1px solid var(--border-soft);
  background: #fff;
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  font-weight: 600;
  color: var(--text-main);
}

.btn {
  display: inline-block;
  background: var(--btn-primary);
  color: var(--text-light);
  font-weight: 700;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--btn-primary-hover);
}

.btn--small {
  padding: 0.42rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(61, 58, 52, 0.1);
}

.btn-header {
  display: none;
}

.eyebrow {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(1.7rem, 2.2vw + 1rem, 2.8rem);
}

h2 {
  font-size: clamp(1.4rem, 1.6vw + 1rem, 2.1rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1rem;
}

.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 1.6rem;
}

.hero-shell {
  position: relative;
  border-radius: 34px;
  /* visible: a faixa hero-highlights atravessa a borda (margem negativa); hidden cortava o bloco */
  overflow: visible;
  box-shadow: 0 22px 55px rgba(61, 58, 52, 0.09);
}

.about {
  background: linear-gradient(180deg, #ebe9e4 0%, #e4e2dc 100%);
}

.about-grid {
  align-items: center;
}

.about-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  min-height: min(58vw, 300px);
}

.about-frame {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 10%;
  top: 8%;
  bottom: 5%;
  border: 2px solid rgba(166, 139, 116, 0.5);
  border-radius: 28px;
  pointer-events: none;
}

.about-photo-stack {
  position: relative;
  z-index: 1;
  padding: 1.25rem 0 1.5rem 8%;
}

.about-photo-main {
  display: block;
  width: 68%;
  max-width: 100%;
  margin-left: auto;
  margin-right: 0;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(61, 58, 52, 0.16);
}

.about-content {
  max-width: 520px;
}

.about-header-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: linear-gradient(135deg, #b59a86 0%, var(--about-accent) 100%);
  color: var(--text-light);
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 28px rgba(61, 42, 24, 0.14);
}

.about-header-box__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  color: inherit;
}

.about-header-box__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1.3;
}

.about-header-box__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.about-header-box__tagline {
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0.95;
}

.about-lead {
  color: #4a433b;
  margin: 0 0 1.15rem;
  font-size: 0.98rem;
}

.about-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.about-checklist li {
  position: relative;
  padding-left: 1.65rem;
  color: #4a433b;
  font-size: 0.95rem;
  line-height: 1.45;
}

.about-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--about-accent);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero figure:not(.hero__image-wrap) {
  display: flex;
  justify-content: center;
}

/* Ancora #home: alinha o hero (não o header) e respeita o cabeçalho fixo */
#home {
  scroll-margin-top: 6.5rem;
}

.hero {
  background:
    radial-gradient(circle at 14% 32%, var(--hero-mist-warm) 0%, transparent 34%),
    radial-gradient(circle at 88% 16%, var(--hero-mist-side) 0%, transparent 30%),
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(212, 198, 178, 0.35) 0%, transparent 58%),
    linear-gradient(168deg, var(--hero-base-top) 0%, var(--hero-base-mid) 52%, var(--hero-base-bottom) 100%);
}

.hero.section {
  position: relative;
  z-index: 2;
  padding-top: 2.2rem;
  padding-bottom: clamp(0.45rem, 1.2vw, 0.85rem);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  border-radius: 34px;
  background: linear-gradient(180deg, var(--hero-shell-top), var(--hero-shell-bottom));
  z-index: 0;
}

.hero .hero-grid {
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 2.2rem 1.4rem 0;
}

.hero-copy {
  max-width: calc(390px + 2cm);
  padding-top: 1rem;
  padding-left: 2cm;
}

.hero .eyebrow {
  color: #6b4f2a;
}

.hero-copy h1 {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.7rem);
  max-width: calc(11ch + 6cm);
  color: #3d2a18;
}

.hero-copy p {
  color: #5a5348;
  max-width: calc(36ch + 4cm);
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: min(52vw, 440px);
  background: transparent;
}

/* Degradê “por trás” do recorte: fundo da foto some no mesmo clima do hero */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -6% -8% -4% -8%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 92% 95% at 50% 100%,
      rgba(236, 226, 212, 0.98) 0%,
      rgba(226, 214, 198, 0.55) 36%,
      rgba(216, 202, 184, 0.22) 58%,
      transparent 76%
    ),
    radial-gradient(
      ellipse 75% 85% at 68% 72%,
      rgba(232, 222, 208, 0.65) 0%,
      transparent 62%
    );
}

.hero__image-wrap {
  display: block;
  position: absolute;
  right: 0.45cm;
  bottom: 0;
  width: min(68vw, 292px);
  max-width: 292px;
  aspect-ratio: 2 / 3;
  max-height: min(78vh, 540px);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Mesmo tom do hero: o cinza da foto funde com este “leito” (multiply) */
  background-color: var(--hero-base-mid);
  border: none;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(52, 44, 36, 0.1);
  z-index: 2;
  overflow: hidden;
  isolation: isolate;
}

.hero__image-wrap::before {
  content: none;
}

.hero__image-wrap::after {
  content: none;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  transform: translate(calc(0.35cm + 0.5cm - 1cm), 0);
  background: transparent;
  border-radius: 0;
  /* Funde o fundo cinza/claro do arquivo com o bege do site (retângulo some) */
  mix-blend-mode: multiply;
  filter: brightness(1.07) contrast(1.03) saturate(1.02);
  /* Bordas esfumaçadas: gradiente radial com vários degraus até transparente */
  -webkit-mask-image: radial-gradient(
    ellipse 148% 152% at 54% 48%,
    #000 0%,
    #000 22%,
    rgba(0, 0, 0, 0.98) 36%,
    rgba(0, 0, 0, 0.88) 48%,
    rgba(0, 0, 0, 0.68) 62%,
    rgba(0, 0, 0, 0.42) 76%,
    rgba(0, 0, 0, 0.2) 88%,
    rgba(0, 0, 0, 0.06) 95%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 148% 152% at 54% 48%,
    #000 0%,
    #000 22%,
    rgba(0, 0, 0, 0.98) 36%,
    rgba(0, 0, 0, 0.88) 48%,
    rgba(0, 0, 0, 0.68) 62%,
    rgba(0, 0, 0, 0.42) 76%,
    rgba(0, 0, 0, 0.2) 88%,
    rgba(0, 0, 0, 0.06) 95%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.hero-shape {
  display: none;
}

.hero-panel {
  display: none;
  position: absolute;
  z-index: 1;
  width: min(42vw, 210px);
  max-height: min(58vh, 360px);
  aspect-ratio: 2 / 3;
  border-radius: 24px;
  background-color: rgba(218, 208, 194, 0.32);
  background-image: url("img/dra-renata.png");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.34;
  filter: blur(10px) saturate(0.88);
  pointer-events: none;
  box-shadow: none;
  mix-blend-mode: multiply;
}

.hero-panel-left {
  left: 4%;
  bottom: 0;
  transform: translateX(-8%) rotate(-2.5deg);
  background-position: 18% 22%;
}

.hero-panel-right {
  right: 2%;
  bottom: 6%;
  transform: translateX(12%) rotate(2deg);
  background-position: 78% 18%;
  opacity: 0.2;
}

.hero-highlights {
  position: relative;
  z-index: 5;
  width: min(1120px, 92%);
  margin: clamp(2.85rem, 6vw, 4rem) auto calc(-1 * var(--hero-hl-overlap));
  transform: translateY(-0.35rem);
  padding: 1.1rem 1.35rem;
  min-height: auto;
  display: grid;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 252, 248, 0.97);
  border: 1px solid rgba(176, 162, 142, 0.42);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(52, 44, 36, 0.06);
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #524a40;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-highlight-item strong {
  color: #453d34;
  font-size: 0.98rem;
  font-weight: 700;
}

.hero-highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(222, 214, 200, 0.88);
  color: var(--btn-primary);
  border: 1px solid rgba(184, 172, 154, 0.65);
}

@media (max-width: 759px) {
  .hero .hero-grid {
    grid-template-columns: 1fr;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .hero-copy {
    order: 1;
    padding-left: 0;
    padding-right: 0;
    margin-inline: auto;
    max-width: min(100%, 26rem);
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-copy h1,
  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .hero-copy .btn {
    align-self: center;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    min-height: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0.25rem;
  }

  .hero__image-wrap {
    position: relative;
    right: auto;
    bottom: auto;
    margin-inline: auto;
    width: min(78vw, 300px);
    max-width: 300px;
    max-height: min(58vh, 440px);
  }

  .hero__image-wrap img {
    transform: translate(calc(0.5cm - 1cm), 0);
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    justify-items: start;
    width: min(100%, 22rem);
    margin-left: 0;
    margin-right: auto;
    padding: 1.25rem 1.25rem;
    min-height: auto;
    border-radius: 22px;
  }

  .hero-highlight-item {
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }
}

.servicos-showcase {
  background: var(--bg-soft-1);
}

.servicos-showcase.section {
  position: relative;
  z-index: 1;
  padding-top: calc(2.5rem + var(--hero-hl-overlap));
  padding-bottom: 2.75rem;
}

.servicos-showcase__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.35rem;
}

.servicos-showcase__title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: #3d2a18;
  font-size: clamp(1.2rem, 1.6vw + 0.85rem, 1.75rem);
  margin: 0;
  line-height: 1.22;
}

.servico-bloco {
  display: grid;
  gap: 1.35rem;
  align-items: center;
  margin-bottom: 2rem;
}

.servico-bloco:last-child {
  margin-bottom: 0;
}

.servico-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  background: linear-gradient(135deg, #c9a575 0%, #a67c4a 100%);
  color: var(--text-light);
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.85rem;
  box-shadow: 0 6px 20px rgba(61, 42, 24, 0.12);
}

.servico-badge__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  color: inherit;
}

.servico-badge__text {
  flex: 1;
}

.servico-bloco__lead {
  color: #5a5044;
  margin-bottom: 0.75rem;
  font-size: 0.94rem;
}

.servico-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.servico-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #5a5044;
  font-size: 0.95rem;
}

.servico-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--btn-primary);
}

.servico-bloco__cta {
  margin: 0.75rem 0 0;
}

.servico-bloco__visual {
  background: #fff;
  border-radius: 14px;
  padding: 0.2rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 28px rgba(61, 58, 52, 0.08);
  width: 100%;
  max-width: 76%;
  margin-left: auto;
  margin-right: auto;
}

.servico-bloco__figure {
  margin: 0;
  line-height: 0;
  border-radius: 11px;
  overflow: hidden;
  width: 100%;
  height: 300px;
  display: block;
  background: #f0ede8;
}

.servico-bloco__img-single {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 11px;
}

.services {
  position: relative;
  background-color: #ebe9e4;
  background-image:
    linear-gradient(
      180deg,
      rgba(253, 252, 247, 0.82) 0%,
      rgba(252, 249, 242, 0.76) 45%,
      rgba(245, 241, 232, 0.88) 100%
    ),
    url("img/consultorio.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(186, 184, 177, 0.35);
  overflow: hidden;
}

.services h2 {
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
  color: #3d2a18;
  font-size: clamp(1.25rem, 1.5vw + 0.9rem, 1.85rem);
  font-weight: 700;
  margin-bottom: 1.75rem;
  line-height: 1.22;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.services .container {
  position: relative;
  padding: 2.35rem 0 2.6rem;
}

.services .card h3 {
  color: #4a433b;
  font-size: 1.05rem;
}

.services .card p {
  color: #5a5044;
  font-size: 0.94rem;
  margin-bottom: 0;
}

.services-main,
.services-extra {
  display: grid;
  gap: 1.2rem;
}

.services-extra {
  margin-top: 1.2rem;
}

.card {
  background: rgba(253, 252, 247, 0.38);
  padding: 1.35rem 1.45rem;
  border-radius: 20px;
  border: 1px solid rgba(157, 111, 40, 0.28);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  box-shadow: 0 10px 28px rgba(61, 58, 52, 0.05);
  transition:
    background-color 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    backdrop-filter 0.32s ease,
    -webkit-backdrop-filter 0.32s ease;
}

.card:hover {
  background: #fdfcf7;
  border-color: rgba(157, 111, 40, 0.62);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  box-shadow: 0 18px 42px rgba(61, 58, 52, 0.12);
}

.card-featured {
  border-color: rgba(157, 111, 40, 0.38);
  box-shadow: 0 10px 28px rgba(61, 58, 52, 0.06);
}

.card-featured:hover {
  border-color: rgba(157, 111, 40, 0.72);
}

.contact {
  background: var(--bg-soft-1);
  border-top: 1px solid rgba(186, 184, 177, 0.35);
}

.contact h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: #3d2a18;
  font-size: clamp(1.25rem, 1.5vw + 0.9rem, 1.85rem);
  font-weight: 700;
  line-height: 1.22;
}

.contact address {
  font-style: normal;
  margin-bottom: 1rem;
  color: #5a5044;
  line-height: 1.55;
}

.contact-grid > div {
  background: rgba(253, 252, 247, 0.88);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 1.75rem 1.6rem;
  box-shadow: 0 14px 35px rgba(61, 58, 52, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 560px;
  margin: 0 auto;
}

.contact-grid > div p,
.contact-grid > div address {
  color: #5a5044;
}

.contact-grid > div p a {
  color: var(--btn-primary);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-grid > div p a:hover {
  color: var(--btn-primary-hover);
  border-bottom-color: rgba(157, 111, 40, 0.45);
}

.site-footer {
  background: linear-gradient(180deg, #4a3d34 0%, #3a3029 100%);
  color: #f5f2eb;
  padding: 2.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer a {
  color: #e8d5c4;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}

/* Coluna 1: logo em cima, textos embaixo; colunas 2 e 3: links e redes ao lado (em telas largas) */
.footer-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
}

.footer-about__text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0;
  max-width: 22rem;
}

.footer-about__text .footer-title {
  margin-bottom: 0;
}

.footer-about__text .footer-cro {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: rgba(245, 242, 235, 0.78);
}

.footer-col--links .footer-title,
.footer-col--social .footer-title {
  margin-bottom: 0.5rem;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0;
}

.footer-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.75rem;
  padding-bottom: 1rem;
}

.footer-brand--footer-center {
  display: block;
  text-align: center;
}

.footer-brand img {
  width: min(280px, 88vw);
  height: 84px;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0.98;
}

.footer-brand:hover img {
  opacity: 1;
}

.footer-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fdfcf7;
  margin-bottom: 0.45rem;
}

.site-footer p {
  color: rgba(245, 242, 235, 0.88);
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-credits {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(245, 242, 235, 0.65);
}

.footer-credits p {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.footer-credits a {
  color: #e8d5c4;
  font-weight: 600;
}

.footer-credits a:hover {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 1200;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.whatsapp-float svg path {
  fill: #fff;
}

body.menu-open .main-nav ul {
  display: grid;
  position: absolute;
  top: 102px;
  left: 0;
  width: 100%;
  background: var(--bg-main);
  padding: 1rem 4%;
  border-bottom: 1px solid var(--border-soft);
}

@media (min-width: 760px) {
  :root {
    --hero-hl-overlap: clamp(4rem, 10vw, 5.5rem);
  }

  .menu-toggle {
    display: none;
  }

  .main-nav ul {
    display: flex;
  }

  .btn-header {
    display: inline-block;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1.08fr 1fr;
    align-items: center;
  }

  .servico-bloco {
    grid-template-columns: 1.05fr 1fr;
    gap: 1.5rem;
  }

  .servico-bloco__visual {
    max-width: 72%;
  }

  .servico-bloco__figure {
    height: 350px;
  }

  .hero__image-wrap {
    width: min(34vw, 340px);
    max-width: 340px;
    aspect-ratio: 2 / 3;
    max-height: min(82vh, 580px);
    right: 0.85cm;
  }

  .hero .hero-grid {
    padding: 2.8rem 2.5rem 0;
  }

  .hero-highlights {
    grid-template-columns: repeat(4, 1fr);
    margin: clamp(3rem, 5.5vw, 4.25rem) auto calc(-1 * var(--hero-hl-overlap));
    padding: 1.2rem 2.25rem;
    gap: 1.15rem;
  }

  .hero-visual {
    min-height: min(50vw, 480px);
  }

  .hero-visual::before {
    inset: -4% -6% -6% -4%;
    background:
      radial-gradient(
        ellipse 108% 96% at 84% 92%,
        rgba(238, 228, 214, 0.99) 0%,
        rgba(224, 212, 196, 0.52) 38%,
        rgba(210, 198, 180, 0.2) 62%,
        transparent 80%
      ),
      radial-gradient(
        ellipse 72% 88% at 72% 58%,
        rgba(230, 220, 206, 0.55) 0%,
        transparent 60%
      ),
      radial-gradient(
        ellipse 50% 60% at 92% 78%,
        rgba(220, 208, 192, 0.35) 0%,
        transparent 55%
      );
  }

  .hero-panel {
    display: block;
  }

  .hero-shape {
    width: 320px;
    height: 360px;
    left: 36px;
    top: 6px;
  }

  .hero-panel-left {
    left: 10%;
    bottom: 0;
    width: min(36vw, 220px);
    max-height: min(62vh, 400px);
    transform: translateX(-18%) rotate(-2.5deg);
    background-position: 16% 20%;
  }

  .hero-panel-right {
    right: 6%;
    bottom: 10%;
    width: min(34vw, 200px);
    max-height: min(56vh, 380px);
    transform: translateX(8%) rotate(2deg);
    background-position: 76% 16%;
  }

  .services-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-extra {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(260px, 1.5fr) minmax(140px, 1fr) minmax(140px, 1fr);
    gap: 2rem 2.5rem;
  }

  .footer-col--links,
  .footer-col--social {
    padding-top: 0.15rem;
  }
}
