﻿/* ============================================================
   CLÁUDIA ROCHA — DIREITO DO TRABALHO
   Paleta:
     --grafite:   #232425  (fundo escuro principal)
     --teal:      #353C3D  (verde acinzentado)
     --vinho:     #432A35  (bordô mineral)
     --pedra:     #C0BFBF  (cinza médio)
     --off-white: #E0E0DE  (quase branco)
   Tipografia:
     Cormorant Garamond — display/wordmark
     Inter            — corpo/interface
   ============================================================ */

/* Gilroy — família completa via arquivos locais em gilroy-font/ */
@font-face {
  font-family: 'Gilroy';
  src: url('/static/fonts/gilroy-font/Gilroy-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/static/fonts/gilroy-font/Gilroy-LightItalic.ttf') format('truetype');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/static/fonts/gilroy-font/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/static/fonts/gilroy-font/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/static/fonts/gilroy-font/Gilroy-Semibold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/static/fonts/gilroy-font/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

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

:root {
  --grafite:   #232425;
  --teal:      #353C3D;
  --vinho:     #432A35;
  --pedra:     #C0BFBF;
  --off-white: #E0E0DE;
  --white:     #FFFFFF;

  /* Gilroy SemiBold — títulos / display (arquivo local: fonts/Gilroy-SemiBold.woff2) */
  --font-display: 'Gilroy', 'Cormorant Garamond', Georgia, serif;
  /* Cormorant Garamond — citações / destaques em bold (substitui os itálicos) */
  --font-accent:  'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  8rem;

  --radius: 2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--grafite);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  background: var(--off-white);
  color: var(--grafite);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: top var(--transition);
}
.skip-link:focus {
  top: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ── NAV LOGO SYMBOL size ── */
.nav__symbol    { width: 26px; height: auto; color: var(--off-white); }
.footer__symbol { width: 22px; height: auto; color: var(--pedra); }

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}
.btn--light {
  background: var(--off-white);
  color: var(--grafite);
  border-color: var(--off-white);
}
.btn--light:hover {
  background: transparent;
  color: var(--off-white);
}
.btn--outline {
  background: transparent;
  color: var(--off-white);
  border-color: var(--off-white);
}
.btn--outline:hover {
  background: var(--off-white);
  color: var(--grafite);
}
.btn--vinho {
  background: var(--vinho);
  color: var(--off-white);
  border-color: var(--vinho);
  text-decoration: none;
}
.btn--vinho:hover {
  background: transparent;
  color: var(--vinho);
}
.btn--vinho-outline {
  background: transparent;
  color: var(--vinho);
  border: 1px solid var(--vinho);
  text-decoration: none;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .6rem 1.4rem;
  line-height: 1.5;
  text-align: left;
  display: inline-block;
  transition: background .25s ease, color .25s ease;
}
.btn--vinho-outline:hover {
  background: var(--vinho);
  color: var(--off-white);
}
.btn--dark {
  background: var(--grafite);
  color: var(--off-white);
  border-color: var(--grafite);
  width: 100%;
  text-align: center;
}
.btn--dark:hover {
  background: var(--teal);
  border-color: var(--teal);
}
/* Quebra de linha do botão de envio: só no mobile (celular) */
.btn__mobile-break { display: none; }
/* Quebras do título de Capital Humano: pontos de quebra diferentes no
   desktop (2 linhas, quebra após "para") e no mobile (3 linhas, quebra
   após "preparada" e após "e") */
.equipe__mobile-break  { display: none; }
.equipe__desktop-break { display: inline; }

/* ════════════════════════════════════════
   NAV
   — Invisível sobre o hero fullscreen.
   — Aparece com fade ao rolar para fora do hero.
   ════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease, background 0.45s ease, padding 0.45s ease;
}
.nav.visible {
  opacity: 1;
  pointer-events: auto;
}
.nav.scrolled {
  background: rgba(35, 36, 37, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.9rem var(--space-md);
  border-bottom: 1px solid rgba(192, 191, 191, 0.1);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--off-white);
}
.nav__symbol {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.nav__wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}
.nav__tagline {
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--pedra);
  opacity: 0.6;
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav__link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pedra);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link--cta {
  border: 1px solid var(--pedra);
  padding: 0.45rem 1.1rem;
  color: var(--off-white);
}
.nav__link--cta:hover {
  background: var(--off-white);
  color: var(--grafite);
  border-color: var(--off-white);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--off-white);
  transition: background-color var(--transition), transform var(--transition);
}

/* ════════════════════════════════════════
   HERO — FULLSCREEN VIDEO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #0e0f0f;
}

/* Vídeo ocupa toda a tela */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* Camada sólida sobre o vídeo — realça o logo e o título em branco */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--grafite);
  opacity: .58;
  pointer-events: none;
}

