/* =============================================
   APOSENTE CAMPO GRANDE — Style.css
   HTML5 + CSS3 (Flexbox, Grid, Variables)
   Editorial Jurídico — Preto & Dourado
   ============================================= */

/* ====== CSS VARIABLES ====== */
:root {
  --preto-justica: #0A0A0A;
  --dourado: #fcd403;
  --dourado-escuro: #c9a900;
  --amarelo: #fcd403;
  --bege: #FAF7ED;
  --off-white: #FAFAF7;
  --branco: #FFFFFF;
  --cinza-toga: #3A3A3A;
  --cinza-sutil: #8C8C8C;
  --cinza-medio: #6B6B6B;
  --erro: #DC3545;
  --sucesso: #28A745;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Playfair Display', Georgia, serif;

  --container-margin: 5vw;
  --section-pad: 120px;
  --section-pad-tablet: 80px;
  --section-pad-mobile: 60px;

  --radius-card: 16px;
  --radius-pill: 50px;
  --radius-input: 8px;

  --shadow-card: 0 4px 24px rgba(10, 10, 10, 0.06);
  --shadow-card-hover: 0 12px 32px rgba(252, 212, 3, 0.18);
  --shadow-cta: 0 8px 24px rgba(252, 212, 3, 0.28);

  --transition-fast: 200ms ease;
  --transition-medium: 280ms ease-out;
  --transition-slow: 400ms ease;

  /* Cookie Banner — sincronizado com a paleta do site */
  --ck-accent: #fcd403;
  --ck-accent-dark: #c9a900;
  --ck-accent-rgb: 252, 212, 3;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--cinza-toga);
  background-color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 16px;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select { font: inherit; }

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

ul, ol { list-style: none; }

button { cursor: pointer; border: none; background: none; }

:focus-visible { outline: 2px solid var(--dourado); outline-offset: 2px; }

/* Noise grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ====== TYPOGRAPHY ====== */
.font-display { font-family: var(--font-display); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dourado);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--preto-justica);
}

.section-title--white { color: var(--branco); }
.section-title--gold { color: #E6D04C; } /* Amarelo da empresa suavizado */

/* ====== LAYOUT ====== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-margin);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--offwhite { background-color: var(--off-white); }
.section--bege { background-color: var(--bege); }
.section--dark { background-color: var(--preto-justica); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ====== BUTTONS ====== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  background-color: var(--preto-justica);
  color: var(--dourado);
  border: 2px solid var(--dourado);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--dourado);
  color: var(--preto-justica);
  transform: scale(1.03);
  box-shadow: var(--shadow-cta);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--preto-justica);
  border: 2px solid var(--preto-justica);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: var(--preto-justica);
  color: var(--branco);
}

.btn-secondary-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--branco);
  border: 2px solid var(--branco);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary-white:hover {
  background-color: var(--branco);
  color: var(--preto-justica);
}

.btn-full { width: 100%; }

/* ====== NAVBAR ====== */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, 92%);
  height: 76px;
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  z-index: 1000;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Efeito de textura no vidro da nav */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.navbar--scrolled {
  top: 16px;
  height: 68px;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(252, 212, 3, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(252, 212, 3, 0.08);
  width: min(1100px, 90%);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  margin: 0 auto;
}

.logo-img {
  display: block;
  height: auto;
  transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255,255,255,0.1));
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-img--desktop {
  height: 42px;
}

.navbar--scrolled .logo-img--desktop {
  height: 36px;
}

.logo-img--footer {
  height: 100px; /* Aumentado de 80px para dar mais destaque */
  margin-bottom: 24px;
}

.logo-img--mobile {
  height: 48px; /* Aumentado de 40px */
}

.navbar-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  position: relative;
  color: var(--branco);
  font-size: 0.8125rem; /* Levemente menor para mais elegância */
  font-weight: 500;
  padding: 8px 0;
  letter-spacing: 0.05em;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase; /* Editorial look */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--dourado);
  letter-spacing: 0.12em; /* Expansão elegante */
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-cta {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  background: var(--dourado);
  color: var(--preto-justica);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(252, 212, 3, 0.35);
}

/* Efeito Shimmer */
.navbar-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: all 600ms;
}

.navbar-cta:hover::before {
  left: 100%;
}

.navbar-cta:hover {
  background: var(--branco);
  color: var(--preto-justica);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Hamburger */
.navbar-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--branco);
  transition: all 300ms ease;
  border-radius: 1px;
}

.navbar-toggle--active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggle--active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.navbar-toggle--active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ====== DRAWER OVERLAY ====== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.drawer-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

/* ====== DRAWER ====== */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: min(320px, 85vw);
  background: var(--preto-justica);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

.drawer--open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(252, 212, 3, 0.15);
}

.drawer-logo {
  display: block;
  flex-shrink: 0;
}

.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast), background var(--transition-fast);
  flex-shrink: 0;
}

.drawer-close:hover {
  color: var(--dourado);
  background: rgba(252, 212, 3, 0.08);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}

.drawer-link {
  display: block;
  padding: 15px 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition-fast), background var(--transition-fast), padding-left var(--transition-fast);
  border-left: 2px solid transparent;
}

.drawer-link:hover {
  color: var(--dourado);
  background: rgba(252, 212, 3, 0.05);
  padding-left: 36px;
  border-left-color: var(--dourado);
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(252, 212, 3, 0.15);
}

/* ====== HERO ====== */
.hero {
  min-height: 100dvh;
  background: var(--preto-justica);
  position: relative;
  overflow: hidden;
}

