/* ============================================================
   MOVE VOZ — Style Sheet
   "Presença em Movimento"
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors — Light Mode */
  --color-bg:           #F5F0EB;
  --color-surface:      #FDFAF7;
  --color-surface-2:    #EDE8E0;
  --color-primary:      #243D28;
  --color-primary-dark: #142816;
  --color-primary-light:#3A6B40;
  --color-accent:       #C47B3A;
  --color-accent-light: #F0D5B0;
  --color-deep:         #0C1A0E;
  --color-text:         #1A1E1B;
  --color-muted:        #5F6B62;
  --color-border:       #DDD8D0;
  --color-white:        #FFFFFF;

  /* Semantic Overlays */
  --overlay-light: rgba(245, 240, 235, 0.85);
  --overlay-dark:  rgba(12, 26, 14, 0.7);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --font-script:  'Pinyon Script', cursive;

  /* Spacing */
  --nav-h: 72px;
  --section-py: clamp(64px, 8vw, 120px);

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --radius-full: 999px;

  /* Transitions */
  --transition-fast: 160ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 560ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(12, 26, 14, 0.08), 0 1px 2px rgba(12, 26, 14, 0.04);
  --shadow-md: 0 4px 16px rgba(12, 26, 14, 0.10), 0 2px 6px rgba(12, 26, 14, 0.05);
  --shadow-lg: 0 12px 40px rgba(12, 26, 14, 0.14), 0 4px 12px rgba(12, 26, 14, 0.06);
  --shadow-xl: 0 24px 64px rgba(12, 26, 14, 0.18);
}

/* Dark Mode */
[data-theme="dark"] {
  --color-bg:           #242524;
  --color-surface:      #2D2F2D;
  --color-surface-2:    #343634;
  --color-primary:      #589660;
  --color-primary-dark: #3A7A48;
  --color-primary-light:#82B48A;
  --color-accent:       #D4924A;
  --color-accent-light: #4A2E0E;
  --color-deep:         #121A14;
  --color-text:         #EEEEED;
  --color-muted:        #B8C4B8;
  --color-border:       #343634;
  --color-white:        #FFFFFF;

  --overlay-light: rgba(22, 30, 22, 0.92);
  --overlay-dark:  rgba(0, 0, 0, 0.70);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.30);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.36);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.46);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.55);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 21px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: background-color var(--transition-base), color var(--transition-base);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-text);
}

/* ============================================================
   3. UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.container--wide {
  max-width: 1400px;
}

@media (min-width: 1024px) {
  .nowrap-lg { white-space: nowrap; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 520ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 60ms; }
.reveal-delay-2 { transition-delay: 120ms; }
.reveal-delay-3 { transition-delay: 180ms; }
.reveal-delay-4 { transition-delay: 240ms; }
.reveal-delay-5 { transition-delay: 300ms; }

/* ============================================================
   4. KEYFRAMES
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes wave-pulse {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

@keyframes draw-line {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}

/* ============================================================
   5. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition-base),
              box-shadow var(--transition-base),
              backdrop-filter var(--transition-base);
}

.navbar.scrolled {
  background: rgba(245, 240, 235, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border), var(--shadow-sm);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(22, 30, 22, 0.94);
}

/* Index — navbar com gradiente azul escuro (apenas no topo, antes de rolar) */
body:not(.has-dark-hero) .navbar:not(.scrolled) {
  background: linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), var(--shadow-sm);
}

[data-theme="dark"] body:not(.has-dark-hero) .navbar:not(.scrolled) {
  background: linear-gradient(160deg, #142816 0%, #243D28 60%, #1A3820 100%);
}

/* Index — navbar gradiente escuro: texto branco */
body:not(.has-dark-hero) .navbar:not(.scrolled) .navbar__link {
  color: rgba(255,255,255,0.88);
}
body:not(.has-dark-hero) .navbar:not(.scrolled) .navbar__link:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.10);
}
body:not(.has-dark-hero) .navbar:not(.scrolled) .navbar__link.active {
  color: var(--color-white);
}
body:not(.has-dark-hero) .navbar:not(.scrolled) .navbar__logo-name {
  color: var(--color-white);
}
body:not(.has-dark-hero) .navbar:not(.scrolled) .navbar__logo-tagline {
  color: rgba(255,255,255,0.55);
}
body:not(.has-dark-hero) .navbar:not(.scrolled) .navbar__logo:hover .navbar__logo-name {
  color: var(--color-accent-light);
}

