/* Dra. Fernanda Boury — landing (referência visual: template odontológico limpo) */

:root {
  /* Base */
  --color-bg: #f7f7fb;
  --color-bg-white: #ffffff;

  /* Brand principal (do logo) */
  --color-primary: #2ec4b6; /* teal claro */
  --color-primary-dark: #24a89c;

  --color-secondary: #c77dff; /* lilás */
  --color-secondary-soft: #e4cfff;

  /* Accent lúdico */
  --color-accent-pink: #ff5da2;
  --color-accent-yellow: #ffe066;

  /* Texto */
  --color-text: #2f3e46;
  --color-muted: #6b7c86;

  /* Botão principal (CTA) */
  --color-cta: #ff5da2;
  --color-cta-hover: #e14c8f;

  /* Bordas e UI */
  --color-border: #e6ecf0;

  /* Footer (suavizado, menos pesado) */
  --color-footer: #2f3e46;
  --color-footer-label: #ffe066;

  /* Compat (tokens antigos usados no CSS atual) */
  --color-navy: var(--color-footer);
  --color-navy-soft: color-mix(in srgb, var(--color-footer) 82%, #ffffff);
  --color-teal: var(--color-primary);
  --color-teal-dark: var(--color-primary-dark);
  --color-terracotta: var(--color-cta);
  --color-terracotta-hover: var(--color-cta-hover);
  --color-accent-warm: var(--color-accent-yellow);

  /* Tipografia e layout */
  --font: "Manrope", system-ui, sans-serif;
  --radius: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 8px 32px rgba(47, 62, 70, 0.08);

  --header-h: 72px;
  --topbar-h: 40px;
}

@media (max-width: 767px) {
  :root {
    --header-h: 60px;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand__icon {
    width: 48px;
    height: 48px;
  }

  .brand__icon-img {
    width: 48px;
    height: 48px;
  }

  .brand__name {
    font-size: 0.95rem;
    line-height: 1.15;
  }

  .brand__tag {
    display: none;
  }

  .site-header__actions {
    gap: 0.5rem;
  }

  .site-header__actions .btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: var(--color-teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-navy);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-navy);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Topbar */
.topbar {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  align-items: center;
  min-height: var(--topbar-h);
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  text-align: center;
}

@media (min-width: 900px) {
  .topbar__inner {
    justify-content: space-between;
    text-align: left;
  }
}

.topbar__link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.topbar__link:hover {
  text-decoration: underline;
  color: #fff;
}

.topbar__item--address {
  opacity: 0.9;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg-white);
  box-shadow: 0 1px 0 rgba(26, 43, 60, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-navy);
}

.brand:hover {
  color: var(--color-navy);
}

.brand__icon {
  color: var(--color-teal);
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand__icon-img {
  width: 72px;
  height: 72px;
  display: block;
}

.icon-brand {
  width: 32px;
  height: 32px;
  stroke-width: 1.8;
  color: var(--color-teal);
  display: block;
}

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

.brand__name {
  font-weight: 700;
  font-size: 1.05rem;
}

.brand__tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-muted);
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: block;
  }
}

.nav-desktop__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop__list a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy-soft);
  text-decoration: none;
}

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

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(26, 43, 60, 0.06);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle__bar {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--color-navy);
  margin: 0 auto;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--color-bg-white);
  border-top: 1px solid rgba(26, 43, 60, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 1rem 0;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0 1.25rem;
}

.mobile-menu__list a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 43, 60, 0.06);
}

.mobile-menu__list li:last-child a {
  border-bottom: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--color-terracotta);
  color: #fff;
  text-decoration: none;
}

.btn--primary:hover {
  background: var(--color-terracotta-hover);
  color: #fff;
}

.btn--secondary {
  background: var(--color-teal);
  color: #fff;
  text-decoration: none;
}

.btn--secondary:hover {
  background: var(--color-teal-dark);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video,
.hero__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  .hero__video,
  .hero__bg {
    object-position: 80% center;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 25, 35, 0.86) 0%, rgba(15, 25, 35, 0.52) 55%, rgba(15, 25, 35, 0.4) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: min(46rem, 100%);
}