/* Logo + título centralizados sobre o vídeo */
.hero__logo-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  padding: 0 1.5rem 5rem;
}

.hero__logo-overlay-img {
  width: clamp(150px, 18vw, 260px);
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
  animation: logoFadeIn 1.8s ease forwards;
  transition: transform .1s linear;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--off-white);
  line-height: 1.15;
  letter-spacing: -.01em;
  text-align: center;
  max-width: 700px;
  margin: 3.5rem auto 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  animation: logoFadeIn 1.4s ease forwards;
  opacity: 0;
  animation-delay: .4s;
  transition: transform .1s linear, opacity .1s linear;
}

.hero__headline span {
  display: inline-block;
  font-size: .74em;
  letter-spacing: .02em;
}

.hero__headline b {
  font-family: var(--font-display);
  font-weight: 500;
}

.hero__headline em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15em;
}

/* Faixa de texto de apoio — abaixo do vídeo hero */
.hero-copy {
  background: var(--pedra);
  padding: var(--space-lg) 0;
  position: relative;
}

.hero-copy__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
}

.hero-copy__text {
  text-align: left;
  max-width: 460px;
}

.hero-copy__text p {
  font-family: var(--font-body);
  font-size: clamp(.85rem, 1.1vw, 1.05rem);
  color: #4b4b49;
  line-height: 1.85;
  margin: 0 0 1.25rem;
}

.hero-copy__text p:last-child { margin-bottom: 0; }

.hero-copy__cta {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--grafite);
  text-decoration: none;
  text-align: left;
  line-height: 1.3;
  transition: color .25s ease, transform .25s ease;
}

.hero-copy__cta::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -.35rem;
  width: 100%;
  height: 2px;
  background: var(--vinho);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.hero-copy__cta em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15em;
  color: var(--vinho);
  transition: color .25s ease;
}

.hero-copy__cta:hover {
  color: var(--vinho);
  transform: translateX(4px);
}

.hero-copy__cta:hover::after { transform: scaleX(1); }

.hero-copy__cta:hover em { color: var(--grafite); }

@media (max-width: 768px) {
  .hero__headline { font-size: 1.75rem; }
  .hero-copy__inner {
    flex-direction: column;
    align-items: center;
  }
  /* Texto primeiro, botão depois no mobile (ordem visual — o HTML continua
     com o CTA primeiro, só inverte como aparece na tela) */
  .hero-copy__text { order: 1; }
  .hero-copy__cta  { order: 2; }
  /* CTA "Inicie a retomada do seu direito" — centraliza e adiciona uma
     borda ao redor para sinalizar que é um botão (mesma tipografia) */
  .hero-copy__cta {
    align-self: center;
    text-align: center;
    border: 1px solid var(--grafite);
    padding: 1.1rem 1.75rem;
  }
  .hero-copy__cta::after { display: none; }
}

@keyframes logoFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 0.92; transform: translateY(0); }
}

/* Placeholder centralizado enquanto o vídeo não carrega */
.hero__placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grafite);
  transition: opacity 0.6s ease;
}
.hero__placeholder.hidden { opacity: 0; pointer-events: none; }

/* Controles discretos — canto inferior direito */
.hero__controls {
  position: absolute;
  bottom: 2rem;
  right: 6rem;
  z-index: 5;
  display: flex;
  gap: 0.6rem;
}

.hero__ctrl-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(35, 36, 37, 0.55);
  border: 1px solid rgba(192, 191, 191, 0.2);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background var(--transition), border-color var(--transition);
}
.hero__ctrl-btn:hover {
  background: rgba(67, 42, 53, 0.75);
  border-color: rgba(192, 191, 191, 0.5);
}
.hero__ctrl-btn svg { width: 18px; height: 18px; }

/* ── Indicador de scroll ── */
.hero__scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: opacity .1s linear;
}

.hero__scroll-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--off-white);
  white-space: nowrap;
  opacity: 0.85;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* mouse outline */
.hero__mouse {
  width: 18px;
  height: 28px;
  border: 1.5px solid rgba(224,224,222,0.75);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 4px;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.hero__mouse-wheel {
  width: 2px;
  height: 5px;
  background: var(--off-white);
  border-radius: 2px;
  animation: mouseWheel 1.6s ease-in-out infinite;
}

@keyframes mouseWheel {
  0%   { transform: translateY(0);   opacity: 1; }
  60%  { transform: translateY(8px); opacity: 0; }
  61%  { transform: translateY(0);   opacity: 0; }
  100% { transform: translateY(0);   opacity: 1; }
}

/* linha com fade in/out */
.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--off-white), transparent);
  animation: lineFade 2s ease-in-out infinite;
}