/* Navbar em páginas com hero escuro — texto branco quando no topo */
.has-dark-hero .navbar:not(.scrolled) .navbar__link {
  color: rgba(255,255,255,0.88);
}

.has-dark-hero .navbar:not(.scrolled) .navbar__link:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.10);
}

.has-dark-hero .navbar:not(.scrolled) .navbar__link.active {
  color: var(--color-white);
}

.has-dark-hero .navbar:not(.scrolled) .navbar__logo-name {
  color: var(--color-white);
}

.has-dark-hero .navbar:not(.scrolled) .navbar__logo-tagline {
  color: rgba(255,255,255,0.55);
}

.has-dark-hero .navbar:not(.scrolled) .navbar__logo:hover .navbar__logo-name {
  color: var(--color-accent-light);
}

.has-dark-hero .navbar:not(.scrolled) .theme-toggle,
body:not(.has-dark-hero) .navbar:not(.scrolled) .theme-toggle {
  color: rgba(255,255,255,0.75);
}

.has-dark-hero .navbar:not(.scrolled) .navbar__hamburger span {
  background: rgba(255,255,255,0.9);
}

.has-dark-hero .navbar:not(.scrolled) .navbar__dropdown-trigger svg {
  stroke: rgba(255,255,255,0.7);
}

/* Dropdown menu keeps light bg always */
.navbar__dropdown-menu {
  background: var(--color-surface);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.navbar__logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  transition: color var(--transition-fast);
}

.navbar__logo-tagline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navbar__logo:hover .navbar__logo-name {
  color: var(--color-accent);
}

/* Menu */
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.navbar__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast),
              background var(--transition-fast);
}

.navbar__link:hover {
  color: var(--color-primary);
  background: rgba(36, 61, 40, 0.07);
}

.navbar__link.active {
  color: var(--color-primary);
}

/* Dropdown */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-trigger {
  cursor: pointer;
  user-select: none;
}

.navbar__dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.navbar__dropdown.open .navbar__dropdown-trigger svg {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--transition-fast),
              visibility var(--transition-fast),
              transform var(--transition-fast);
  pointer-events: none;
}

.navbar__dropdown.open .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.navbar__dropdown-item:hover {
  background: rgba(36, 61, 40, 0.06);
  color: var(--color-primary);
}

.navbar__dropdown-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-accent);
}

/* Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  color: var(--color-muted);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.theme-toggle:hover {
  color: var(--color-primary);
  background: rgba(36, 61, 40, 0.07);
}

.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast),
              color var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(36, 61, 40, 0.3);
}

.btn--primary:hover {
  background: var(--color-primary-light);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(196, 123, 58, 0.3);
}

.btn--accent:hover {
  background: #A8662A;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 123, 58, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn svg { width: 18px; height: 18px; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.navbar__hamburger:hover { background: rgba(36, 61, 40, 0.07); }

.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast), width var(--transition-fast);
}

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--color-bg);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "content visual"
    "stats   visual";
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding-block: clamp(48px, 8vw, 96px);
}

/* Left: Text */
.hero__content {
  position: relative;
  z-index: 2;
  grid-area: content;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: float 2.5s ease-in-out infinite;
}

.hero__tagline {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--color-muted);
  margin-bottom: 8px;
  line-height: 1.4;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--color-primary);
}

.hero__title strong {
  font-weight: 700;
  color: var(--color-accent);
}

.hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 480px;
  margin-bottom: 36px;
  text-align: justify;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(36, 61, 40, 0.08);
  border: 1px solid rgba(36, 61, 40, 0.15);
  border-radius: var(--radius-full);
}

.hero__badge svg { width: 14px; height: 14px; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Right: Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: start;
  grid-area: visual;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 750px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* SVG wave art behind image */
.hero__wave-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__wave-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  margin-right:-100px;
}

.hero__wave-accent {
  position: absolute;
  left: -8%;
  bottom: 10%;
  width: 30%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  margin-left:-100px;
}

@media (max-width: 768px) {
  .hero__wave-bg {
    right: 0;
    top: 8%;
    transform: none;
    width: 85%;
    opacity: 0.05;
  }

  .hero__wave-accent {
    left: 0;
    bottom: 4%;
    width: 42%;
    margin-left: 0;
    opacity: 0.1;
  }
}

/* Stats row */
.hero__stats {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  grid-area: stats;
}

.hero__stat {
  flex: 1;
}

.hero__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}