/* Glow dourado difuso — canto inferior-esquerdo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 45% at 0% 100%,
    rgba(252, 212, 3, 0.06) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Linha fina dourada na base da hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(252, 212, 3, 0.4) 0%,
    rgba(252, 212, 3, 0.12) 50%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100dvh;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 180px var(--container-margin) 48px;
  position: relative;
  z-index: 10;
}

.hero-eyebrow {
  opacity: 0;
  animation: fadeIn 0.5s ease-out 0.1s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  color: var(--branco);
  margin-bottom: 20px;
  max-width: 85ch;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  animation: clipReveal 0.9s cubic-bezier(0.77, 0, 0.175, 1) 0.2s forwards;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 50ch;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.6s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.5s ease-out 0.8s forwards;
}

/* Hero image desktop */
.hero-image-wrapper {
  display: none;
  position: relative;
  opacity: 0;
  animation: slideRight 1s ease-out 0.4s forwards;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 40%, transparent 100%);
}

.hero-gold-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 35%;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(252, 212, 3, 0.05) 100%
  );
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  pointer-events: none;
  z-index: 2;
}

/* Hero mobile image */
.hero-mobile-image {
  position: relative;
  height: 280px;
  margin-top: -40px;
}

.hero-mobile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-mobile-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--preto-justica) 0%, rgba(10,10,10,0.5) 50%, transparent 100%);
}

/* ====== DOR E SOLUÇÃO ====== */
.dor-solucao-img-wrap {
  margin-bottom: 32px;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
}

.dor-solucao-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.dor-solucao-img-wrap:hover .dor-solucao-img {
  transform: scale(1.03);
}

.dor-solucao-img--dor {
  filter: saturate(0.6) contrast(1.05);
}

.dor-solucao-img--solucao {
  filter: saturate(1.1) brightness(1.02);
}

.dor-solucao-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
}

.dor-solucao-line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(252, 212, 3, 0.4);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.8s ease;
}

.dor-solucao-line.visible { transform: scaleY(1); }

.dor-list, .solucao-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.dor-list li, .solucao-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--cinza-toga);
  line-height: 1.6;
}

.icon-x, .icon-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.icon-x { background: rgba(220, 53, 69, 0.08); color: #DC3545; }
.icon-check { background: rgba(252, 212, 3, 0.1); color: var(--dourado); }

/* ====== MARQUEE ====== */
.marquee {
  background: var(--preto-justica);
  padding: 24px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-content {
  color: var(--branco);
  font-size: 1rem;
  font-weight: 500;
  padding-right: 0.5em;
}

/* ====================================================
   SERVIÇOS — premium minimalista v3
   Conceito: fundo creme, grid fechado, hover fill escuro
   ==================================================== */

.svc-section {
  background: #F2EBCF;
  padding: var(--section-pad) 0 calc(var(--section-pad) * 1.1);
}

/* ── intro ── */
.svc-intro { padding-bottom: 64px; }

.svc-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dourado-escuro);
  margin-bottom: 20px;
}

.svc-intro-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
}

.svc-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--preto-justica);
}

.svc-subtitle {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #777;
  max-width: 300px;
  padding-bottom: 4px;
}

/* ── grid: separa cards por gap mínimo, borda externa única ── */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(10,10,10,0.12);
  border-radius: 20px;
  border: 1px solid rgba(10,10,10,0.12);
  overflow: hidden;
}

/* ── card ── */
.svc-card {
  position: relative;
  overflow: hidden;
  background: #FDFAF0;
  padding: 40px 36px 36px;
  text-decoration: none;
  color: var(--preto-justica);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  outline: 0;
  transition:
    box-shadow 900ms ease,
    transform  900ms ease;
}

/* spotlight dourado que segue o cursor */
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px circle at var(--cx, 50%) var(--cy, 50%),
    rgba(252, 212, 3, 0.07) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 1000ms ease;
  pointer-events: none;
  z-index: 0;
}

/* borda interna dourada */
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(252, 212, 3, 0);
  transition: box-shadow 900ms ease;
  pointer-events: none;
  z-index: 0;
}

.svc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10,10,10,0.05);
  z-index: 2;
}

.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after  { box-shadow: inset 0 0 0 1px rgba(252, 212, 3, 0.18); }

/* todos os filhos acima das camadas */
.svc-card > * { position: relative; z-index: 1; }

.svc-card-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(160, 120, 0, 0.4);
  margin-bottom: 36px;
  transition: color 900ms ease;
}

.svc-card:hover .svc-card-num { color: var(--dourado-escuro); }

.svc-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
  flex: 1;
}

.svc-card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #888;
  margin-bottom: 28px;
  transition: color 900ms ease;
}

.svc-card:hover .svc-card-desc { color: #555; }

.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(160,120,0,0.45);
  transition: color 900ms ease, gap 900ms ease;
}

.svc-card-link svg { transition: transform 900ms ease; }

.svc-card:hover .svc-card-link { color: var(--dourado-escuro); gap: 10px; }
.svc-card:hover .svc-card-link svg { transform: translateX(2px); }

/* ── rodapé ── */
.svc-bottom {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(10,10,10,0.12);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-bottom-note {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #888;
  max-width: 520px;
}

.svc-bottom-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--preto-justica);
  color: var(--branco);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 100px;
  align-self: flex-start;
  transition: gap 200ms ease, background 200ms ease;
}

.svc-bottom-cta:hover { background: #1a1a1a; gap: 14px; }

/* ── responsivo ── */
@media (min-width: 660px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-intro-row { grid-template-columns: 1fr 1fr; gap: 48px; }
  .svc-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-intro-row { gap: 100px; }
  .svc-subtitle { max-width: 340px; }
}

/* ====================================================
   VÍDEOS EDUCATIVOS — Refactor Limpo
   ==================================================== */

.edu-section {
  background: #0A0A0A;
  padding: 72px 0 64px;
}

/* ── cabeçalho ── */
.edu-header {
  margin-bottom: 40px;
}

.edu-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 20px;
}

.edu-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.edu-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--branco);
}

.edu-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 600ms ease, color 600ms ease, border-color 600ms ease, gap 600ms ease;
}

.edu-header-cta:hover {
  background: var(--dourado);
  color: var(--preto-justica);
  border-color: var(--dourado);
  gap: 14px;
}

