/* ========================================================================
   1. Design System — Paleta e Tokens
   ======================================================================== */
:root {
  /* Cores Neutras */
  --gray-0: #ffffff;
  --gray-50: #f6f7f8;
  --gray-100: #eceff3;
  --gray-200: #dfe5eb;
  --gray-300: #cfd7e1;
  --gray-400: #b9c3cf;
  --gray-500: #9aa6b2;
  --gray-600: #7c8896;
  --gray-700: #5f6b7a;
  --gray-800: #3b4450;
  --gray-900: #151a20;
  --black: #0a0c0f;

  /* Temas e Marcas */
  --ink: var(--gray-50);
  --accent: var(--gray-400);
  --surface: var(--gray-0);
  --line: rgba(0, 0, 0, 0.08);

  --brand-ink: var(--gray-100);
  --brand-accent: var(--gray-300);
  --brand-highlight: var(--gray-700);

  /* Dimensões e Layout */
  --nav-h: 80px;
  --container: min(1200px, 92vw);

  /* Efeitos */
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

  /* Cores específicas de formulário */
  --contact-dark-text: #0f1b1b;
  --contact-muted: #6f6f71;
}

/* ========================================================================
   2. Base e Resets
   ======================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 70% -10%, #1a1f26 0%, transparent 70%),
    linear-gradient(var(--black), var(--black)) fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================================================
   3. Utilitários
   ======================================================================== */
.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;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  padding: 8px 12px;
  background: #fff;
  color: #000;
  transform: translateY(-100%);
  transition: transform 0.2s ease;
}

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

/* Compensação para links âncora considerando menu fixo */
section[id] {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

/* ========================================================================
   4. Componentes Globais
   ======================================================================== */
/* Animações de revelação em scroll */
.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(22px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform, filter;
}

.reveal.left {
  transform: translateX(-26px);
}

.reveal.right {
  transform: translateX(26px);
}

.reveal.in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

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

/* ========================================================================
   5. Navegação (Header)
   ======================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    background 0.25s ease,
    backdrop-filter 0.25s ease,
    border-color 0.25s ease;
}
.site-header.is-translucent {
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  width: var(--container);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  justify-content: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.brand strong {
  font-weight: 700;
  letter-spacing: 0.1px;
}
.brand-sub {
  opacity: 0.6;
}

/* Navegação principal */
#menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
#menu a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  transition: opacity 0.15s ease;
}
#menu a:hover,
#menu a.active {
  opacity: 1;
}

/* Botão do menu mobile */
.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
}

/* Menu responsivo */
@media (max-width: 920px) {
  #menu {
    position: fixed;
    right: 16px;
    top: calc(var(--nav-h) + 12px);
    background: #0e1116;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }
  #menu.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    justify-content: space-between;
  }
  .brand {
    position: relative;
    left: 0;
    top: auto;
    transform: none;
  }
}

/* ========================================================================
   Hero
   ======================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.75);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 15, 0.35),
    rgba(10, 12, 15, 0.85)
  );
}
.hero .content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 8px) 12px 0;
  display: flex;
  justify-content: flex-start;
}

/* Rotator */
.rotator-block {
  position: relative;
  max-width: 820px;
  min-height: clamp(140px, 22vw, 220px);
}
.slide {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  transform: translateY(14px);
  animation: slideCycle 20s infinite ease-in-out;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}