.hero__stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* ============================================================
   7. SERVICES SECTION
   ============================================================ */
.services {
  position: relative;
  background: linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, #2A5030 100%);
  padding-block: var(--section-py);
  overflow: hidden;
}

.services__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
  position: relative;
  z-index: 2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-title--light {
  color: var(--color-white);
}

.section-desc {
  margin-top: 16px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-muted);
  margin-inline: auto;
  text-align: center;
}

.section-desc--light {
  color: rgba(255,255,255,0.72);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  position: relative;
  z-index: 2;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  transition: background var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
}

.service-card:has(a):hover,
.service-card--linked:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(196, 123, 58, 0.18);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.service-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.service-card__desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  flex: 1;
  text-align: justify;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.service-card__modality {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-accent-light);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card__link:hover {
  gap: 10px;
  color: var(--color-white);
}

.service-card__link svg { width: 16px; height: 16px; }

/* SVG wave arts for services section */
.services__wave-left,
.services__wave-right {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
}

.services__wave-left  { left: -4%; top: 50%; transform: translateY(-50%); width: 20%; }
.services__wave-right { right: -4%; top: 50%; transform: translateY(-50%); width: 20%; }

/* ============================================================
   8. SOBRE PREVIEW SECTION
   ============================================================ */
.sobre-preview {
  padding-block: var(--section-py);
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.sobre-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.sobre-preview__image-col {
  position: relative;
}

.sobre-preview__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.sobre-preview__image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}

.sobre-preview__image-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 180px;
}

.sobre-preview__image-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}

.sobre-preview__image-badge span {
  display: block;
  font-size: 0.78rem;
  margin-top: 4px;
  opacity: 0.9;
  line-height: 1.3;
}

.sobre-preview__content {}

.sobre-preview__quote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-style: italic;
  color: var(--color-primary);
  border-left: 3px solid var(--color-accent);
  padding-left: 20px;
  margin-top: 28px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.sobre-preview__text {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 16px;
  text-align: justify;
}

.sobre-preview__text + .sobre-preview__text {
  margin-bottom: 32px;
}

/* SVG Art decoration */
.sobre-preview__wave-art {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  opacity: 0.06;
  pointer-events: none;
}

/* ============================================================
   9. TEAM SECTION
   ============================================================ */
.team {
  padding-block: var(--section-py);
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.team__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.team .container {
  max-width: 1400px;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  position: relative;
}

/* Divisor SVG entre linhas de cards (visível em tablet 2-col) */
.team__row-divider {
  display: none;
  grid-column: 1 / -1;
  height: 32px;
  position: relative;
  align-items: center;
  justify-content: center;
}

.team__row-divider svg {
  width: 100%;
  height: 32px;
  opacity: 0.18;
  color: var(--color-primary);
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: box-shadow var(--transition-base);
}

.team-card__photo {
  width: 216px;
  height: 216px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  border: 3px solid var(--color-accent-light);
  flex-shrink: 0;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.team-card__bio {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: var(--color-muted);
  text-align: justify;
}

/* ============================================================
   10. VALUES SECTION
   ============================================================ */
.values {
  padding-block: var(--section-py);
  background: var(--color-surface-2);
  position: relative;
  overflow: hidden;
}

.values__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.value-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}

.value-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(36, 61, 40, 0.08) 0%, rgba(196, 123, 58, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.value-item__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.value-item__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.value-item__desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: var(--color-muted);
  text-align: justify;
}

/* SVG art for values */
.values__wave-art {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  opacity: 0.03;
  pointer-events: none;
}

/* ============================================================
   11. CONTACT SECTION
   ============================================================ */
.contact {
  padding-block: var(--section-py);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact__info-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.contact__info-desc {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(36, 61, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.contact__item--link .contact__item-icon {
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.contact__item--link:hover .contact__item-icon {
  background: rgba(36, 61, 40, 0.15);
  transform: translateY(-2px);
}

.contact__item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.contact__item-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact__item-value {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-top: 2px;
  line-height: 1.5;
}

/* Form */
.contact__form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(36, 61, 40, 0.12);
}

.form-input.error,
.form-textarea.error {
  border-color: #D44;
  box-shadow: 0 0 0 3px rgba(221, 68, 68, 0.1);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%235F6B80' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.form-checkbox span {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.form-submit-wrap {
  margin-top: 20px;
}

.form-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}

.form-feedback--success {
  background: rgba(30, 130, 76, 0.1);
  color: #1E6A40;
  border: 1px solid rgba(30, 130, 76, 0.2);
}

.form-feedback--error {
  background: rgba(200, 50, 50, 0.1);
  color: #8B2020;
  border: 1px solid rgba(200, 50, 50, 0.2);
}

/* SVG art for contact section */
.contact__wave-art {
  position: absolute;
  left: -5%;
  bottom: -5%;
  width: 35%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   12. FOOTER
   ============================================================ */
.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding-block: clamp(16px, 2.5vw, 28px) clamp(10px, 1.5vw, 16px);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .footer {
  background: #1E221E;
}

/* Footer principal — centralizado */
.footer__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  padding-bottom: clamp(10px, 1.5vw, 16px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: clamp(8px, 1.25vw, 12px);
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer__brand:hover { opacity: 0.7; }

.footer__logo-img {
  height: 72px;
  width: auto;
  display: block;
  transition: opacity var(--transition-fast);
  filter: brightness(1.35);
}

.footer__divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.footer__nav-link:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.08);
}

.footer__instagram {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.footer__instagram:hover {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}

.footer__instagram svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Footer bottom — centralizado */
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

.footer__credit a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}

.footer__credit a:hover { color: var(--color-accent); }

/* Footer wave art */
.footer__wave-art {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  opacity: 0.04;
  pointer-events: none;
}

/* ============================================================
   13. SERVICE PAGES (sp- prefix)
   ============================================================ */
.sp-hero {
  position: relative;
  background: linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 80px));
  padding-bottom: clamp(48px, 7vw, 96px);
  overflow: hidden;
}

.sp-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.sp-hero__breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}