/* ── corpo: player esquerda + lista direita ── */
.edu-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 760px) {
  .edu-body {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    min-height: 0;
  }
}

/* ── stage: player + meta ── */
.edu-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* "phone" — moldura 9:16 */
.edu-phone {
  position: relative;
  width: 260px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: var(--preto-justica);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.4),
    0 24px 64px rgba(0,0,0,0.3);
}

.edu-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* botão play centralizado */
.edu-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 400ms ease;
}

.edu-play-btn svg {
  width: 48px;
  height: 48px;
  color: rgba(255,255,255,0.9);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform 500ms ease, color 500ms ease;
}

.edu-play-btn:hover svg {
  transform: scale(1.12);
  color: var(--dourado);
}

.edu-phone.is-playing .edu-play-btn { opacity: 0; pointer-events: none; }
.edu-phone:hover .edu-play-btn { opacity: 1 !important; pointer-events: auto; }

/* controles fixos no canto superior */
.edu-controls {
  position: absolute;
  top: 12px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  transition: opacity 400ms ease;
}

.edu-phone:hover .edu-controls { opacity: 1; }

.edu-ctrl {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: background 400ms ease, color 400ms ease, transform 400ms ease;
}

.edu-ctrl svg { width: 14px; height: 14px; }
.edu-ctrl:hover { background: rgba(252,212,3,0.85); color: #0A0A0A; transform: scale(1.08); }

/* meta abaixo do player */
.edu-meta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 260px;
}

.edu-meta-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado);
  display: block;
  min-height: 1em;
  transition: opacity 400ms ease;
}

.edu-meta-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
  transition: opacity 400ms ease;
}

/* ── lista premium ── */
.edu-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* mobile: lista simples empilhada */
.edu-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: opacity 400ms ease;
  width: 100%;
}

.edu-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.edu-item:hover { opacity: 0.8; }
.edu-item.is-active { opacity: 1; }

/* desktop: ocupa altura total e usa borda lateral */
@media (min-width: 760px) {
  .edu-list {
    flex: 1;
    margin-left: 48px;
    justify-content: stretch;
    width: auto;
  }

  .edu-item {
    flex: 1;
    justify-content: center;
    padding: 0 0 0 24px;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.08);
    border-bottom: none;
    opacity: 1;
    transition: border-color 500ms ease;
  }

  .edu-item:first-child { border-top: none; }
  .edu-item + .edu-item { border-top: 1px solid rgba(255,255,255,0.06); }
  .edu-item:hover { opacity: 1; border-left-color: rgba(255,255,255,0.2); }
  .edu-item.is-active { border-left-color: var(--dourado); }
}

.edu-item:hover { border-left-color: rgba(255,255,255,0.2); }
.edu-item.is-active { border-left-color: var(--dourado); }

.edu-item-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.edu-item-num {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.2);
  transition: color 400ms ease;
  flex-shrink: 0;
}

.edu-item.is-active .edu-item-num { color: var(--dourado); }

.edu-item-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  transition: color 400ms ease;
}

.edu-item.is-active .edu-item-tag { color: rgba(252,212,3,0.6); }

.edu-item-title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: rgba(255,255,255,0.3);
  transition: color 400ms ease;
  margin: 0;
}

.edu-item:hover .edu-item-title { color: rgba(255,255,255,0.6); }
.edu-item.is-active .edu-item-title { color: #fff; font-weight: 700; }

.edu-item-bar {
  height: 1px;
  background: transparent;
}


/* ====== MODAL VÍDEO EDUCATIVO ====== */
#eduModal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms cubic-bezier(0.22,1,0.36,1);
}

#eduModal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.edu-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,4,4,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.edu-modal-inner {
  position: relative;
  z-index: 1;
  width: min(88vw, 360px);
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  background: #0A0A0A;
  box-shadow:
    0 0 0 1px rgba(252,212,3,0.15),
    0 32px 80px rgba(0,0,0,0.7),
    0 0 120px rgba(252,212,3,0.04);
  transform: scale(0.92) translateY(16px);
  transition: transform 500ms cubic-bezier(0.22,1,0.36,1);
}

#eduModal.is-open .edu-modal-inner {
  transform: scale(1) translateY(0);
}

.edu-modal-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.edu-modal-controls {
  position: absolute;
  top: 14px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.edu-modal-ctrl {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: background 400ms ease, color 400ms ease, transform 400ms ease;
}

.edu-modal-ctrl svg { width: 15px; height: 15px; }
.edu-modal-ctrl:hover {
  background: var(--dourado);
  color: var(--preto-justica);
  transform: scale(1.1);
}

/* ====== NOSSO ESPAÇO ====== */
.section--espaco {
  background-color: #11110f;
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}

.espaco-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(252, 212, 3, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.section-header--left {
  text-align: left;
  max-width: 600px;
  margin-bottom: 48px;
}

.section--dark .section-header--left .section-title,
.section--espaco .section-header--left .section-title {
  color: var(--branco);
}

.section--sobre .section-header--left .section-title {
  color: var(--preto-justica);
}

.espaco-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}

.espaco-item {
  position: relative;
}

.glass-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(30, 30, 30, 0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  height: 100%;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Textura de ruído idêntica à nav */
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)'/%3E%3C/svg%3E");
  opacity: 0.03;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* Overlay de profundidade */
.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.glass-card:hover::after {
  opacity: 1;
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(252, 212, 3, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(252, 212, 3, 0.1);
  background: rgba(15, 15, 15, 0.8);
  z-index: 10;
}

.glass-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05) brightness(0.85);
  transition: transform 1.5s cubic-bezier(0.2, 1, 0.2, 1), filter 1s ease;
}

.glass-card:hover img {
  transform: scale(1.1);
  filter: saturate(1) contrast(1) brightness(1);
}

.glass-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 24px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: var(--branco);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  z-index: 5;
  pointer-events: none;
}

.glass-card:hover .glass-caption {
  transform: translateY(0);
  opacity: 1;
}