.slide:nth-child(1) {
  animation-delay: 0s;
}
.slide:nth-child(2) {
  animation-delay: 4s;
}
.slide:nth-child(3) {
  animation-delay: 8s;
}
.slide:nth-child(4) {
  animation-delay: 12s;
}
.slide:nth-child(5) {
  animation-delay: 16s;
}
@keyframes slideCycle {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  5% {
    opacity: 1;
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
.term {
  font:
    700 clamp(34px, 6.2vw, 60px) / 1.05 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: 0.2px;
  margin: 0;
}
.definition {
  margin: 14px 0 0;
  font:
    500 clamp(14px, 2.2vw, 18px) / 1.5 Inter,
    system-ui,
    sans-serif;
  color: #a7afbb;
}
.definition em {
  font-style: normal;
  color: var(--accent);
}
@media (prefers-reduced-motion: reduce) {
  .slide {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .slide:not(:first-child) {
    display: none;
  }
  .hero-video {
    filter: brightness(0.9);
  }
}

/* ========================================================================
   Faixa de Destaques
   ======================================================================== */
.features {
  position: relative;
  z-index: 1;
  background: var(--brand-ink);
  color: #0b1117;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.features .wrap {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  min-height: 108px;
  border-right: 1px solid var(--line);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.feature:last-child {
  border-right: 0;
}
.feature:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.25);
}
.feature .ico {
  flex: 0 0 52px;
  height: 52px;
  width: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}
.feature .ico svg {
  width: 28px;
  height: 28px;
  stroke: var(--gray-700);
  fill: none;
  stroke-width: 1.8;
}
.feature h3 {
  margin: 0 0 4px 0;
  font:
    700 clamp(16px, 2vw, 18px) / 1.15 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: 0.2px;
  color: #0b1117;
}
.feature p {
  margin: 0;
  color: #26323f;
  font:
    500 14px / 1.4 Inter,
    system-ui,
    sans-serif;
}
@media (max-width: 1020px) {
  .features .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature:nth-child(2) {
    border-right: 0;
  }
}
@media (max-width: 560px) {
  .features .wrap {
    grid-template-columns: 1fr;
  }
  .feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .feature:last-child {
    border-bottom: 0;
  }
}

/* ========================================================================
   Quem Somos
   ======================================================================== */
section.about {
  background: var(--surface);
  color: #0f1720;
}
.about .wrap {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: flex-start;
  padding: clamp(56px, 9vw, 128px) 12px;
}
.about figure {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  align-self: flex-start;
}
.about img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
}
.about .eyebrow {
  margin: 0 0 8px 0;
  font:
    700 12px / 1 Inter,
    system-ui,
    sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.about .headline {
  margin: 0 0 12px 0;
  font:
    700 clamp(28px, 4.8vw, 48px) / 1.05 "DM Serif Display",
    Georgia,
    serif;
  color: #0b1117;
}
.about .lead {
  margin: 0 0 8px 0;
  font:
    400 clamp(14px, 2vw, 18px) / 1.7 Inter,
    system-ui,
    sans-serif;
  color: #334155;
}
.about .accordion {
  margin-top: 18px;
  border-top: 1px solid #e6eaf0;
}
.about .accordion .item {
  border-bottom: 1px solid #e6eaf0;
}
.about .accordion .trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: #0b1117;
  font:
    700 clamp(18px, 2.6vw, 24px) / 1.1 "DM Serif Display",
    Georgia,
    serif;
}
.about .accordion .trigger .arrow {
  flex: 0 0 24px;
  color: var(--gray-700);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.about .accordion .answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: max-height;
}
.about .accordion .answer p {
  margin: 0 0 16px 0;
  padding-right: 28px;
  color: #334155;
  font:
    400 15px / 1.65 Inter,
    system-ui,
    sans-serif;
}
.about .accordion .item.open .answer {
  max-height: 280px;
}
.about .accordion .item.open .trigger .arrow {
  transform: rotate(90deg);
}

/* Animações de revelação */
/* (Movidas para a seção de componentes globais) */

/* Responsividade extra da seção Quem Somos */
@media (max-width: 768px) {
  .about .wrap {
    grid-template-columns: 1fr;
  }
  .about .wrap figure {
    order: 2;
    margin-top: 24px;
    width: 100%;
    max-width: 100%;
  }
  .about .wrap .text {
    order: 1;
  }
}

/* ========================================================================
   Números
   ======================================================================== */
.metrics {
  position: relative;
  padding: clamp(56px, 8vw, 104px) 0;
  background: var(--brand-ink);
}
.stitch-title {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: grid;
  min-width: 280px;
  padding: 10px 18px 12px;
  background: var(--surface);
  color: #000;
  border: 1px solid var(--brand-accent);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  text-align: left;
  pointer-events: none;
}
.stitch-title .stitch-small {
  font:
    600 14px / 1 Inter,
    system-ui,
    sans-serif;
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.stitch-title .stitch-big {
  margin-top: 2px;
  font:
    700 28px / 1.05 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: 0.2px;
  color: #000;
}
.metrics .wrap {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 40px);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3.2vw, 36px);
  align-items: stretch;
}
.metric-card {
  position: relative;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--brand-ink) 60%, white 40%) 0%,
    #fff 70%
  );
  border: 1px solid var(--brand-accent);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  backdrop-filter: saturate(105%);
}
.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.metric-card .badge {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.kpi {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-size: clamp(20px, 3.6vw, 26px);
  line-height: 1.2;
  margin: 6px 0 6px;
  color: #1c1f24;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.kpi .prefix,
.kpi .suffix {
  color: #1c1f24;
  font-weight: 700;
}
.kpi .prefix {
  margin-right: 2px;
}
.kpi .suffix {
  margin-left: 2px;
}
.metric-card .kpi-sub {
  font-size: clamp(12px, 2.2vw, 14px);
  color: #5b616a;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .metrics .wrap {
    padding-inline: clamp(20px, 6vw, 32px);
  }
  .metric-card {
    padding: 28px 20px;
  }
}

/* ========================================================================
   Serviços
   ======================================================================== */
.services {
  background: var(--surface);
  position: relative;
  /* permite overflow vertical, esconde apenas horizontal para não cortar o titulo da seção seguinte */
  overflow-x: hidden;
  overflow-y: visible;
  padding-block: clamp(72px, 8vw, 120px);
}
.services .wrap {
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.services-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
  margin-bottom: clamp(32px, 6vw, 56px);
}
.services .eyebrow {
  color: var(--gray-600);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.services .display {
  font-family: "DM Serif Display", Georgia, serif;
  color: var(--gray-900);
  font-size: clamp(36px, 6.5vw, 72px);
  line-height: 1.05;
  margin: 0;
}
.services-copy p {
  color: #4b5563;
  margin: 0 0 1rem;
  line-height: 1.65;
}
.cards-glow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: clamp(200px, 24vw, 300px);
  width: min(1160px, 88vw);
  height: clamp(160px, 22vw, 240px);
  background: radial-gradient(
    60% 120% at 50% 50%,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.55) 40%,
    rgba(255, 255, 255, 0) 70%
  );
  filter: blur(8px);
  z-index: 0;
}
.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.8vw, 24px);
}
.service-card {
  background: var(--surface);
  border-radius: 18px;
  box-shadow:
    0 25px 60px rgba(15, 17, 19, 0.12),
    0 8px 24px rgba(15, 17, 19, 0.06);
  padding: clamp(20px, 2.8vw, 28px);
  border: 1px solid var(--brand-accent);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 70px rgba(15, 17, 19, 0.16),
    0 12px 32px rgba(15, 17, 19, 0.08);
}
.service-card .icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gray-800);
  color: #fff;
  margin-bottom: clamp(12px, 1.8vw, 16px);
}
.service-card .icon svg {
  width: 28px;
  height: 28px;
}
.service-card .card-title {
  font-family: "DM Serif Display", Georgia, serif;
  color: var(--gray-900);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.service-card .card-text {
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 1100px) {
  .services-top {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 18px;
  }
}

/* ========================================================================
   Equipe (Carousel)
   ======================================================================== */
.team-section {
  background: var(--brand-ink);
  padding-block: clamp(64px, 8vw, 120px);
  overflow-x: hidden;
}

.team-section .wrap {
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 64px);
}