.sp-hero__breadcrumb a:hover { color: rgba(255,255,255,0.9); }

.sp-hero__breadcrumb svg { width: 14px; height: 14px; flex-shrink: 0; }

.sp-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.sp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.sp-hero__modality {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.sp-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
}

.sp-hero__tag svg { width: 13px; height: 13px; }

/* Corner wave arts for service pages */
.sp-wave-tr,
.sp-wave-bl {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
}

.sp-wave-tr { top: 0; right: 0; width: 30%; }
.sp-wave-bl { bottom: 0; left: 0; width: 25%; }

/* Content area */
.sp-content {
  padding-block: var(--section-py);
  background: var(--color-bg);
}

.sp-content__inner {
  max-width: 980px;
  margin-inline: auto;
}

.sp-featured-image {
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Float applied directly to <picture> wrapper for correct text-wrap behavior */
picture.sp-float-left {
  display: block;
  float: left;
  width: 63%;
  margin: 0 72px 40px 0;
}

picture.sp-float-right {
  display: block;
  float: right;
  width: 63%;
  margin: 0 0 40px 72px;
}

picture.sp-float-left img,
picture.sp-float-right img {
  width: 100%;
  height: auto;
  display: block;
}

.sp-content__inner::after {
  content: '';
  display: table;
  clear: both;
}

@media (max-width: 768px) {
  picture.sp-float-left,
  picture.sp-float-right {
    float: none;
    max-width: 100%;
    margin: 0 auto 40px;
    display: block;
  }
}

.sp-intro {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: 40px;
  text-align: justify;
}

.sp-section {
  margin-bottom: 44px;
}

.sp-section-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sp-section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.sp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-text);
  line-height: 1.6;
}

.sp-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.sp-highlight-box {
  background: rgba(36, 61, 40, 0.05);
  border: 1px solid rgba(36, 61, 40, 0.1);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 0;
}

.sp-text {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 16px;
  text-align: justify;
}

/* FAQ section on service pages */
.sp-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.sp-faq__item summary {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 600;
  color: var(--color-primary);
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.45;
  user-select: none;
}

.sp-faq__item summary::-webkit-details-marker { display: none; }

.sp-faq__item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform var(--transition-base);
  line-height: 1;
}

.sp-faq__item[open] summary::after {
  transform: rotate(45deg);
}

.sp-faq__item[open] {
  background: rgba(30, 58, 95, 0.02);
}

.sp-faq__answer {
  padding: 4px 20px 20px;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.75;
  color: var(--color-muted);
}