.card-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dourado);
  opacity: 0.6;
  z-index: 6;
  letter-spacing: 0.15em;
  pointer-events: none;
}

.glass-caption h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--dourado);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.glass-caption p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.5;
  font-weight: 400;
}

/* Grid Mosaico 3x2 Simétrico (Organizado) */
.espaco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}

.espaco-item { height: 100%; }

/* Ajustes Focais para Enquadramento Completo */
.card-fachada img,
.card-numero img {
  object-position: center; /* Enquadramento centralizado para melhor visibilidade */
}

@media (max-width: 1024px) {
  .espaco-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .espaco-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 180px);
  }
  .section--espaco { padding: 60px 0; }
}

.section--sobre {
  background-color: #FBF4E2; /* Dourado Champagne Suave */
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.section--sobre::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252, 212, 3, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.sobre-magazine-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.sobre-body {
  margin-bottom: 48px;
}

.sobre-body .lead {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--preto-justica);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}

.sobre-body p:not(.lead) {
  font-size: 1.1rem;
  color: var(--cinza-toga);
  line-height: 1.7;
}

.sobre-pilares-magazine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.pilar-card-v3 {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pilar-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: #D4AF37; /* Dourado Champagne Suave */
  line-height: 1;
  opacity: 0.6;
}

.pilar-info h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--preto-justica);
}

.pilar-info p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--cinza-toga);
}

/* Visual Side */
.sobre-visual {
  position: relative;
}

.image-premium-wrapper {
  position: relative;
  padding-right: 40px;
  padding-bottom: 40px;
}

.image-frame-magazine {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 20px 20px 0 -5px var(--bege), 20px 20px 0 -4px var(--dourado);
  aspect-ratio: 4/5;
  background: var(--bege);
}

.image-frame-magazine img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.image-frame-magazine:hover img {
  transform: scale(1.05);
}

.frame-accent {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(252, 212, 3, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--preto-justica);
  color: var(--dourado);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 1px solid rgba(252, 212, 3, 0.3);
  z-index: 5;
}

.badge-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.badge-text {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 1024px) {
  .sobre-magazine-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .sobre-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .sobre-pilares-magazine {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .image-premium-wrapper {
    padding-right: 20px;
    padding-bottom: 20px;
  }
  
  .image-frame-magazine {
    box-shadow: 12px 12px 0 -3px var(--bege), 12px 12px 0 -2px var(--dourado);
  }
  
  .experience-badge {
    padding: 16px;
  }
  
  .badge-number { font-size: 2rem; }
}

/* ====== VÍDEOS ====== */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.video-card { cursor: pointer; }

.video-thumbnail {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.video-card:hover .video-thumbnail img { transform: scale(1.05); }

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.3);
  transition: background 300ms ease;
}

.video-card:hover .video-overlay { background: rgba(10, 10, 10, 0.5); }

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dourado);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--preto-justica);
  padding-left: 4px;
  transition: transform 300ms ease;
}

.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.1); }

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(10, 10, 10, 0.8);
  color: var(--branco);
  font-size: 0.8125rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.video-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  margin-top: 16px;
  color: var(--preto-justica);
}

/* ====== VIDEO MODAL PREMIUM ====== */
.vi-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vi-modal[hidden] { display: none; }

.vi-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,6,3,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  animation: vi-modal-fade 0.35s ease both;
}

@keyframes vi-modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.vi-modal-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: vi-modal-rise 0.4s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes vi-modal-rise {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

.vi-modal-close {
  align-self: flex-end;
  margin-bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(252,212,3,0.25);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.vi-modal-close svg { width: 18px; height: 18px; }

.vi-modal-close:hover {
  background: rgba(252,212,3,0.15);
  border-color: var(--dourado);
  color: var(--dourado);
  transform: scale(1.08);
}

.vi-modal-player {
  width: min(80vw, 320px);
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(252,212,3,0.18);
  box-shadow:
    0 0 60px rgba(252,212,3,0.08),
    0 40px 100px rgba(0,0,0,0.85);
}

.vi-modal-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Thumbnail YouTube nos cards vdep */
.vdep-yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ====== VÍDEOS INSTITUCIONAIS ====== */
.section--videos-institucionais {
  background-color: #13110d;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(252,212,3,0.05) 0%, transparent 70%);
  padding: 80px 0;
}

.vi-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  column-gap: 40px;
  align-items: center;
  gap: 0;
}

/* Card de vídeo */
.vi-card {
  display: flex;
  flex-direction: column;
}

.vi-card-video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(252,212,3,0.15);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}

/* Overlay de play */
.vi-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.vi-card-video-wrap.is-playing .vi-play-overlay {
  opacity: 0;
  pointer-events: none;
}

.vi-play-btn {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: var(--dourado);
  color: #0a0804;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  box-shadow: 0 0 0 0 rgba(252,212,3,0.4);
}

.vi-play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 4px;
}

.vi-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(252,212,3,0.15);
}

.vi-play-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(252,212,3,0.35);
  animation: vi-pulse 2.4s ease-out infinite;
}

@keyframes vi-pulse {
  0%   { inset: -8px;  opacity: 0.7; }
  100% { inset: -26px; opacity: 0; }
}

/* Botões de som e fullscreen */
.vi-controls {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.vi-card-video-wrap.is-playing .vi-controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.vi-ctrl-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(252,212,3,0.3);
  background: rgba(10,8,4,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.vi-ctrl-btn svg {
  width: 15px;
  height: 15px;
}

.vi-ctrl-btn:hover {
  background: rgba(252,212,3,0.18);
  border-color: var(--dourado);
  color: var(--dourado);
  transform: scale(1.08);
}

/* Overlay inferior com gradiente para o label */
.vi-card-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,4,0.88) 0%,
    rgba(10,8,4,0.3) 28%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 1;
}

.vi-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vi-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin: 0;
}

.vi-card-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--dourado);
  margin-bottom: 8px;
  border-radius: 2px;
}