/* Header */
.team-header {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}
.team-header .eyebrow {
  color: var(--gray-600);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.team-header .display {
  font-family: "DM Serif Display", Georgia, serif;
  color: var(--gray-900);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  margin: 0 0 1rem;
}
.team-header .lead {
  color: #4b5563;
  margin: 0 auto;
  line-height: 1.6;
  max-width: 60ch;
}

/* Carousel Layout */
.team-carousel-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  user-select: none;
  cursor: grab;
  touch-action: pan-y;
}
.team-carousel-wrapper:active {
  cursor: grabbing;
}

.carousel-viewport {
  overflow: visible;
  width: 100%;
  padding-block: 20px; /* Space for shadows/hover */
  margin-block: -20px;
}
.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

/* Member Card */
.member-card {
  width: 280px;
  flex: 0 0 280px;
  position: relative;
  transition: opacity 0.3s;
}

.member-card .photo {
  position: relative;
  aspect-ratio: 9 / 12;
  border-radius: 16px;
  overflow: hidden;
  background: #d9dee5;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  margin: 0 0 16px 0;
}

.member-card:hover .photo {
  transform: translateY(-8px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.member-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
}

.member-card .info {
  text-align: left;
  padding-inline: 4px;
}

.member-card .name {
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  color: var(--gray-900);
  margin: 0 0 4px;
}

.member-card .role {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 500;
  margin: 0;
}

/* Navigation Buttons (Removed) */
/* .carousel-btn styles removed */

/* Footer Link */
.team-footer {
  text-align: center;
  margin-top: -12px;
}
.team-footer .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--gray-800);
  text-decoration: none;
  transition: opacity 0.2s;
}
.team-footer .more:hover {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 640px) {
  .member-card {
    width: 240px;
    flex: 0 0 240px;
  }
}