.hero__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .hero__intro {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.hero__portrait {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

@media (min-width: 560px) {
  .hero__portrait {
    width: 112px;
    height: 112px;
  }
}

.hero__copy {
  flex: 1;
  min-width: 0;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.95;
  margin: 0 0 0.75rem;
}

.hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero__subtitle {
  margin: 0 0 1rem;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: rgba(200, 230, 225, 0.95);
}

.hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.95;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.hero__badges li {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Secções abaixo do hero: fade-up ao entrar na viewport */
.scroll-reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--cards {
  background: #f4f3ee;
}

.section__title {
  text-align: center;
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-navy);
}

.section__title--left {
  text-align: left;
}

.section__intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  color: var(--color-muted);
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}

/* Entrada em grelha (classe .is-revealed aplicada por JS na secção #tratamentos) */
@keyframes cards-card-in {
  from {
    opacity: 0;
    transform: translateY(1.1rem) scale(0.985);
  }

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

.cards-grid--reveal.is-revealed .card {
  animation: cards-card-in 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cards-grid--reveal.is-revealed .card:nth-child(1) {
  animation-delay: 0.04s;
}

.cards-grid--reveal.is-revealed .card:nth-child(2) {
  animation-delay: 0.12s;
}

.cards-grid--reveal.is-revealed .card:nth-child(3) {
  animation-delay: 0.2s;
}

.cards-grid--reveal.is-revealed .card:nth-child(4) {
  animation-delay: 0.28s;
}

@media (prefers-reduced-motion: reduce) {
  .cards-grid--reveal.is-revealed .card {
    animation: none;
  }
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  position: relative;
  background: var(--color-bg-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  transition:
    box-shadow 0.28s ease-in-out,
    transform 0.28s ease-in-out;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #fff0d8 0%, #fde2b2 45%, #ffd591 100%);
  opacity: 0;
  transition: opacity 0.28s ease-in-out;
  z-index: 0;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card:hover,
.card:focus-within {
  box-shadow: 0 14px 40px rgba(26, 43, 60, 0.12);
  transform: translateY(-3px);
}

.card:hover::before,
.card:focus-within::before {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .card {
    transition: box-shadow 0.2s ease-in-out;
  }

  .card::before {
    transition: opacity 0.2s ease-in-out;
  }

  .card:hover,
  .card:focus-within {
    transform: none;
  }
}

.card__image {
  width: calc(100% + 3rem);
  height: 124px;
  max-width: none;
  margin: -1.5rem -1.5rem 0.25rem;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
  object-position: center;
}

.card__image--top {
  object-position: top;
}

@media (min-width: 1024px) {
  .card__image {
    height: 132px;
  }
}

.card__icon {
  color: var(--color-teal);
}

.icon {
  width: 32px;
  height: 32px;
  stroke-width: 1.8;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.icon-small {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  color: var(--color-teal);
  flex-shrink: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-item span {
  min-width: 0;
}

.card__title {
  margin: 0;
  font-size: 1.15rem;
  color: var(--color-navy);
}

.card__text {
  margin: 0;
  flex-grow: 1;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-navy);
  text-decoration: none;
}

.card__link:hover {
  color: var(--color-terracotta);
}

.card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  font-size: 0.85rem;
}

/* About */
.section--about {
  background: var(--color-bg);
}

.about {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
    align-items: center;
  }
}

.about__visual {
  order: 2;
}

.about__copy {
  order: 1;
}

@media (min-width: 900px) {
  .about__visual {
    order: 1;
  }

  .about__copy {
    order: 2;
  }
}

.about__figure {
  margin: 0;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .about__figure {
    margin-left: 0;
    margin-right: 0;
  }
}

.about__profile {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-soft);
}

.about__caption {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-top: 0.85rem;
  line-height: 1.45;
  text-align: center;
}

@media (min-width: 900px) {
  .about__caption {
    text-align: left;
  }
}

.about__highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-teal-dark);
  margin: 0 0 1rem;
}

.about__checks {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 520px) {
  .about__checks {
    grid-template-columns: 1fr 1fr;
  }
}

.about__checks li {
  position: relative;
  padding: 0.75rem 0.85rem;
  background: #f0eeea;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy-soft);
  transition:
    background 0.22s ease-in-out,
    box-shadow 0.22s ease-in-out,
    transform 0.22s ease-in-out;
}

.about__checks li:hover,
.about__checks li:focus-within {
  background: var(--color-bg);
  box-shadow: 0 14px 34px rgba(26, 43, 60, 0.1);
  transform: translateY(-2px);
}

/* Service list */
.section--list {
  background: var(--color-bg-white);
}

.service-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-list__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1rem;
  border-radius: var(--radius);
  border-bottom: none;
  transition:
    background 0.28s ease,
    padding-left 0.28s ease,
    padding-right 0.28s ease,
    box-shadow 0.28s ease;
}

.service-list__item:hover,
.service-list__item:focus-within {
  background: var(--color-bg);
  padding-left: 1.65rem;
  padding-right: 1.65rem;
  box-shadow: var(--shadow-soft);
}

@media (prefers-reduced-motion: reduce) {
  .service-list__item {
    transition: none;
  }
}

.service-list__num {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-muted);
  line-height: 1.2;
}

.service-list__title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: var(--color-navy);
}

.service-list__body p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.service-list__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  flex-shrink: 0;
}

.service-list__action:hover {
  background: var(--color-teal);
  color: #fff;
}

/* Steps */
.section--steps {
  background: #f4f3ee;
}