@keyframes lineFade {
  0%, 100% { opacity: 0; }
  40%, 60%  { opacity: 0.8; }
}



/* ════════════════════════════════════════
   SOBRE
   ════════════════════════════════════════ */
.sobre {
  padding: var(--space-xl) 0;
  background: var(--off-white);
  color: var(--grafite);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "tag   foto"
    "title foto"
    "para  foto"
    "cred  foto";
  column-gap: 5rem;
  row-gap: 0.5rem;
  align-items: start;
}

.sobre__tag  { grid-area: tag; }
.sobre__title { grid-area: title; }
.sobre__paragrafos { grid-area: para; }
.sobre__credencial { grid-area: cred; }

.sobre__right {
  grid-area: foto;
  position: sticky;
  top: 6rem;
}

.sobre__foto {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  display: block;
}

.sobre__foto-placeholder {
  width: 100%;
  min-height: 420px;
  background: rgba(67,42,53,.06);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(67,42,53,.35);
  font-size: .8rem;
  letter-spacing: .05em;
}
.sobre__foto-placeholder svg {
  width: 80px;
  height: 80px;
}

.sobre__tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vinho);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.sobre__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  text-wrap: balance;
  color: var(--grafite);
  margin-bottom: 1rem;
}
.sobre__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  color: var(--vinho);
  font-size: 1.15em;
}
/* "É a retomada da sua dignidade" — levemente maior que a 1ª linha,
   pra dar um destaque sutil sem competir com o <em> interno */
.sobre__title-destaque {
  display: inline-block;
  font-size: 1.1em;
}

.sobre__paragrafos { min-width: 0; }

.sobre__paragrafos p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}
.sobre__paragrafos p:last-child { margin-bottom: 0; }
.sobre__paragrafos p strong {
  color: var(--grafite);
  font-weight: 500;
}

.sobre__credencial {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(35, 36, 37, 0.15);
}
.sobre__credencial-num {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.sobre__numero {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--vinho);
}
.sobre__label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
}

/* ════════════════════════════════════════
   ATUAÇÃO
   ════════════════════════════════════════ */
.atuacao {
  /* sem background global — intro e cards têm os seus */
}

.atuacao__intro-section {
  background: var(--teal);
  padding: var(--space-xl) 0 var(--space-lg);
}

.atuacao__tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pedra);
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0.7;
}
.atuacao__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  max-width: 640px;
}
.atuacao__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15em;
  color: #C0BFBF;
}
.atuacao__intro {
  font-size: 1rem;
  color: var(--pedra);
  line-height: 1.7;
  opacity: 0.85;
  max-width: 540px;
}
.atuacao__intro strong {
  color: var(--off-white);
  font-weight: 500;
}

/* ── Cards empilháveis ── */
.atuacao__stack {
  position: relative;
  background: var(--teal);
}
.atuacao__stack-item {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--card-bg, #2c3334);
  display: flex;
  align-items: center;
  overflow: hidden;
  will-change: transform;
  transform-origin: top center;
  padding-top: 10vh;
  clip-path: polygon(0% 12%, 100% 3%, 100% 100%, 0% 100%);
}
.atuacao__stack-inner {
  position: relative;
  width: 100%;
}
.atuacao__stack-num {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-60%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  user-select: none;
  pointer-events: none;
}
.atuacao__stack-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--off-white);
  margin-bottom: 2rem;
}
.atuacao__stack-title span {
  color: rgba(224, 224, 222, 0.38);
}
.atuacao__stack-desc {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--pedra);
  line-height: 1.75;
  max-width: 460px;
  opacity: 0.75;
}

/* ════════════════════════════════════════
   CAPITAL HUMANO (EQUIPE)
   ════════════════════════════════════════ */
.equipe {
  position: relative;
  padding: var(--space-xl) 0;
  background: var(--off-white);
  color: var(--grafite);
  overflow: hidden;
}
.equipe__bg-pattern {
  position: absolute;
  inset: 0;
  background-color: var(--grafite);
  -webkit-mask-image: url('/static/img/PATTERN_01.png');
  mask-image: url('/static/img/PATTERN_01.png');
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  -webkit-mask-size: 1600px auto;
  mask-size: 1600px auto;
  opacity: 0.03;
  pointer-events: none;
}
.equipe .container { position: relative; z-index: 1; }
.equipe__tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vinho);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