/* ========================================================================
   Depoimentos
   ======================================================================== */
.testimonials {
  position: relative;
  background: #fff;
  color: #0b1117;
  padding-block: clamp(64px, 8vw, 120px);
  overflow: hidden;
}
.testimonials .wrap {
  width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: min(28vw, 300px);
  height: calc(100% - 80px);
  background:
    radial-gradient(
      400px 200px at 70% 10%,
      rgba(0, 0, 0, 0.02),
      transparent 60%
    ),
    url("data:image/svg+xml,%3Csvg width='320' height='640' viewBox='0 0 320 640' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23bfc5cc' stroke-width='2' opacity='.35'%3E%3Cpath d='M80 520c-20-40-24-88-10-130 18-58 64-96 124-106 44-7 84-33 104-74'/%3E%3Cpath d='M140 230c-6-40 12-74 50-94'/%3E%3Ccircle cx='104' cy='360' r='42'/%3E%3Cpath d='M36 500h180M0 540h220'/%3E%3C/g%3E%3C/svg%3E")
      left bottom / contain no-repeat;
  pointer-events: none;
}
.testimonials .eyebrow {
  margin: 0 0 0.5rem;
  font:
    700 12px / 1 Inter,
    system-ui,
    sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
}
.testimonials .display {
  margin: 0 0 clamp(22px, 4vw, 36px);
  font:
    700 clamp(32px, 6.2vw, 64px) / 1.05 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: 0.2px;
  color: #0b1117;
}
.testimonials .center {
  text-align: center;
}
.testi-track {
  display: flex;
  gap: clamp(18px, 3vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: 1px;
}
.testi-track::-webkit-scrollbar {
  display: none;
}
.testi-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 3vw, 28px);
  scroll-snap-align: start;
}
.testi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(11, 17, 23, 0.8);
  border-radius: 16px;
  padding: clamp(26px, 3.6vw, 34px);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  min-height: 240px;
  transition: transform 0.2s ease;
}
.testi-card::after {
  content: "”";
  position: absolute;
  right: 18px;
  top: 18px;
  font:
    900 54px / 0.6 "DM Serif Display",
    Georgia,
    serif;
  color: #e5e7eb;
  letter-spacing: -6px;
  pointer-events: none;
}
.testi-card:hover {
  transform: translateY(-4px);
}
.testi-head {
  margin: 0 0 10px;
  text-align: center;
}
.testi-head .name {
  margin: 0 0 4px;
  color: #0b1117;
  font:
    700 clamp(18px, 2.2vw, 22px) / 1.15 "DM Serif Display",
    Georgia,
    serif;
}
.testi-head .role {
  margin: 0;
  color: #6b7280;
  font:
    600 13px / 1.2 Inter,
    system-ui,
    sans-serif;
}
.testi-card .quote {
  margin: 8px 0 12px;
  flex: 1 1 auto;
}
.testi-card .quote p {
  margin: 0;
  color: #4b5563;
  font:
    400 15px / 1.8 Inter,
    system-ui,
    sans-serif;
}
.rating {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  color: #aeb4bc;
}
.rating svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.testi-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.testi-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cfd5dc;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.testi-dots .dot.is-active {
  background: #6b7280;
}
@media (max-width: 820px) {
  .testi-page {
    grid-template-columns: 1fr;
  }
  .testimonials::before {
    width: min(34vw, 240px);
    opacity: 0.8;
  }
}

/* ========================================================================
   Contato
   ======================================================================== */
.contact-v3 {
  background: var(--gray-50);
  padding-block: clamp(48px, 6vw, 84px) 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}