.vi-player {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: #111;
  border: none;
}

/* Separador central */
.vi-sep {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 0 12px;
  gap: 0;
}

.vi-sep-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(252,212,3,0.2), transparent);
  min-height: 40px;
}

.vi-sep-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 8px;
}

.vi-eyebrow {
  font-size: 0.62rem !important;
  letter-spacing: 0.2em;
  color: var(--dourado) !important;
  margin-bottom: 0 !important;
}

.vi-title {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  margin: 0;
}

.vi-title em {
  font-style: italic;
  color: var(--dourado);
  font-weight: 400;
}

.vi-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin: 0;
}

.vi-sep-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dourado);
  opacity: 0.5;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .vi-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .vi-sep {
    flex-direction: row;
    height: auto;
    padding: 0;
  }

  .vi-sep-line {
    flex: 1;
    height: 1px;
    width: auto;
    min-height: unset;
    background: linear-gradient(to right, transparent, rgba(252,212,3,0.2), transparent);
  }

  .vi-sep-text {
    padding: 0 20px;
    flex-shrink: 0;
    max-width: 260px;
  }
}

/* ====== DEPOIMENTOS ====== */
.dep-section {
  background: #EDE8D5;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.dep-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,212,3,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Cabeçalho */
.dep-header {
  text-align: center;
  margin-bottom: 64px;
}

.dep-header .eyebrow {
  color: #D4A017; /* Dourado Âmbar (mais próximo do amarelo) */
}

.dep-header .section-title {
  color: #2D2B24; /* Carvão quente suave */
  margin-bottom: 24px;
}

.dep-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(10,10,10,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
  color: var(--cinza-medio);
  letter-spacing: 0.03em;
}

.dep-google-stars {
  display: flex;
  gap: 2px;
}

/* Card principal */
.dep-carousel {
  max-width: 860px;
  margin: 0 auto;
}

.dep-track {
  position: relative;
  min-height: 280px;
}

.dep-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease;
  background: var(--branco);
  border: 1px solid rgba(10,10,10,0.07);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 4px 32px rgba(10,10,10,0.06);
}

.dep-card.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.dep-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dep-stars {
  display: flex;
  gap: 3px;
}

.dep-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--dourado);
  opacity: 0.25;
  user-select: none;
}

.dep-texto {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #5D5746; /* Warm Taupe profundo */
  font-style: italic;
  flex: 1;
}

.dep-autor {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(10,10,10,0.06);
}

.dep-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(252,212,3,0.12);
  border: 1px solid rgba(252,212,3,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dourado);
  flex-shrink: 0;
}

.dep-autor strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #3D3A30; /* Marrom café sofisticado */
}

.dep-autor span {
  font-size: 0.8125rem;
  color: #8E8877; /* Taupe suave para detalhes */
}

/* Controles */
.dep-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}

.dep-dots {
  display: flex;
  gap: 8px;
}

.depoimento-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(10,10,10,0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 300ms ease;
}

.depoimento-dot.active {
  background: var(--dourado);
  width: 28px;
  border-radius: 4px;
}

.dep-arrows {
  display: flex;
  gap: 10px;
}

.dep-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(10,10,10,0.15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-sutil);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dep-arrow:hover {
  background: var(--dourado);
  border-color: var(--dourado);
  color: var(--preto-justica);
}

/* CTA link */
.dep-cta {
  text-align: center;
  margin-top: 48px;
}

.dep-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--cinza-sutil);
  letter-spacing: 0.04em;
  transition: color 200ms;
  text-decoration: none;
}

.dep-cta-link:hover {
  color: var(--dourado);
}

@media (max-width: 640px) {
  .dep-card { padding: 28px 24px; }
  .dep-texto { font-size: 1rem; }
}

/* ====== VÍDEOS DEPOIMENTOS ====== */
.vdep-section {
  position: relative;
  background: #080808;
  padding: clamp(80px, 9vw, 120px) 0 clamp(64px, 7vw, 96px);
  overflow: hidden;
}

/* Luz dourada suave nas bordas — atmosfera */
.vdep-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 60%, rgba(252,212,3,0.055) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 40%, rgba(252,212,3,0.04) 0%, transparent 55%);
  pointer-events: none;
}

/* ── Header ── */
.vdep-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

@media (max-width: 700px) {
  .vdep-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

.vdep-header .eyebrow { color: var(--dourado); }

.vdep-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-top: 12px;
  letter-spacing: -0.02em;
}

.vdep-title em {
  font-style: italic;
  color: var(--dourado);
}

.vdep-header-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.9rem, 1.2vw, 1.0625rem);
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
  text-align: right;
  max-width: 220px;
  flex-shrink: 0;
  border-left: 1px solid rgba(252,212,3,0.2);
  padding-left: 20px;
}

@media (max-width: 700px) {
  .vdep-header-quote { display: none; }
}

/* ── Track wrap ── */
.vdep-track-wrap {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-block: 20px 40px;
  padding-inline: max(5vw, calc((100vw - 360px) / 2));
}

.vdep-track-wrap::-webkit-scrollbar { display: none; }

/* ── Track ── */
.vdep-track {
  display: flex;
  gap: 18px;
  width: max-content;
}

/* ── Card ── */
.vdep-card {
  flex: 0 0 320px;
  scroll-snap-align: center;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.04) inset,
    0 12px 40px rgba(0,0,0,0.5),
    0 4px 12px rgba(0,0,0,0.3);
  transition:
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 450ms ease;
  will-change: transform;
}

/* Estado "ativo" — card em foco no scroll */
.vdep-card.is-active {
  transform: scale(1.04);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.06) inset,
    0 24px 64px rgba(0,0,0,0.65),
    0 0 0 1px rgba(252,212,3,0.3);
}

.vdep-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.06) inset,
    0 32px 72px rgba(0,0,0,0.7),
    0 0 0 1px rgba(252,212,3,0.45);
}