/* Layout principal: título centralizado → foto paisagem → texto em colunas */
.equipe__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
  max-width: 920px;
  margin: 0 auto;
}
.equipe__col-foto {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.equipe__frame {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  aspect-ratio: 21 / 6;
  border-radius: 0;
  overflow: hidden;
  background: rgba(67,42,53,.07);
}
.equipe__retrato-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 33%;
  display: block;
  opacity: 0;
  filter: blur(0px);
  will-change: opacity, filter;
}
.equipe__retrato-img.is-active { opacity: 1; }

/* foto atual dissolve com blur por cima da próxima já visível */
@keyframes equipeBlurOut {
  from { opacity: 1; filter: blur(0px); }
  to   { opacity: 0; filter: blur(16px); }
}
.equipe--blur-out { animation: equipeBlurOut .42s ease forwards; }

.equipe__nome {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--grafite);
  letter-spacing: .02em;
  min-height: 1.4em;
}

/* ── Título + texto ── */
.equipe__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: var(--grafite);
  width: 100%;
  max-width: 900px;
}
.equipe__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15em;
  color: var(--vinho);
}
.equipe__text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #444;
  columns: 2;
  column-gap: 3rem;
  text-align: left;
  width: 100%;
}
.equipe__text strong {
  color: var(--grafite);
  font-weight: 500;
}
.equipe__text-col2 {
  display: block;
  break-before: column;
}

/* ════════════════════════════════════════
   NOSSA ESTRUTURA (LIQUID GLASS)
   ════════════════════════════════════════ */
.estrutura {
  padding: clamp(2rem, 5vw, 3.5rem) 0 0;
  background: var(--grafite);
  color: var(--off-white);
}
.estrutura__tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pedra);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Gallery: coverflow com fundo sólido liso */
.estrutura__gallery {
  position: relative;
  background: var(--grafite);
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  margin-bottom: 2rem;
  overflow: hidden;
}

/* Stage — palco 3D onde os cards ficam posicionados
   Altura ~= altura do card central ampliado (1.35x), sem sobra vertical */
.estrutura__stage {
  position: relative;
  height: clamp(240px, 24vw, 430px);
  perspective: 1400px;
  /* Permite arrastar com o dedo para trocar de foto (JS) sem brigar com
     a rolagem vertical nativa da página — só o eixo X é "tomado" */
  touch-action: pan-y;
}

/* Cada card — dimensões próprias da foto (16:9), sem forçar recorte de referência */
.estrutura__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(260px, 30vw, 520px);
  aspect-ratio: 16 / 9;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: transform .7s cubic-bezier(.22,.68,.28,1), opacity .7s ease;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  cursor: pointer;
}
.estrutura__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Nav arrows — minimalistas (sem círculo/fundo), bem coladas na foto
   em destaque no centro, mesma escala de ícone usada em Avaliações */
.estrutura__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--off-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .25s, transform .25s;
  padding: 0;
  opacity: .85;
}
.estrutura__nav:hover { opacity: 1; }
.estrutura__nav svg { width: 18px; height: 18px; stroke-width: 1.5; }
/* Distância a partir do centro do palco = metade da largura do card
   central (que escala 1.35x) + um respiro fixo */
.estrutura__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.estrutura__nav--next:hover { transform: translateY(-50%) translateX(3px); }
.estrutura__nav--prev { left: calc(50% - (clamp(260px, 30vw, 520px) * 1.35 / 2) - 3rem); }
.estrutura__nav--next { right: calc(50% - (clamp(260px, 30vw, 520px) * 1.35 / 2) - 3rem); }

/* Footer text: title left / body right */
.estrutura__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
  padding: var(--space-lg) 0 var(--space-xl);
}
.estrutura__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.25;
  text-wrap: balance;
  color: var(--off-white);
}
.estrutura__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15em;
  color: var(--pedra);
}
.estrutura__text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--pedra);
  padding-top: .4rem;
}
.estrutura__text strong {
  color: var(--off-white);
  font-weight: 500;
}

/* ════════════════════════════════════════
   DIFERENCIAIS
   ════════════════════════════════════════ */
.diferenciais {
  position: relative;
  padding: var(--space-xl) 0;
  background: var(--vinho);
  overflow: hidden;
}

.diferenciais__bg-pattern {
  position: absolute;
  inset: 0;
  background-color: var(--white);
  -webkit-mask-image: url('/static/img/PATTERN_03.png');
  mask-image: url('/static/img/PATTERN_03.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: cover;
  opacity: 0.02;
  pointer-events: none;
}

.diferenciais__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.diferenciais__tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(224, 224, 222, 0.5);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.diferenciais__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  text-wrap: balance;
  color: var(--off-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.diferenciais__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15em;
}
.diferenciais__text {
  font-size: 1rem;
  color: rgba(224, 224, 222, 0.75);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.diferenciais__text strong {
  color: #fff;
  font-weight: 500;
}

.diferenciais__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem 0;
}

.diferenciais__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: rgba(224, 224, 222, 0.5);
  margin-top: 2px;
}
.diferenciais__icon svg { width: 100%; height: 100%; }
.diferenciais__icon img { width: 100%; height: 100%; object-fit: contain; }