/* CTA section on service pages */
.sp-cta {
  background: #EDE8E1;
  padding: clamp(28px, 4vw, 52px) 0 clamp(48px, 7vw, 96px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.sp-cta .btn--ghost {
  color: var(--color-primary);
  border-color: rgba(30,58,95,0.4);
}

.sp-cta .btn--ghost:hover {
  background: rgba(30,58,95,0.08);
  border-color: var(--color-primary);
}

.sp-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.sp-cta__desc {
  font-size: 1rem;
  color: var(--color-text);
  opacity: 0.7;
  margin-bottom: 32px;
}

/* Bottom nav (between service pages) — dentro do sp-cta, sem bg próprio */
.sp-nav {
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: clamp(52px, 7vw, 80px);
}

[data-theme="dark"] .sp-nav {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sp-nav__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 20px;
  text-align: center;
}

.sp-nav__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.sp-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast);
}

.sp-nav__link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.sp-nav__link--current {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  pointer-events: none;
}

/* ============================================================
   14. QUEM SOMOS PAGE
   ============================================================ */
.qs-hero {
  position: relative;
  background: linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 80px));
  padding-bottom: clamp(48px, 7vw, 96px);
  overflow: hidden;
}

.qs-hero__intro {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 680px;
  margin-top: 16px;
  line-height: 1.7;
  text-align: justify;
}

.qs-content {
  padding-block: var(--section-py);
  background: var(--color-bg);
}

.qs-story {
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.qs-story p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: 20px;
  text-align: justify;
}

.qs-story p:last-child { margin-bottom: 0; }

.qs-story__highlight {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--color-primary);
  background: rgba(36, 61, 40, 0.05);
  border-left: 3px solid var(--color-accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-block: 28px;
  line-height: 1.6;
}

/* Team grid (full page) */
.qs-team {
  padding-block: var(--section-py);
  background: var(--color-surface);
}

.qs-team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.qs-team-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  align-items: start;
}

.qs-team-card__photo {
  width: 140px;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  align-self: center;
}

.qs-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.qs-team-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.qs-team-card__role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.qs-team-card__bio {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: var(--color-muted);
  text-align: justify;
}

.qs-team-card__site {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}
.qs-team-card__site:hover {
  text-decoration: underline;
}

/* MVV section */
.qs-mvv {
  padding-block: var(--section-py);
  background: var(--color-bg);
}

.qs-mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.qs-mvv-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}

.qs-mvv-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.qs-mvv-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.qs-mvv-card__text {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: var(--color-muted);
  text-align: justify;
}

.qs-mvv-card--values .qs-values-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qs-mvv-card--values .qs-values-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-text);
}

.qs-mvv-card--values .qs-values-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   15. TERAPEUTAS PAGE
   ============================================================ */
.tp-hero {
  background: linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 80px));
  padding-bottom: clamp(48px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}

.tp-content {
  padding-block: var(--section-py);
  background: var(--color-bg);
}

.tp-intro-block {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.tp-intro-block p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.tp-contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 48px);
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.tp-contact-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(36, 61, 40, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.tp-contact-card__icon svg { width: 28px; height: 28px; color: var(--color-primary); }

.tp-contact-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.tp-contact-card__email {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 24px;
}

/* ============================================================
   16. CONTACT PAGE (full page)
   ============================================================ */
.ct-hero {
  background: linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 80px));
  padding-bottom: clamp(48px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}

.ct-channels {
  padding-block: var(--section-py);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.ct-channels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ct-channel-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.ct-channel-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-primary-light);
}

.ct-channel-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(36, 61, 40, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.ct-channel-card__icon svg { width: 24px; height: 24px; }

.ct-channel-card__content h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ct-channel-card__content p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 6px;
  line-height: 1.4;
}

.ct-channel-card__cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
}

.ct-main {
  padding-block: var(--section-py);
  background: var(--color-bg);
}

.ct-main__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.ct-form-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 52px);
}