.vdep-card:focus-visible { outline: 2px solid var(--dourado); outline-offset: 4px; }

/* ── Thumb ── */
.vdep-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #111;
}

.vdep-thumb-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.vdep-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
  filter: brightness(0.78) saturate(0.95);
}

.vdep-card:hover .vdep-thumb img,
.vdep-card.is-active .vdep-thumb img {
  transform: scale(1.06);
  filter: brightness(0.62) saturate(0.85);
}

/* ── Overlay ── */
.vdep-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,0.45) 65%,
    rgba(0,0,0,0.92) 100%
  );
  transition: opacity 400ms ease;
}

.vdep-card:hover .vdep-overlay,
.vdep-card.is-active .vdep-overlay { opacity: 1.1; }

/* ── Caption ── */
.vdep-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 22px 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Linha dourada — sempre visível, fina */
.vdep-caption::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, var(--dourado), rgba(252,212,3,0));
  width: 36px;
  margin-bottom: 12px;
  transition: width 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vdep-card:hover .vdep-caption::before,
.vdep-card.is-active .vdep-caption::before { width: 56px; }

.vdep-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.vdep-caption span {
  display: block;
  font-size: 0.8rem;
  color: var(--dourado);
  opacity: 0.8;
  margin-top: 5px;
  letter-spacing: 0.03em;
}

/* ── Botão play ── */
.vdep-play {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 280ms ease,
    border-color 280ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 0 8px rgba(255,255,255,0.04);
}

.vdep-play svg { margin-left: 3px; }

.vdep-card:hover .vdep-play,
.vdep-card.is-active .vdep-play {
  background: rgba(252,212,3,0.92);
  border-color: var(--dourado);
  color: #0A0A0A;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 8px rgba(252,212,3,0.1);
}

/* Máscara sobre o topo do iframe — cobre título, share e botão Shorts do YouTube */
.vdep-card.vdep-playing .vdep-thumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
  z-index: 11;
  pointer-events: none;
  border-radius: 22px 22px 0 0;
}

/* ── Controles (volume + expandir) — aparecem só quando tocando ── */
.vdep-controls {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 11;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 280ms ease, transform 280ms ease;
  pointer-events: none;
}

.vdep-card.vdep-playing .vdep-controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.vdep-ctrl {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
  flex-shrink: 0;
}

.vdep-ctrl:hover {
  background: rgba(252,212,3,0.85);
  border-color: var(--dourado);
  color: #0A0A0A;
  transform: scale(1.1);
}

/* Ícone mudo: visível por padrão (vídeo inicia mutado no autoplay) */
/* Ícone som: oculto por padrão */
.vdep-ctrl--mute .icon-muted { display: block; }
.vdep-ctrl--mute .icon-sound  { display: none; }

/* Quando card tem som ligado */
.vdep-card.vdep-sound .vdep-ctrl--mute .icon-muted { display: none; }
.vdep-card.vdep-sound .vdep-ctrl--mute .icon-sound  { display: block; }

/* ── Navegação ── */
.vdep-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
}

.vdep-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 250ms ease;
  flex-shrink: 0;
}

.vdep-arrow:hover {
  border-color: var(--dourado);
  color: var(--dourado);
  background: rgba(252,212,3,0.07);
  transform: scale(1.05);
}

/* Contador */
.vdep-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  min-width: 72px;
  justify-content: center;
}

.vdep-counter-cur {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  transition: opacity 200ms ease;
}

.vdep-counter-sep {
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.vdep-counter-tot {
  color: rgba(255,255,255,0.3);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .vdep-card { flex: 0 0 272px; }
  .vdep-track-wrap { padding-inline: max(5vw, calc((100vw - 272px) / 2)); }
}

/* ====== FAQ ====== */
.faq-section {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--branco);
}

@media (min-width: 900px) {
  .faq-section {
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
  }
}

/* Esconde mob-answer no desktop */
@media (min-width: 900px) {
  .faq-mob-answer { display: none; }
}

/* ── Mobile ── */
@media (max-width: 899px) {
  .faq-section {
    display: flex;
    flex-direction: column;
  }

  /* PERGUNTAS no topo */
  .faq-panel-right {
    order: 1;
    padding: 24px var(--container-margin) 20px !important;
    justify-content: flex-start;
  }

  .faq-panel-right-top { display: none; }
  .faq-big-item { padding: 16px 0; }
  .faq-big-item.active { padding-left: 12px; }
  .faq-big-q { font-size: 0.9rem; }
  .faq-big-num { font-size: 0.575rem; }

  /* RESPOSTA embaixo */
  .faq-panel-left {
    order: 2;
    position: static !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .faq-panel-left-inner {
    padding: 20px var(--container-margin) 48px;
    gap: 14px;
  }

  .faq-display-title { font-size: 1.6rem; }
  .faq-resp-line { min-height: 40px; }
  .faq-wa { display: none !important; }
  .faq-mob-answer { display: none; }
}

/* ── Painel direito: perguntas ── */
.faq-panel-right {
  background: var(--off-white);
  padding: var(--section-pad) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  order: 2;
}

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

.faq-panel-right-top {
  margin-bottom: 48px;
}

.faq-list-big {
  list-style: none;
  width: 100%;
}

.faq-big-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  transition: padding-left var(--transition-medium);
}

.faq-big-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--dourado);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-big-item:first-child { border-top: 1px solid rgba(10, 10, 10, 0.08); }

.faq-big-item.active::before,
.faq-big-item:hover::before { transform: scaleY(1); }

.faq-big-item.active,
.faq-big-item:hover { padding-left: 16px; }

.faq-big-q {
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 1.5vw, 1.1rem);
  font-weight: 600;
  color: var(--cinza-sutil);
  line-height: 1.3;
  transition: color var(--transition-fast);
  flex: 1;
}

.faq-big-item.active .faq-big-q,
.faq-big-item:hover .faq-big-q { color: var(--preto-justica); }