.diferenciais__item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.4rem;
}
.diferenciais__item p {
  font-size: 0.875rem;
  color: rgba(224, 224, 222, 0.65);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   AVALIAÇÕES
   ════════════════════════════════════════ */
.avaliacoes {
  background: var(--grafite);
  padding: var(--space-xl) 0;
  overflow: hidden;
}
.avaliacoes__header {
  text-align: center;
  margin-bottom: 3rem;
}
.avaliacoes__tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pedra);
  opacity: 0.6;
  margin-bottom: 1rem;
  font-weight: 500;
}
.avaliacoes__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.2;
  text-wrap: balance;
  margin-bottom: 1.25rem;
}
.avaliacoes__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15em;
  color: var(--pedra);
}
.avaliacoes__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.avaliacoes__stars {
  color: #FBBC04;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.avaliacoes__score {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--off-white);
}
.avaliacoes__total {
  font-size: 0.78rem;
  color: var(--pedra);
  opacity: 0.55;
}

/* Carrossel infinito — a trilha (cards + cópia) rola continuamente em
   loop; a cópia (.avaliacoes__track-dup, aria-hidden) garante que o
   ponto de emenda em -50% seja visualmente idêntico ao início */
.avaliacoes__track-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.avaliacoes__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.5rem 0 1.5rem;
  animation: avaliacoesScroll 38s linear infinite;
}
.avaliacoes__track-dup { display: contents; }
.avaliacoes__track-wrap:hover .avaliacoes__track { animation-play-state: paused; }

@keyframes avaliacoesScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Cards */
.avaliacoes__card {
  flex: 0 0 340px;
  width: 340px;
  background: #fff;
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 640px) {
  /* Cards bem menores no mobile — mostra mais de uma avaliação por vez
     em vez de quase uma única ocupando a tela toda */
  .avaliacoes__track { gap: 0.75rem; }
  .avaliacoes__card {
    flex: 0 0 58vw;
    width: 58vw;
    max-width: 210px;
    padding: 0.85rem;
    gap: 0.4rem;
    border-radius: 5px;
  }
  .avaliacoes__card-top { gap: 0.5rem; }
  .avaliacoes__avatar { width: 30px; height: 30px; font-size: 0.8rem; }
  .avaliacoes__meta strong { font-size: 0.8rem; }
  .avaliacoes__google { width: 16px; height: 16px; }
  .avaliacoes__stars-sm { font-size: 0.75rem; }
  .avaliacoes__text { font-size: 0.72rem; line-height: 1.5; }
}
.avaliacoes__card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avaliacoes__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vinho);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.avaliacoes__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
}
.avaliacoes__meta strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}
.avaliacoes__google {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.avaliacoes__stars-sm {
  color: #FBBC04;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.avaliacoes__text {
  font-size: 0.82rem;
  color: #333;
  line-height: 1.65;
  flex: 1;
}

/* Rodapé */
.avaliacoes__footer {
  text-align: center;
  margin-top: 2rem;
}
.avaliacoes__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pedra);
  opacity: 0.55;
  text-decoration: none;
  border-bottom: 1px solid rgba(192,191,191,0.25);
  padding-bottom: 0.25rem;
  transition: opacity 0.2s, border-color 0.2s;
}
.avaliacoes__cta:hover {
  opacity: 1;
  border-color: var(--pedra);
}

/* ════════════════════════════════════════
   BLOG DESTAQUE
   ════════════════════════════════════════ */
.blog-destaque {
  padding: var(--space-xl) 0;
  background: #1a1b1b;
}

.blog-destaque__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-destaque__tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pedra);
  opacity: 0.6;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0.75rem;
}

.blog-destaque__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  text-wrap: balance;
  color: var(--off-white);
  line-height: 1.2;
}

.blog-destaque__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15em;
  color: var(--pedra);
}

.blog-destaque__ver-todos {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pedra);
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.blog-destaque__ver-todos:hover { opacity: 1; color: var(--off-white); }

.blog-destaque__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.blog-destaque__card {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  color: inherit;
  group: true;
}

.blog-destaque__img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--teal);
  margin-bottom: 1rem;
}

.blog-destaque__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blog-destaque__card:hover .blog-destaque__img {
  transform: scale(1.04);
}