.contact-v3 .container {
  max-width: min(1200px, 92vw);
  margin-inline: auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4.5vw, 64px);
  align-items: start;
}
.contact-v3 .eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-highlight);
  font-weight: 700;
}
.contact-title {
  margin: 0 0 22px;
  font-family: "DM Serif Display", serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--contact-dark-text);
  font-size: clamp(32px, 4.2vw, 48px);
}
.contact-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.contact-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
}
.ci-ico {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: var(--brand-highlight);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.ci-ico svg {
  width: 28px;
  height: 28px;
  fill: #000;
}
.ci-texts strong {
  display: block;
  font-weight: 700;
  color: #1f2629;
  margin-bottom: 4px;
}
.ci-texts span,
.ci-texts a {
  color: var(--contact-muted);
  text-decoration: none;
}
.contact-note {
  margin: 2px 0 16px;
  font-size: 14px;
  color: var(--contact-muted);
  max-width: 520px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  align-items: start;
}
.contact-form input,
.contact-form textarea {
  background: #fff;
  border: 1px solid #d9dbdf;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 14px;
  color: #1c2326;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.contact-form textarea {
  border-radius: 14px;
  grid-column: 1 / -1;
  padding: 12px 16px 14px;
  resize: vertical;
  min-height: 120px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa0a6;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand-highlight);
  box-shadow: 0 0 0 4px
    color-mix(in srgb, var(--brand-highlight) 22%, transparent);
}
.btn-gradient {
  grid-column: 1 / span 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 20px 0 16px;
  border: 0;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-highlight), var(--gray-900));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}
.btn-gradient:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.btn-gradient:active {
  transform: translateY(0);
}
.btn-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 18px;
  line-height: 1;
}
.contact-map {
  margin-top: clamp(28px, 4vw, 40px);
  width: 100%;
  position: relative;
  background: #f4f5f6;
  border-top: 1px solid #e8eaee;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 52vh, 520px);
  border: 0;
}
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .btn-gradient {
    grid-column: 1 / -1;
  }
}

/* ========================================================================
   Rodapé
   ======================================================================== */
.site-footer {
  --footer-bg: #2f3032;
  --footer-ink: var(--brand-ink);
  --footer-muted: var(--brand-accent);
  background: var(--footer-bg);
  color: var(--footer-ink);
}
.site-footer .footer-wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.footer-brand img {
  max-width: clamp(180px, 26vw, 260px);
  height: auto;
  display: block;
  filter: none;
}
.footer-title {
  margin: 4px 0 12px;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 600;
  letter-spacing: 0.2px;
}
.footer-address .li,
.footer-list .li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  line-height: 1.5;
  font-size: clamp(13px, 1.4vw, 14px);
  color: var(--footer-muted);
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.footer-address {
  font-style: normal;
  display: grid;
  gap: 8px;
}
.site-footer .icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  display: inline-grid;
  place-items: center;
  color: var(--footer-muted);
}
.site-footer .icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
}
.site-footer .link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}
.site-footer .link:hover {
  color: var(--footer-ink);
  border-color: currentColor;
}
.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: var(--footer-muted);
  font-size: 12px;
  padding: 12px 16px 20px;
}
@media (max-width: 980px) {
  .site-footer .footer-wrap {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer-brand img {
    max-width: 220px;
  }
}

/* ========================================================================
   Na Mídia
   ======================================================================== */
.media-section {
  position: relative;
  padding-block: clamp(64px, 8vw, 120px);
  background: var(--gray-50);
  color: var(--gray-900);
}
.media-section .wrap {
  width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.media-header {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.media-section .eyebrow {
  color: var(--gray-600);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  font-size: 12px;
}
.media-section .display {
  font-family: "DM Serif Display", Georgia, serif;
  color: var(--gray-900);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  margin: 0 0 1rem;
}
.media-section .lead {
  color: var(--gray-600);
  margin: 0 auto;
  line-height: 1.6;
  max-width: 60ch;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 40px);
}
.media-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.media-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: var(--gray-300);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.media-source {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: 12px;
  font-weight: 700;
}
.media-title {
  font-family: "DM Serif Display", Georgia, serif;
  color: var(--gray-900);
  font-size: clamp(20px, 2.5vw, 24px);
  margin: 0 0 16px;
  line-height: 1.25;
}
.media-snippet {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
  flex-grow: 1;
}
.media-link-text {
  color: var(--gray-900);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.media-card:hover .media-link-text {
  text-decoration: underline;
  gap: 10px;
}
