/* -----------------------------------------------------------------
   Dra. Beatriz Costa — landing full-screen / scroll-snap
   Estética: minimal, tipografia forte, gradientes suaves
   ----------------------------------------------------------------- */

:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #1d1d1f;
  --text-muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.06);
  --accent: #0071e3;
  --accent-soft: rgba(0, 113, 227, 0.12);
  --hero-bg-0: #0a0a0b;
  --hero-bg-1: #141418;
  --highlight-0: #e8eef8;
  --highlight-1: #f0f4fc;
  --radius: 20px;
  --radius-lg: 28px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }

  .animate-on-view {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero__orb,
  .split__glow,
  .scroll-hint__line {
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Navegação */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4vw;
  background: rgba(250, 250, 250, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav__logo {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a:not(.nav__cta) {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav__links a:not(.nav__cta):hover {
  color: var(--text);
}

.nav__cta {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--text);
  color: #fff !important;
  border-radius: 999px;
  transition: transform 0.2s var(--ease-out), opacity 0.2s;
}

.nav__cta:hover {
  transform: scale(1.02);
  opacity: 0.92;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.nav.is-open .nav__toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav.is-open .nav__toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 4vw 1.5rem;
    background: rgba(250, 250, 250, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
  }

  .nav.is-open .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links li {
    border-bottom: 1px solid var(--line);
  }

  .nav__links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem !important;
  }

  .nav__cta {
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* Indicadores laterais (desktop) */
.scroll-dots {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.scroll-dots__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  transition: transform 0.3s var(--ease-spring), background 0.3s ease;
}

.scroll-dots__dot:hover {
  transform: scale(1.25);
  background: rgba(0, 0, 0, 0.35);
}

.scroll-dots__dot.is-active {
  background: var(--accent);
  transform: scale(1.35);
}

body[data-active-panel="hero"] .scroll-dots__dot {
  background: rgba(255, 255, 255, 0.25);
}

body[data-active-panel="hero"] .scroll-dots__dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

body[data-active-panel="hero"] .scroll-dots__dot.is-active {
  background: #fff;
}

@media (max-width: 900px) {
  .scroll-dots {
    display: none;
  }
}

/* Painéis full viewport */
.snap-main {
  position: relative;
}

.panel {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.5rem 4vw 4rem;
}

.panel__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

/* --- Hero --- */
.panel--hero {
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 113, 227, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    linear-gradient(165deg, var(--hero-bg-0) 0%, var(--hero-bg-1) 100%);
  color: #f5f5f7;
  padding-top: 6rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__copy {
  min-width: 0;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1.25rem;
}

.hero__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero__title-gradient {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0 0 1.25rem;
  max-width: 42ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 400;
}

.hero__bullets {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.hero__bullets li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
}

.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
  text-align: left;
}

.hero__stat-num {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero__stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s ease, background 0.2s ease;
}

.btn--primary {
  background: #fff;
  color: var(--hero-bg-0) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.btn--ghost {
  background: transparent;
  color: #fff !important;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--footer {
  margin-bottom: 1.5rem;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.hero__orb {
  position: absolute;
  width: min(340px, 70vw);
  height: min(340px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(0, 113, 227, 0.35), transparent 65%);
  filter: blur(40px);
  opacity: 0.9;
  animation: pulse-orb 8s ease-in-out infinite;
}

@keyframes pulse-orb {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.hero__img {
  position: relative;
  z-index: 1;
  width: min(200px, 42vw);
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-hint__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
  animation: line-breathe 2.5s ease-in-out infinite;
}

@keyframes line-breathe {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

/* Painéis com mais conteúdo */
.panel--rich {
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  align-items: flex-start;
  padding-top: 5.5rem;
  padding-bottom: 3.5rem;
}

/* --- Features --- */
.panel--features {
  background: var(--surface);
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-head__desc {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.section-footnote {
  margin: 2.5rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.inline-code {
  font-family: ui-monospace, "Segoe UI Mono", monospace;
  font-size: 0.85em;
  padding: 0.1em 0.35em;
  border-radius: 6px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--text);
}

.section-head__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.section-head__title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.features--6 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  padding: 1.45rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.feature-card__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.feature-card__text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Split --- */
.panel--split {
  background: linear-gradient(180deg, var(--bg) 0%, #f3f3f5 100%);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split__media {
  display: flex;
  flex-direction: column;
}

.split__frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}

.split__glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 113, 227, 0.08), transparent 55%);
  pointer-events: none;
}

.split__img {
  position: relative;
  z-index: 1;
  max-height: 72px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

.split__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.split__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.split__text {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.split__text strong {
  color: var(--text);
  font-weight: 600;
}

.split__note {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.split__note strong {
  color: var(--text);
}

.split__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.split__stat {
  padding: 0.85rem 0.75rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}

.split__stat-n {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.split__stat-t {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.split__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.split__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
  color: var(--text);
}

.split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Highlight --- */
.panel--highlight {
  background: linear-gradient(145deg, var(--highlight-0) 0%, var(--highlight-1) 50%, #e5ecf7 100%);
}

.highlight {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.highlight__quote {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--text);
}

.highlight__author {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.highlight__sub {
  margin: 1.75rem auto 0;
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* --- Depoimentos --- */
.panel--testimonials {
  background: var(--bg);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial {
  margin: 0;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.07);
}

.testimonial__stars {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #ffb800;
  margin-bottom: 1rem;
}

.testimonial__text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
}

.testimonial__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-soft), rgba(0, 113, 227, 0.06));
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial__name {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  font-style: normal;
  color: var(--text);
}

.testimonial__info {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* --- Casos --- */
.panel--cases {
  background: var(--surface);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1040px;
  margin: 0 auto;
}

.case-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.case-card__photo-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #e8eaed;
  cursor: pointer;
  position: relative;
}

.case-card__photo-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.case-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.case-card__badge {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  z-index: 1;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(10, 10, 11, 0.55);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.photo-modal[hidden] {
  display: none;
}

.photo-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 16, 0.78);
  backdrop-filter: blur(6px);
}

.photo-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 94vw;
  max-height: 90vh;
}

.photo-modal__img {
  display: block;
  max-width: min(92vw, 720px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
  background: #0f1116;
}

.photo-modal__close,
.photo-modal__nav {
  position: absolute;
  z-index: 2;
  border: none;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.photo-modal__close {
  top: -0.35rem;
  right: -0.35rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
}

.photo-modal__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  font-size: 1.6rem;
  line-height: 1;
}

.photo-modal__nav--prev {
  left: -3rem;
}

.photo-modal__nav--next {
  right: -3rem;
}

.photo-modal__close:hover,
.photo-modal__nav:hover {
  background: rgba(255, 255, 255, 0.32);
}

body.modal-open {
  overflow: hidden;
}

/* --- Footer panel --- */
.panel--footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  min-height: 100vh;
  min-height: 100dvh;
  padding: 4rem 4vw;
  scroll-snap-align: start;
  align-items: stretch;
}

.panel--footer .panel__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  width: 100%;
}

.footer {
  text-align: center;
  min-width: 0;
  width: 100%;
}

.footer__top {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.footer__brand {
  margin-bottom: 2rem;
}

.footer__intro {
  margin: 1rem auto 0;
  max-width: 520px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.footer__cols .footer__col p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer__cols .footer__col p:last-child {
  margin-bottom: 0;
}

.footer__cols a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer__cols a:hover {
  color: var(--accent);
}

.footer__name {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer__tag {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer__bottom {
  padding-top: 0.5rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
}

.footer__nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: var(--accent);
}

.footer__copy {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn--footer.btn--primary {
  background: var(--text);
  color: #fff !important;
  box-shadow: none;
}

.btn--footer.btn--primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Animações entrada */
.animate-on-view {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.animate-on-view[data-anim="fade"] {
  transform: none;
}

.animate-on-view[data-anim="fade-up"] {
  transform: translateY(32px);
}

.animate-on-view[data-anim="slide-right"] {
  transform: translateX(-40px);
}

.animate-on-view[data-anim="scale-in"] {
  transform: scale(0.96);
}

.animate-on-view.is-inview {
  opacity: 1;
  transform: none !important;
}

.animate-on-view[data-delay="1"] {
  transition-delay: 0.1s;
}

.animate-on-view[data-delay="2"] {
  transition-delay: 0.18s;
}

.animate-on-view[data-delay="3"] {
  transition-delay: 0.26s;
}

.nav.is-open {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom-color: var(--line) !important;
}

.nav.is-open .nav__logo {
  color: var(--text) !important;
}

.nav.is-open .nav__links a:not(.nav__cta) {
  color: var(--text-muted) !important;
}

.nav.is-open .nav__links a:not(.nav__cta):hover {
  color: var(--text) !important;
}

.nav.is-open .nav__cta {
  background: var(--text) !important;
  color: #fff !important;
}

.nav.is-open .nav__toggle span {
  background: var(--text) !important;
}

/* Hero nav no tema escuro */
body[data-active-panel="hero"] .nav {
  background: rgba(10, 10, 11, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body[data-active-panel="hero"] .nav__logo {
  color: #fff;
}

body[data-active-panel="hero"] .nav__links a:not(.nav__cta) {
  color: rgba(255, 255, 255, 0.65);
}

body[data-active-panel="hero"] .nav__links a:not(.nav__cta):hover {
  color: #fff;
}

body[data-active-panel="hero"] .nav__cta {
  background: #fff;
  color: var(--hero-bg-0) !important;
}

body[data-active-panel="hero"] .nav__toggle span {
  background: #fff;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__lead {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }

  .hero__bullets {
    text-align: left;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.75rem;
  }

  .hero__stat {
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
    min-height: 220px;
  }

  .features,
  .features--6 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split__stats {
    grid-template-columns: 1fr;
  }

  .split__media {
    order: -1;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__cols {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .photo-modal__nav--prev {
    left: 0.35rem;
  }

  .photo-modal__nav--next {
    right: 0.35rem;
  }
}

@media (max-width: 560px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .features--6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1400px), (max-height: 820px) {
  .panel {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hero__title {
    font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .section-head__title {
    font-size: clamp(1.5rem, 2.5vw, 2.05rem);
  }

  .section-head__desc {
    font-size: 0.96rem;
  }

  .feature-card {
    padding: 1.2rem 1rem;
  }

  .split__title {
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  }
}