.blog-destaque__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
}
.blog-destaque__img-placeholder svg {
  width: 40%;
  height: auto;
  color: rgba(192,191,191,0.2);
}

.blog-destaque__info {
  padding: 0 0.25rem;
}

.blog-destaque__data {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pedra);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.blog-destaque__card-titulo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.35;
  transition: color var(--transition);
}
.blog-destaque__card:hover .blog-destaque__card-titulo {
  color: var(--pedra);
}

.blog-destaque__vazio {
  color: var(--pedra);
  opacity: 0.5;
  font-size: 0.9rem;
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .blog-destaque__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-destaque__header { flex-direction: column; align-items: flex-start; }

  /* Carrossel horizontal com scroll-snap no mobile */
  .blog-destaque__grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* Não restringe o eixo (auto): permite o navegador decidir — arrasto
       lateral move o carrossel, mas a rolagem vertical da página continua
       funcionando normalmente ao tocar sobre ele. */
    overscroll-behavior-x: contain;
    gap: 1rem;
    padding-bottom: 0.5rem;
    margin: 0 calc(var(--space-md) * -1);
    /* Um pouco mais que a margem padrão da página, para o respiro antes
       do 1º card ficar visualmente claro como "espaço de carrossel"
       (não só a margem normal do conteúdo) — simétrico dos dois lados */
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .blog-destaque__grid::-webkit-scrollbar { display: none; }

  .blog-destaque__card {
    flex: 0 0 72vw;
    max-width: 300px;
    scroll-snap-align: start;
  }

  /* Evita a "sensação de arrastar" a imagem em si (drag nativo do
     navegador ao segurar e mover o dedo sobre a foto) */
  .blog-destaque__img,
  .blog-destaque__img-wrap {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-touch-callout: none;
  }

  .blog-destaque__vazio { flex: 1; }
}

/* ════════════════════════════════════════
   DÚVIDAS FREQUENTES (FAQ)
   ════════════════════════════════════════ */
.faq {
  padding: var(--space-xl) 0;
  background: var(--off-white);
  color: var(--grafite);
}

.faq__header {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.faq__tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vinho);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.faq__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  text-wrap: balance;
  color: var(--grafite);
}
.faq__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15em;
  color: var(--vinho);
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(35, 36, 37, 0.15);
}
.faq__item:first-child {
  border-top: 1px solid rgba(35, 36, 37, 0.15);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: var(--grafite);
  cursor: pointer;
  list-style: none;
  transition: color .25s ease;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--vinho); }

.faq__icon {
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq__icon::before { width: 18px; height: 1.5px; }
.faq__icon::after   { width: 1.5px; height: 18px; transition: transform .3s ease; }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }

.faq__answer {
  padding: 0 0.25rem 1.75rem;
  max-width: 640px;
  font-size: 0.98rem;
  line-height: 1.85;
  color: #444;
}

@media (max-width: 640px) {
  .faq__header { margin-bottom: 2.5rem; }
  .faq__question { padding: 1.35rem 0.25rem; gap: 1rem; }
}

/* ════════════════════════════════════════
   CONTATO
   ════════════════════════════════════════ */
.contato {
  padding: var(--space-xl) 0;
  background: var(--grafite);
}

.contato__header {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: var(--space-lg);
}
.contato__header-left {
  flex: 0 1 auto;
  min-width: 0;
}
.contato__tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pedra);
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0.7;
}
.contato__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  text-wrap: balance;
  color: var(--off-white);
  line-height: 1.1;
}
.contato__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15em;
  color: var(--pedra);
}

.contato__intro {
  font-family: var(--font-body);
  font-size: clamp(.85rem, 1.05vw, 1rem);
  color: var(--pedra);
  line-height: 1.75;
  flex: 0 1 360px;
  margin-top: 0;
  margin-left: 2rem;
  padding-left: 2rem;
  border-left: 1px solid rgba(224, 224, 222, 0.15);
}
.contato__intro strong {
  color: var(--off-white);
  font-weight: 500;
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-lg);
  align-items: start;
}

.contato__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(192, 191, 191, 0.12);
}
.contato__label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pedra);
  opacity: 0.6;
}
.contato__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--off-white);
  line-height: 1.5;
}
.contato__link { transition: color var(--transition); }
.contato__link:hover { color: var(--pedra); }

/* Form */
.contato__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form__group label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pedra);
  opacity: 0.65;
}
.form__group input,
.form__group textarea {
  background: rgba(192, 191, 191, 0.06);
  border: 1px solid rgba(192, 191, 191, 0.15);
  color: var(--off-white);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  resize: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(192, 191, 191, 0.3); }