.faq-big-num {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(10, 10, 10, 0.18);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  transition: color var(--transition-fast);
}

.faq-big-item.active .faq-big-num,
.faq-big-item:hover .faq-big-num { color: var(--dourado); }

/* ── Painel esquerdo: resposta sticky ── */
.faq-panel-left {
  background: var(--bege);
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
}

@media (min-width: 900px) {
  .faq-panel-left {
    order: 2;
    position: sticky;
    top: 0;
    height: 100vh;
  }
}

.faq-panel-left-inner {
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

.faq-display-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--preto-justica);
}

.faq-display-title em {
  font-style: italic;
  color: var(--dourado-escuro);
}

/* Resposta */
.faq-resp-wrap {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.faq-resp-line {
  width: 2px;
  min-height: 80px;
  background: linear-gradient(to bottom, var(--dourado-escuro), rgba(201, 169, 0, 0.1));
  flex-shrink: 0;
  border-radius: 1px;
}

.faq-resp-wrap p {
  font-size: 0.9375rem;
  color: var(--cinza-medio);
  line-height: 1.8;
  transition: opacity 250ms ease;
}

.faq-resp-wrap.changing p { opacity: 0; }

/* Link WhatsApp discreto */
.faq-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--cinza-sutil);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  padding-top: 24px;
  margin-top: 8px;
}

.faq-wa:hover { color: var(--preto-justica); }

/* ====== LOCALIZAÇÃO ====== */
.loc-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Topo: título alinhado ao botão */
.loc-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(252, 212, 3, 0.15);
}

.loc-btn-rota {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--dourado);
  border: 1px solid rgba(252, 212, 3, 0.35);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.loc-btn-rota:hover {
  background: var(--dourado);
  color: var(--preto-justica);
  border-color: var(--dourado);
  box-shadow: 0 4px 16px rgba(252, 212, 3, 0.18);
}

/* Corpo */
.loc-body {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Infos em 4 colunas separadas por linhas verticais */
.loc-infos {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
}

.loc-info-item {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0 24px;
}

.loc-info-item:first-child { padding-left: 0; }
.loc-info-item:last-child  { padding-right: 0; }

.loc-info-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--dourado);
  opacity: 0.6;
}

.loc-info-value {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  transition: color var(--transition-fast);
}

.loc-info-value em {
  font-style: italic;
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}

a.loc-info-value:hover { color: var(--dourado); }

.loc-info-sep {
  width: 1px;
  min-height: 60px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.07);
}

.loc-info-item--redes { gap: 10px; }

.loc-social-row { display: flex; gap: 7px; }

.loc-rede-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  transition: all var(--transition-fast);
}

.loc-rede-btn:hover {
  border-color: var(--dourado);
  color: var(--dourado);
  transform: translateY(-1px);
}

/* Mapa contido */
.loc-mapa {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(252, 212, 3, 0.1);
  height: 240px;
}

.loc-mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.45) brightness(0.85) contrast(1.05);
}

/* Mobile */
@media (max-width: 700px) {
  .loc-infos {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .loc-info-sep { display: none; }
  .loc-info-item { padding: 0; }
  .loc-top { flex-direction: column; align-items: flex-start; }
  .loc-mapa { height: 200px; }
}

/* ====== LOCALIZAÇÃO (legado) ====== */
.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.localizacao-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.localizacao-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(252, 212, 3, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado);
  flex-shrink: 0;
}

.localizacao-item strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--preto-justica);
  margin-bottom: 4px;
}

.localizacao-item a {
  color: var(--cinza-toga);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.localizacao-item a:hover { color: var(--dourado); }

.horarios-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.horarios-list > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.875rem;
}

.horarios-list span:first-child { color: var(--cinza-toga); }
.horarios-list span:last-child { color: var(--cinza-sutil); }

.localizacao-redes strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--preto-justica);
  margin-bottom: 12px;
}

.redes-row {
  display: flex;
  gap: 12px;
}

.rede-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(140, 140, 140, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-sutil);
  transition: all var(--transition-fast);
}

.rede-btn:hover {
  border-color: var(--dourado);
  color: var(--dourado);
  background: rgba(252, 212, 3, 0.05);
}