.ct-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.ct-form-desc {
  color: var(--color-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.ct-form { display: flex; flex-direction: column; gap: 20px; }

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-form__field { display: flex; flex-direction: column; gap: 6px; }

.ct-form__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.ct-form__label span { color: var(--color-accent); }

.ct-form__input {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.ct-form__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(36, 61, 40, 0.12);
}

.ct-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%235F6B80' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.ct-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.ct-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-muted);
  cursor: pointer;
}

.ct-form__check input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.ct-form__submit { margin-top: 8px; }

.ct-form__feedback {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-top: 8px;
}

.ct-form__feedback svg { flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; }

.ct-form__feedback--success {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #065f46;
}

[data-theme="dark"] .ct-form__feedback--success {
  background: rgba(16, 185, 129, 0.12);
  color: #6ee7b7;
}

.ct-form__feedback--success svg { color: #10b981; }

.ct-form__feedback--error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #991b1b;
}

[data-theme="dark"] .ct-form__feedback--error {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
}

.ct-form__feedback--error svg { color: #ef4444; }

.ct-form__feedback strong { display: block; margin-bottom: 2px; }

.ct-form__feedback p { margin: 0; opacity: 0.85; }

.ct-info {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.ct-info__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 28px;
}

.ct-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.ct-info__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(36, 61, 40, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.ct-info__icon svg { width: 20px; height: 20px; }

.ct-info__item h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.ct-info__item p,
.ct-info__item address,
.ct-info__item a {
  font-size: 0.93rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.ct-info__item a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.ct-info__item a:hover { text-decoration: underline; }

.ct-info__note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.875rem;
  color: var(--color-primary-dark);
  margin-top: 4px;
}

.ct-info__note svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--color-accent); }

/* Shared hero subtitle */
.sp-hero__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 16px;
}

/* CTA email link */
.sp-cta__email {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--color-text);
  opacity: 0.7;
}

.sp-cta__email a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   17. RESPONSIVE
   ============================================================ */

/* ≥ 1280px */
@media (min-width: 1280px) {
  body { font-size: 22px; }
}

/* ≤ 1024px */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual"
      "stats";
    text-align: center;
  }

  .hero__desc { max-width: 100%; margin-inline: auto; }
  .hero__badges { justify-content: center; }
  .hero__ctas { justify-content: center; }
  .hero__stats { justify-content: center; margin-top: 0; }
  .hero__stat { flex: none; min-width: 100px; }

  .hero__visual {
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
  }
  .hero__image-wrap { max-width: 280px; margin-inline: auto; height: 440px; }

  .sobre-preview__inner { grid-template-columns: 1fr; }
  .sobre-preview__image-badge { left: 16px; bottom: -16px; }
  .sobre-preview__image-col { order: -1; }

  .sobre-preview__image-col--historia { max-width: 50%; margin-inline: auto; }
}