.form__group input:focus-visible,
.form__group textarea:focus-visible {
  border-color: var(--pedra);
  background: rgba(192, 191, 191, 0.09);
  box-shadow: 0 0 0 2px rgba(192, 191, 191, 0.35);
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: #1a1b1b;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(192, 191, 191, 0.08);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--pedra);
}
.footer__logo svg {
  width: 24px;
  height: 24px;
}
.footer__logo div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__logo strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--off-white);
}
.footer__logo span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pedra);
  opacity: 0.5;
}

.footer__copy {
  font-size: 0.72rem;
  color: var(--pedra);
  opacity: 0.4;
  letter-spacing: 0.05em;
}

.footer__admin-link {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pedra);
  opacity: 0.6;
  border: 1px solid rgba(192,191,191,0.3);
  padding: 0.4rem 1rem;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.footer__admin-link:hover {
  opacity: 1;
  border-color: var(--pedra);
}

/* ════════════════════════════════════════
   WHATSAPP FLUTUANTE
   ════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5), 0 3px 12px rgba(0,0,0,0.3);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Tooltip */
.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--grafite);
  color: var(--off-white);
  font-size: 0.72rem;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 0.45rem 0.85rem;
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  border: 1px solid rgba(192,191,191,0.15);
}
.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--grafite);
}
.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__left {
    padding: 8rem var(--space-md) var(--space-md);
    min-height: 65vh;
  }
  .hero__right {
    height: 56vw;
    min-height: 320px;
  }
  .hero__scroll { display: none; }
}

@media (max-width: 900px) {
  .estrutura__footer,
  .diferenciais__inner,
  .contato__grid {
    grid-template-columns: 1fr;
  }

  /* Diferenciais — botão "Fale conosco" centralizado no mobile */
  .diferenciais__left .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  /* Contato — título e texto auxiliar voltam a empilhar no mobile
     (no desktop ficam lado a lado) */
  .contato__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .contato__intro {
    flex: none;
    max-width: 100%;
    margin-top: 1.5rem;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }

  /* Contato — formulário antes das informações de atendimento */
  .contato__form { order: -1; }

  /* Botão de envio: mesmo fundo da seção (grafite) o deixava sem contorno
     visível — adiciona uma borda para reforçar que é clicável */
  .contato__form .btn--dark {
    border-color: var(--pedra);
  }
  .btn__mobile-break { display: inline; }
  .equipe__mobile-break  { display: inline; }
  .equipe__desktop-break { display: none; }


  /* Sobre — ordem mobile: tag, título, foto, credencial, texto */
  .sobre__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tag"
      "title"
      "foto"
      "cred"
      "para";
    gap: 2rem;
  }
  .sobre__right { position: static; }
  .sobre__credencial {
    justify-content: center;
    text-align: center;
    border-top: none;
    padding-top: 0;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(35, 36, 37, 0.15);
  }

  /* Atuação — cards compactos no mobile, sem efeito sticky/scroll-stack */
  .atuacao__stack {
    background: var(--teal);
  }
  .atuacao__stack-item {
    position: relative;
    height: auto;
    /* Mais respiro vertical interno (entre o recorte, o título/texto e a base).
       Topo maior que a base para o texto ficar um pouco mais centralizado
       no card (sem mudar a altura total do card). */
    padding: 5.5rem 0 2.5rem;
    /* Recorte com dois níveis: rampa diagonal à esquerda + patamar reto à
       direita, com a "ponta" visível no vértice — mesmo formato do
       arquivo plano de fundo.png (não é uma diagonal única) */
    clip-path: polygon(0% 14%, 46% 4%, 100% 4%, 100% 100%, 0% 100%);
    /* Todos os cards se sobrepõem igualmente (mesmo padrão estético),
       revelando a cor do card anterior no recorte — sem vãos cinzas */
    margin-top: -3.5rem;
    transform: none !important;
    filter: none !important;
  }
  /* O 1º card sobrepõe a seção de introdução (também teal) acima dele,
     revelando essa mesma cor no corte. O overlap de -3.5rem do card
     "come" parte do padding-bottom da intro, então compensa aqui para
     sobrar respiro visível abaixo do texto "...clareza e firmeza." */
  .atuacao__intro-section {
    position: relative;
    z-index: 1;
    padding-bottom: 7rem;
  }
  /* Idem entre os cards de tópicos: o overlap negativo do próximo card
     consome o padding-bottom do card atual, então os cards que não são
     o último recebem padding extra para sobrar o mesmo respiro visível
     que já existe depois do último card (Vínculo Empregatício) */
  .atuacao__stack-item:not(:last-child) {
    padding-bottom: 6rem;
  }
  .atuacao__stack-title { font-size: clamp(2.2rem, 9vw, 3rem); margin-bottom: 1.25rem; }
  .atuacao__stack-num   { display: none; }
  .atuacao__stack-desc { max-width: 100%; }

  /* Títulos das seções — no mobile os clamp() batiam no piso (2rem+) e
     quebravam em muitas linhas. Reduz para ocupar menos linhas mantendo
     a leitura confortável. */
  .sobre__title          { font-size: 1.55rem; }
  .atuacao__title        { font-size: 1.7rem; }
  .equipe__title         { font-size: 1.4rem; }
  .estrutura__title      { font-size: 1.5rem; }
  .diferenciais__title   { font-size: 1.7rem; }
  .avaliacoes__title     { font-size: 1.7rem; }
  .blog-destaque__title  { font-size: 1.55rem; }
  .faq__title            { font-size: 1.7rem; }
  .contato__title        { font-size: 1.9rem; }

  /* Capital Humano — texto em coluna única no mobile (2 colunas fica apertado) */
  .equipe__layout { gap: 2.5rem; }
  .equipe__text { columns: 1; }
  .equipe__text-col2 { display: inline; break-before: auto; }
  .estrutura__stage { height: clamp(200px, 62vw, 320px); }
  .estrutura__slide { width: clamp(200px, 62vw, 340px); }
  .estrutura__footer { grid-template-columns: 1fr; gap: 1.5rem; }
  /* Sem setas no mobile — a navegação é só arrastando com o dedo */
  .estrutura__nav { display: none; }
}