.localizacao-maps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-wrapper {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-wrapper--small { aspect-ratio: 16/10; }

/* ====== CTA + FORMULÁRIO ====== */
.cta-section {
  position: relative;
  padding: var(--section-pad) 0;
  background-image: url('Assets/aposente-recepcao-balcao-logo.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  isolation: isolate;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.94);
  z-index: -1;
}

/* Layout duas colunas: texto | formulário */
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Texto à esquerda */
.cta-head {
  text-align: left;
}

@media (max-width: 860px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-head {
    text-align: center;
  }
}

.cta-titulo {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--branco);
  margin-bottom: 16px;
}

.cta-subtitulo {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cta-badges span {
  font-size: 0.775rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(252, 212, 3, 0.45);
  background: rgba(252, 212, 3, 0.05);
  backdrop-filter: blur(4px);
}

/* Card do formulário */
.cta-form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(252, 212, 3, 0.13);
  border-radius: 20px;
  padding: 40px;
}

@media (max-width: 600px) {
  .cta-form-card { padding: 28px 20px; }
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Grade 2 colunas para os campos */
.cta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta-form-full {
  grid-column: 1 / -1;
}

@media (max-width: 560px) {
  .cta-form-grid { grid-template-columns: 1fr; }
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  color: var(--branco);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-input::placeholder { color: rgba(255, 255, 255, 0.18); }

.form-input:focus {
  border-color: rgba(252, 212, 3, 0.45);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(252, 212, 3, 0.07);
}

.form-input.error { border-color: rgba(220, 53, 69, 0.55); }

.form-error {
  display: block;
  color: #ff6b6b;
  font-size: 0.72rem;
  margin-top: 4px;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.25)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  color: rgba(255, 255, 255, 0.65);
}

select.form-input option {
  background: #141414;
  color: var(--branco);
}

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

/* Botão de envio */
.cta-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  border-radius: var(--radius-pill);
  background: var(--dourado);
  color: var(--preto-justica);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cta-submit:hover {
  background: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(252, 212, 3, 0.2);
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 48px 24px;
  position: relative;
  z-index: 2;
}

.form-success.hidden { display: none; }

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success h3 {
  color: var(--branco);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-success p {
  color: rgba(255, 255, 255, 0.7);
}


/* ====== FOOTER ====== */
.footer {
  background: #050505;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo { margin-bottom: 20px; }

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-title {
  color: var(--dourado);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 300ms ease;
}

.footer-links a:hover { color: var(--dourado); }

.footer-link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 300ms ease;
}

.footer-link-with-icon svg { flex-shrink: 0; }

.footer-link-with-icon:hover { color: var(--dourado); }

.footer-redes {
  display: flex;
  gap: 12px;
}

.rede-btn {
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.rede-btn:hover {
  color: var(--dourado) !important;
  transform: translateY(-2px);
}

/* ── Footer Bottom ── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-credits-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-credits-right {
  white-space: nowrap;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 300ms ease;
}

.footer-legal-links a:hover { color: var(--dourado); }

.footer-legal-sep {
  margin: 0 10px;
  opacity: 0.3;
}

.footer-ag5 {
  color: var(--dourado);
  font-weight: 600;
}

.footer-ag5:hover { color: #e8bc4a; text-decoration: none; }

/* ====== SCROLL REVEAL ====== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ====== KEYFRAMES ====== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes clipReveal {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====== 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;
  }
  .marquee-track {
    animation: none;
  }
}

/* ====== RESPONSIVE ====== */
@media (min-width: 640px) {
  .counters-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

@media (min-width: 768px) {
  .section {
    padding: var(--section-pad-tablet) 0;
  }

  .hero {
    max-height: 100dvh;
  }

  .hero-grid {
    grid-template-columns: 55% 45%;
    max-height: 100dvh;
  }

  .hero-content {
    padding: 180px var(--container-margin) 40px;
    justify-content: flex-start;
  }

  .hero-mobile-image {
    display: none;
  }

  .hero-image-wrapper {
    display: block;
  }

  .dor-solucao-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .dor-solucao-line {
    display: block;
  }

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

  .service-card--large,
  .service-card--large.service-card {
    grid-column: span 2;
  }

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

  .localizacao-grid {
    grid-template-columns: 40% 60%;
    gap: 64px;
  }

  .cta-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--section-pad) 0;
  }

  .hero-content {
    padding: 180px var(--container-margin) 40px;
  }

  .navbar-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    justify-content: space-between;
  }

  .navbar-nav { 
    display: flex;
    grid-column: 2;
    justify-self: center;
  }

  .navbar-logo {
    grid-column: 1;
    justify-self: start;
  }

  .navbar-cta { display: none; }
  .navbar-toggle { display: none; }
  .drawer { display: none; }
  .drawer-overlay { display: none; }

  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card--large {
    grid-column: span 2;
  }

  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.2fr;
  }
}

.footer-desc + .footer-redes {
  margin-top: 1.5rem;
}

/* ====== WHATSAPP PREMIUM (AG5 V2) ====== */
.wa-premium-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.wa-bubble {
  width: 300px;
  position: absolute;
  bottom: 80px;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px 24px 4px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-bubble.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wa-avatar-wrapper { position: relative; flex-shrink: 0; }

.wa-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--amarelo);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--amarelo);
  overflow: hidden;
}

.wa-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.wa-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #25d366;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: wa-pulse-green 2s infinite;
}

.wa-name {
  display: block;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 14px;
  line-height: 1.3;
}

.wa-status-text {
  font-size: 11px;
  color: #25d366;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.wa-typing {
  display: flex;
  gap: 4px;
  padding: 8px 0;
}

.wa-typing span {
  width: 7px;
  height: 7px;
  background: #25d366;
  border-radius: 50%;
  animation: wa-typing-ani 1.4s infinite;
  opacity: 0.5;
}

.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes wa-typing-ani {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-5px); opacity: 1; }
}

.wa-message-text p {
  margin: 0;
  font-size: 13.5px;
  color: #333;
  line-height: 1.55;
}

.wa-message-text strong { color: #0a0a0a; font-weight: 700; }

.wa-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s ease;
}

.wa-close:hover { color: #333; }

/* Botão flutuante — arredondado (círculo) */
.wa-float-btn {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease;
}

.wa-float-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.wa-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff3b30;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-badge.show { transform: scale(1); }

@keyframes wa-pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 480px) {
  .wa-premium-container { bottom: 16px; right: 16px; }
  .wa-bubble { width: 260px; bottom: 74px; }
}

/* ====== COOKIE TOGGLE — Estilo iOS Minimalista ====== */
#cookie-toggle.active #cookie-toggle-dot {
  left: 15px !important;
  background: #fcd403;
}

#cookie-toggle.inactive #cookie-toggle-dot {
  left: 2px !important;
  background: #888;
}

#ck-prefs-link:hover #cookie-toggle {
  border-color: rgba(255, 255, 255, 0.4) !important;
}

#ck-prefs-link:hover #cookie-toggle-dot {
  box-shadow: 0 0 8px rgba(252, 212, 3, 0.5) !important;
}

/* ====== FOOTER MOBILE OVERRIDES ====== */
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    padding-left: 0 !important;
    gap: 2rem !important;
  }
  .footer-logo { justify-content: flex-start !important; margin-left: 0 !important; }
  .footer-logo img, .footer-logo svg { max-width: 180px !important; margin: 0 !important; }
  .footer-redes { justify-content: flex-start !important; }
  .footer-bottom { flex-direction: column !important; align-items: flex-start !important; gap: 1rem !important; }
  .footer-legal-links { justify-content: flex-start !important; }
  .footer-credits-right { text-align: left !important; margin-left: 0 !important; }
}