@media (max-width: 1024px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .team__row-divider { display: flex; order: 1; }
  .team__grid > :nth-child(3) { order: 2; }
  .team__grid > :nth-child(5) { order: 2; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .ct-channels__grid { grid-template-columns: 1fr; }
  .ct-main__grid { grid-template-columns: 1fr; }
  .ct-info { position: static; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .qs-team__grid { grid-template-columns: 1fr; }
  .qs-team-card { max-width: 800px; margin-inline: auto; }

  .qs-mvv__grid { grid-template-columns: 1fr; }

  .navbar__menu { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__actions .btn--primary { display: none; }
}

@media (max-width: 619px) {
  .sobre-preview__image-col--historia { max-width: 100%; }
}

/* ≤ 768px */
@media (max-width: 768px) {
  .hero__title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero__stats { flex-wrap: wrap; gap: 16px; }
  .hero__stat { min-width: calc(50% - 8px); }

  .services__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }

  .qs-team-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .qs-team-card__photo {
    width: 120px;
    height: 140px;
    margin-inline: auto;
  }

  .form-row { grid-template-columns: 1fr; }
  .ct-form__row { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

}

/* ≤ 600px */
@media (max-width: 600px) {
  .hero__inner { padding-block: clamp(32px, 8vw, 64px); }
  .team__grid { grid-template-columns: 1fr; }
  .team__grid > :nth-child(3) { order: 0; }
  .team__grid > :nth-child(5) { order: 0; }
  .team__row-divider { order: 1; }
  .sp-nav__grid { flex-direction: column; align-items: stretch; }
  .sp-nav__link { justify-content: center; }

  .sobre-preview__image-badge {
    position: static;
    margin-top: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  /* Rodapé mobile: links na 1ª fileira, logo + instagram na 2ª */
  .footer__main {
    row-gap: 16px;
    column-gap: 20px;
  }
  .footer__nav {
    order: -1;
    width: 100%;
  }
  .footer__divider { display: none; }

  /* Texto do rodapé menor */
  .footer__bottom {
    font-size: 0.7rem;
    gap: 3px;
  }
}

/* Mobile menu open state */
@media (max-width: 1024px) {
  .navbar__menu.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 20px 24px 28px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }

  .navbar__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    background: transparent;
    display: none;
    pointer-events: auto;
    min-width: 0;
    width: 100%;
  }

  .navbar__dropdown.open .navbar__dropdown-menu {
    display: flex;
    flex-direction: column;
    transform: none;
  }

  .navbar__link {
    width: 100%;
    padding: 10px 12px;
  }

  /* Garante que o wrapper do dropdown ocupe a largura total do menu */
  .navbar__menu.is-open > .navbar__dropdown {
    width: 100%;
  }

  /* Corrige cor do texto no menu mobile aberto em lightmode:
     links ficavam brancos sobre fundo claro por herança das regras de hero escuro */
  .has-dark-hero .navbar:not(.scrolled) .navbar__menu.is-open .navbar__link,
  body:not(.has-dark-hero) .navbar:not(.scrolled) .navbar__menu.is-open .navbar__link {
    color: var(--color-text);
  }
  .has-dark-hero .navbar:not(.scrolled) .navbar__menu.is-open .navbar__dropdown-trigger svg,
  body:not(.has-dark-hero) .navbar:not(.scrolled) .navbar__menu.is-open .navbar__dropdown-trigger svg {
    stroke: var(--color-muted);
  }
}

/* Hamburger visível em fundo escuro para páginas sem has-dark-hero (ex: index) */
body:not(.has-dark-hero) .navbar:not(.scrolled) .navbar__hamburger span {
  background: rgba(255,255,255,0.9);
}

/* ============================================================
   18. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   19. DARK MODE SPECIFICS
   ============================================================ */
[data-theme="dark"] .navbar.scrolled {
  border-bottom: 1px solid var(--color-border);
}

/* Hero das páginas internas em dark mode — mesmo fundo da seção "O que fazemos" em dark */
[data-theme="dark"] .qs-hero,
[data-theme="dark"] .sp-hero,
[data-theme="dark"] .ct-hero,
[data-theme="dark"] .tp-hero {
  background: linear-gradient(160deg, #142816 0%, #243D28 60%, #1A3820 100%);
}

[data-theme="dark"] .sp-cta {
  background: linear-gradient(160deg, #142816 0%, #243D28 60%, #1A3820 100%);
  border-color: transparent;
}

[data-theme="dark"] .sp-cta .btn--ghost {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

[data-theme="dark"] .sp-cta .btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

[data-theme="dark"] .sp-cta__title {
  color: var(--color-white);
}

[data-theme="dark"] .sp-cta__desc,
[data-theme="dark"] .sp-cta__email {
  color: rgba(255,255,255,0.7);
  opacity: 1;
}

[data-theme="dark"] .sp-cta__email a {
  color: var(--color-accent);
}

[data-theme="dark"] .service-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .service-card__link {
  color: rgba(255,255,255,0.5);
}

[data-theme="dark"] .service-card__link:hover {
  color: var(--color-white);
}

[data-theme="dark"] .service-card:has(a):hover,
[data-theme="dark"] .service-card--linked:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}

[data-theme="dark"] .sobre-preview__image-badge {
  background: var(--color-accent);
}

[data-theme="dark"] .contact__form-wrap {
  border-color: var(--color-border);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea {
  background: var(--color-surface-2);
  color: var(--color-text);
  border-color: var(--color-border);
}

[data-theme="dark"] .sp-highlight-box {
  background: rgba(74, 139, 80, 0.08);
  border-color: rgba(74, 139, 80, 0.15);
}

[data-theme="dark"] .sp-faq__item {
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .sp-faq__item summary {
  color: var(--color-text);
}

[data-theme="dark"] .sp-faq__item[open] {
  background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .qs-story__highlight {
  background: rgba(74, 139, 80, 0.08);
}

[data-theme="dark"] .sp-intro,
[data-theme="dark"] .sp-text,
[data-theme="dark"] .qs-story p,
[data-theme="dark"] .qs-mvv-card__text,
[data-theme="dark"] .team-card__bio,
[data-theme="dark"] .qs-team-card__bio {
  color: var(--color-text);
}

[data-theme="dark"] .qs-team-card,
[data-theme="dark"] .qs-mvv-card,
[data-theme="dark"] .team-card,
[data-theme="dark"] .tp-contact-card {
  background: var(--color-surface-2);
}


[data-theme="dark"] .services {
  background: linear-gradient(160deg, #142816 0%, #243D28 60%, #1A3820 100%);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(26, 34, 26, 0.95);
  border-bottom: 1px solid var(--color-border);
}

[data-theme="dark"] .ct-channel-card {
  background: var(--color-surface-2);
  border-color: var(--color-border);
}

[data-theme="dark"] .ct-channel-card:hover {
  border-color: var(--color-primary-light);
}

[data-theme="dark"] .ct-channel-card__icon {
  background: rgba(58, 107, 154, 0.15);
}

[data-theme="dark"] .ct-channels {
  background: var(--color-surface);
  border-bottom-color: var(--color-border);
}

[data-theme="dark"] .ct-form-wrapper {
  background: var(--color-surface-2);
  border-color: var(--color-border);
}

[data-theme="dark"] .ct-form__input {
  background: var(--color-surface);
  border-color: var(--color-border);
  color: var(--color-text);
}

[data-theme="dark"] .ct-form__input:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(58, 107, 154, 0.2);
}

[data-theme="dark"] .ct-info__icon {
  background: rgba(88, 150, 96, 0.18);
  color: var(--color-primary-light);
}

[data-theme="dark"] .ct-info__item h3 {
  color: rgba(255,255,255,0.55);
}

[data-theme="dark"] .ct-info__item p,
[data-theme="dark"] .ct-info__item address {
  color: rgba(255,255,255,0.88);
}

[data-theme="dark"] .ct-info__item a {
  color: rgba(255,255,255,0.90);
}

[data-theme="dark"] .ct-info__title {
  color: var(--color-white);
}

[data-theme="dark"] .ct-info__note {
  background: rgba(196, 123, 58, 0.15);
  color: var(--color-accent);
}

[data-theme="dark"] .value-item {
background: var(--color-surface);
};

.navbar__actions .btn--primary {
  background: var(--color-primary-light);
  box-shadow: none;
}

.navbar__actions .btn--primary:hover {
  background: #4A7EAE;
}

[data-theme="dark"] .footer__nav-link {
  color: rgba(255,255,255,0.92);
}

[data-theme="dark"] .footer__divider {
  background: rgba(255,255,255,0.40);
}

[data-theme="dark"] .footer__bottom {
  color: rgba(255,255,255,0.65);
}

[data-theme="dark"] .footer__credit a {
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   20. PRINT
   ============================================================ */

/* ============================================================
   'Nossa História' — imagem com visual artístico independente
   Isolada das outras seções; alterações aqui não afetam o restante.
   ============================================================ */
.sobre-preview__image-col--historia {
  padding: 20px 8px 28px;
}

.sobre-preview__image-frame--historia {
  position: relative;
  padding-bottom: 36px; /* acomoda metade do badge que vaza */
}

.sobre-preview__image-clipper {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(36, 61, 40, 0.15);
  aspect-ratio: 8 / 9;
}

.sobre-preview__image-clipper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.1);
  transform-origin: center top;
}

.sobre-preview__frame-accent {
  position: absolute;
  top: 0;
  bottom: 36px; /* alinha com o clipper, não com o padding */
  left: 16px;
  right: -16px;
  border: 1.5px solid rgba(196, 123, 58, 0.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 0;
  transform: translate(0, 16px);
}

.sobre-preview__historia-stat {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(253, 250, 247, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: 0 12px 32px rgba(36, 61, 40, 0.14);
  display: flex;
  align-items: center;
  gap: 20px;
}

.sobre-preview__historia-stat strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--color-accent);
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.sobre-preview__historia-stat span {
  font-size: 0.78rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.5;
}

[data-theme="dark"] .sobre-preview__frame-accent {
  border-color: rgba(196, 123, 58, 0.22);
}

[data-theme="dark"] .sobre-preview__historia-stat {
  background: rgba(30, 32, 30, 0.94);
}

[data-theme="dark"] .sobre-preview__historia-stat strong {
  color: var(--color-accent);
}

[data-theme="dark"] .sobre-preview__historia-stat span {
  color: rgba(245, 240, 235, 0.85);
}

/* Ana Grilo: rosto 30% abaixo do topo */
.team__grid > .team-card:nth-child(1) .team-card__photo img,
.qs-team__grid > .qs-team-card:nth-child(1) .qs-team-card__photo img {
  object-position: center 30%;
}

/* Brunna Reis: rosto 20% do topo */
.team__grid > .team-card:nth-child(2) .team-card__photo img,
.qs-team__grid > .qs-team-card:nth-child(2) .qs-team-card__photo img {
  object-position: center 20%;
}


@media print {
  .navbar, .footer, .hero__ctas, .sp-cta, .sp-nav { display: none; }
  body { color: #000; background: #fff; }
}