@media (max-width: 640px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 5rem;
  }
  .nav__menu { display: none; flex-direction: column; gap: 0; }
  .nav__menu.is-open {
    display: flex;
    position: fixed;
    /* top é definido via JS (script.js) para casar com a altura real da barra superior */
    top: 70px;
    left: 0;
    right: 0;
    bottom: auto;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(35, 36, 37, 0.08);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 2rem 1.5rem;
    z-index: 99;
    animation: navMenuIn .3s ease both;
  }
  .nav__menu.is-open .nav__link,
  .nav__menu.is-open .nav__link--cta {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--grafite);
    text-align: center;
    padding: 1.05rem 0;
    margin: 0;
    border: none;
    border-bottom: 1px solid rgba(35, 36, 37, 0.1);
    opacity: 0;
    animation: navLinkIn .4s ease forwards;
  }
  .nav__menu.is-open .nav__link:last-child { border-bottom: none; }
  .nav__menu.is-open .nav__link:hover,
  .nav__menu.is-open .nav__link--cta:hover { color: var(--vinho); }
  .nav__menu.is-open .nav__link:nth-child(1) { animation-delay: .04s; }
  .nav__menu.is-open .nav__link:nth-child(2) { animation-delay: .08s; }
  .nav__menu.is-open .nav__link:nth-child(3) { animation-delay: .12s; }
  .nav__menu.is-open .nav__link:nth-child(4) { animation-delay: .16s; }
  .nav__menu.is-open .nav__link:nth-child(5) { animation-delay: .20s; }
  .nav__menu.is-open .nav__link:nth-child(6) { animation-delay: .24s; }
  @keyframes navMenuIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes navLinkIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav__toggle { display: flex; z-index: 101; position: relative; }
  .nav__toggle span { transition: transform .3s ease, opacity .2s ease; }

  .hero__left { padding: 7rem var(--space-sm) var(--space-md); }
  .hero__right { height: 75vw; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .equipe__layout { gap: 2rem; }

  /* Evita colisão dos controles do vídeo com o botão flutuante do WhatsApp */
  .hero__controls {
    right: 1.25rem;
    bottom: 5.5rem;
  }

  /* Foto da seção Sobre não deve grudar na tela quando empilhada em coluna única */
  .sobre__right {
    position: static;
  }

  .hero-copy__inner { gap: 2rem; }

  .whatsapp-float { width: 50px; height: 50px; bottom: 1.5rem; right: 1.5rem; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* ════════════════════════════════════════
   PREFERS-REDUCED-MOTION
   Desativa animações contínuas/infinitas e
   reduz as demais a transições instantâneas
   ════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__mouse-wheel,
  .hero__scroll-line {
    animation: none !important;
    opacity: 0.6;
  }

  .atuacao__stack-item {
    transform: none !important;
    filter: none !important;
  }

  .avaliacoes__track {
    animation: none !important;
    transform: none !important;
    overflow-x: auto;
    width: auto;
  }
  .avaliacoes__track-dup { display: none !important; }

  .estrutura__slide {
    transition: opacity 0.01ms linear !important;
  }
}