.steps-layout {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .steps-layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.95fr);
    gap: 2rem;
  }
}

.steps-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.steps-layout .steps-grid {
  margin-top: 0;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-layout .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.steps-grid__item {
  background: var(--color-bg-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition:
    background 0.22s ease-in-out,
    box-shadow 0.22s ease-in-out,
    transform 0.22s ease-in-out;
}

.steps-grid__item:hover,
.steps-grid__item:focus-within {
  background: var(--color-bg);
  box-shadow: 0 16px 44px rgba(26, 43, 60, 0.12);
  transform: translateY(-3px);
}

/* Entrada ao rolar até a secção (classe .is-revealed aplicada por JS) */
@keyframes steps-card-in {
  from {
    opacity: 0;
    transform: translateY(1.35rem) scale(0.97);
  }

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

.steps-grid--reveal.is-revealed .steps-grid__item {
  animation: steps-card-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.steps-grid--reveal.is-revealed .steps-grid__item:nth-child(1) {
  animation-delay: 0.05s;
}

.steps-grid--reveal.is-revealed .steps-grid__item:nth-child(2) {
  animation-delay: 0.14s;
}

.steps-grid--reveal.is-revealed .steps-grid__item:nth-child(3) {
  animation-delay: 0.23s;
}

.steps-grid--reveal.is-revealed .steps-grid__item:nth-child(4) {
  animation-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  .steps-grid--reveal.is-revealed .steps-grid__item {
    animation: none;
  }

  .about__checks li,
  .steps-grid__item {
    transition: none;
  }

  .about__checks li:hover,
  .about__checks li:focus-within,
  .steps-grid__item:hover,
  .steps-grid__item:focus-within {
    transform: none;
  }
}

.steps-grid__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-teal);
  margin-bottom: 0.5rem;
}

.steps-grid__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.steps-grid__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.steps-layout__figure {
  margin: 0;
  min-height: 260px;
}

.steps-layout__image {
  width: 100%;
  height: 100%;
  max-height: 420px;
  min-height: 260px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 480px) {
  .steps-layout__image {
    min-height: 220px;
    max-height: 280px;
  }
}

/* Testimonials placeholder */
.section--testimonials {
  background: var(--color-bg-white);
}

.testimonial-placeholder {
  max-width: 640px;
  margin: 2rem auto 0;
  padding: 2rem;
  background: #faf8f4;
  border-radius: var(--radius);
  border: 1px dashed rgba(26, 43, 60, 0.15);
  text-align: center;
  color: var(--color-muted);
}

.testimonial-placeholder p {
  margin: 0;
}

.testimonial-placeholder__note {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.92;
}

/* Credibility */
.section--credibility {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 55%, #eef6f5 100%);
}

.credibility {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.credibility p {
  margin: 0.75rem auto 1.5rem;
  color: var(--color-muted);
  max-width: 60ch;
}

/* Appointment */
.section--appointment {
  background: linear-gradient(180deg, #eef6f5 0%, #e3eceb 100%);
}

.appointment {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .appointment {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.appointment__intro p {
  color: var(--color-muted);
  margin: 0 0 1.5rem;
}

.appointment__form-wrap {
  background: var(--color-bg-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.form-caption {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 520px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(26, 43, 60, 0.15);
  border-radius: 8px;
  background: #fff;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 1px;
}

/* Products */
.section--products {
  position: relative;
  overflow: hidden;
  /* TODO: Replace with optimized final image if needed (webp, compressed) */
  background-image: url("../images/products.webp?v=88aeca52f9");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  padding-bottom: 5rem;
}

.section--products::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(249, 248, 243, 0.2);
  pointer-events: none;
}

.section--products > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .section--products::before {
    background: rgba(249, 248, 243, 0.2);
  }
}

.products-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 16px 46px rgba(26, 43, 60, 0.14);
  text-align: center;
}

.products-card__title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: var(--color-teal-dark);
}

.products-card__text {
  margin: 0 0 1.5rem;
  color: var(--color-muted);
}

/* Footer */
.site-footer {
  background: var(--color-footer);
  color: rgba(255, 255, 255, 0.88);
  padding-top: 3rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  color: #fff;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  }
}

.site-footer__name {
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: #fff;
}

.site-footer__brand p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.site-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.site-footer__brand-text {
  min-width: 0;
}

.site-footer__logo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  margin-bottom: 0;
}

.site-footer__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-footer-label);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.site-footer__contact p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__nav a {
  display: inline-block;
  padding: 0.25rem 0;
  font-size: 0.9rem;
}

.site-footer__social-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__social-list a {
  display: inline-block;
  padding: 0.25rem 0;
  font-size: 0.9rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}

.site-footer__bottom-inner {
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.8125rem;
  opacity: 0.85;
}

/* Back to top */
.back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-navy);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.back-top:hover {
  transform: translateY(-2px);
}

.back-top:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
}
