/* ============================================================
   HALL DIGITAL — Design System
   Estratégias de Alto Impacto
   ============================================================ */

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

:root {
  /* Paleta Dourada */
  --gold: #C5973B;
  --gold-light: #E8C975;
  --gold-dark: #9B7530;
  --gold-glow: rgba(197, 151, 59, 0.4);
  --gold-subtle: rgba(197, 151, 59, 0.12);

  /* Fundos */
  --bg-primary: #0A0A0F;
  --bg-secondary: #111118;
  --bg-card: rgba(255, 255, 255, 0.03);

  /* Texto */
  --text-light: #F8F5F0;
  --text-muted: #9A9A9A;
  --text-gold: #D4A843;

  /* Bordas & Vidro */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(197, 151, 59, 0.3);

  /* Sombras */
  --shadow-gold: 0 8px 32px rgba(197, 151, 59, 0.15);
  --shadow-gold-intense: 0 12px 40px rgba(197, 151, 59, 0.3);

  /* Transições */
  --transition-fast: 0.25s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.8s ease;
}

body.light-mode {
  --bg-primary: #F4F4F6;
  --bg-secondary: #FFFFFF;
  --bg-card: rgba(255, 255, 255, 0.7);

  --text-light: #1A1A1A;
  --text-muted: #555555;
  --text-gold: #9B7530;

  --border-glass: rgba(0, 0, 0, 0.1);
  --border-gold: rgba(197, 151, 59, 0.4);

  --shadow-gold: 0 8px 32px rgba(197, 151, 59, 0.2);
  --shadow-gold-intense: 0 12px 40px rgba(197, 151, 59, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* ===== FUNDO AMBIENTE ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(197, 151, 59, 0.08), transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(232, 201, 117, 0.06), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(155, 117, 48, 0.05), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Partículas decorativas de fundo */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(197, 151, 59, 0.3), transparent),
    radial-gradient(1px 1px at 30% 65%, rgba(232, 201, 117, 0.2), transparent),
    radial-gradient(1px 1px at 55% 15%, rgba(197, 151, 59, 0.25), transparent),
    radial-gradient(1px 1px at 70% 40%, rgba(232, 201, 117, 0.15), transparent),
    radial-gradient(1px 1px at 85% 75%, rgba(197, 151, 59, 0.2), transparent),
    radial-gradient(1px 1px at 20% 85%, rgba(232, 201, 117, 0.15), transparent),
    radial-gradient(1px 1px at 45% 50%, rgba(197, 151, 59, 0.2), transparent),
    radial-gradient(1px 1px at 90% 10%, rgba(232, 201, 117, 0.2), transparent);
  pointer-events: none;
  z-index: 0;
  animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SEÇÕES GERAIS ===== */
section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* Delays escalonados para grids */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition-medium),
              backdrop-filter var(--transition-medium),
              padding var(--transition-medium),
              border-color var(--transition-medium);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-gold);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo img {
  height: 60px;
  width: auto;
  transition: transform var(--transition-fast);
}

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

/* Nav Links */
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

/* Botão CTA Header */
.btn-cta-header {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  font-family: 'Inter', sans-serif;
  animation: pulso-gold 3s infinite;
}

.btn-cta-header:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-intense);
}

@keyframes pulso-gold {
  0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); }
  50% { box-shadow: 0 0 0 10px rgba(197, 151, 59, 0); }
}

/* Menu Mobile Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background var(--transition-fast);
}

.menu-toggle:hover {
  background: var(--gold-subtle);
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.theme-toggle:hover {
  background: var(--gold-subtle);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow .diamond {
  display: inline-block;
  color: var(--gold-light);
  animation: rotate-diamond 4s ease-in-out infinite;
}

@keyframes rotate-diamond {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-light) 0%, var(--text-light) 60%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Efeito de digitação */
.typing-container {
  display: inline-block;
  position: relative;
  text-align: left;
  vertical-align: bottom;
}

.typing-placeholder {
  visibility: hidden;
  height: 0;
  display: inline-block;
  pointer-events: none;
}

.typing-word {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-right: 3px solid var(--gold);
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: piscar-cursor 0.8s infinite;
}

@keyframes piscar-cursor {
  0%, 100% { border-color: var(--gold); }
  50% { border-color: transparent; }
}

.hero .descricao {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-botoes {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primario {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primario:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-intense);
}

.btn-secundario {
  border: 1px solid var(--border-gold);
  background: rgba(197, 151, 59, 0.05);
  backdrop-filter: blur(8px);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  transition: border-color var(--transition-fast),
              transform var(--transition-fast),
              background var(--transition-fast);
}

.btn-secundario:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  background: rgba(197, 151, 59, 0.1);
}

/* Visual abstrato do Hero — orbitas douradas */
.hero-visual {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-central {
  width: 160px;
  height: 160px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-central img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(197, 151, 59, 0.4));
}

.orbita {
  position: absolute;
  border: 1px dashed rgba(197, 151, 59, 0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbita-1 {
  width: 260px;
  height: 260px;
  animation: girar 20s linear infinite;
}

.orbita-2 {
  width: 380px;
  height: 380px;
  animation: girar 30s linear infinite reverse;
}

.orbita-3 {
  width: 440px;
  height: 440px;
  animation: girar 40s linear infinite;
  border-style: dotted;
  border-color: rgba(232, 201, 117, 0.08);
}

.esfera {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.esfera-1 {
  width: 14px;
  height: 14px;
  top: -7px;
  left: 50%;
  margin-left: -7px;
  box-shadow: 0 0 20px rgba(197, 151, 59, 0.6);
}

.esfera-2 {
  width: 10px;
  height: 10px;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 0 16px rgba(232, 201, 117, 0.5);
}

.esfera-3 {
  width: 8px;
  height: 8px;
  bottom: -4px;
  left: 30%;
  box-shadow: 0 0 14px rgba(197, 151, 59, 0.5);
}

.esfera-4 {
  width: 6px;
  height: 6px;
  top: 30%;
  right: -3px;
  box-shadow: 0 0 12px rgba(232, 201, 117, 0.4);
}

@keyframes girar {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Anel decorativo hexagonal */
.hex-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  z-index: 1;
}

.hex-ring svg {
  width: 100%;
  height: 100%;
  animation: girar 60s linear infinite;
}

/* ===== SERVIÇOS ===== */
.titulo-secao {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.titulo-secao .destaque {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitulo-secao {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

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

.card-servico {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 40px 28px;
  transition: transform 0.3s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-servico::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-servico:hover::before {
  opacity: 1;
}

.card-servico:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--border-gold);
}

.icone-servico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(197, 151, 59, 0.15), rgba(232, 201, 117, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(197, 151, 59, 0.2);
}

.icone-servico svg {
  width: 26px;
  height: 26px;
}

.card-servico h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-light);
}

.card-servico p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== SOBRE NÓS ===== */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-conteudo .eyebrow-sobre {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sobre-conteudo h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  line-height: 1.25;
}

.sobre-conteudo h2 .destaque {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sobre-conteudo p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  transition: border-color 0.3s ease;
}

.stat-item:hover {
  border-color: var(--border-gold);
}

.stat-numero {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
  display: block;
}

/* Visual da seção sobre — elemento decorativo */
.sobre-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre-card-visual {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 48px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sobre-card-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(197, 151, 59, 0.05), transparent, rgba(232, 201, 117, 0.03), transparent);
  animation: girar 20s linear infinite;
}

.sobre-card-visual .inner {
  position: relative;
  z-index: 1;
}

.sobre-card-visual img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(197, 151, 59, 0.3));
  margin-bottom: 24px;
}

.valores-lista {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.valor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(197, 151, 59, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(197, 151, 59, 0.1);
  font-size: 0.95rem;
  color: var(--text-light);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.valor-item:hover {
  border-color: var(--border-gold);
  background: rgba(197, 151, 59, 0.08);
}

.valor-item .check {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== PORTFÓLIO ===== */
.grid-portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.card-portfolio {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-portfolio:hover::before {
  opacity: 1;
}

.card-portfolio:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--border-gold);
}

.card-portfolio--em-desenvolvimento {
  opacity: 0.7;
}

.card-portfolio--em-desenvolvimento:hover {
  opacity: 1;
}

.portfolio-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-dashboard {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.badge-imobiliaria {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.badge-em-dev {
  background: rgba(154, 154, 154, 0.2);
  color: var(--text-muted);
  border: 1px solid var(--border-glass);
}

.portfolio-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.portfolio-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(197, 151, 59, 0.15), rgba(232, 201, 117, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 151, 59, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-portfolio:hover .portfolio-icon {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(197, 151, 59, 0.2);
}

.portfolio-icon svg {
  width: 26px;
  height: 26px;
}

.portfolio-info h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-light);
}

.portfolio-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.portfolio-tags span {
  background: rgba(197, 151, 59, 0.08);
  border: 1px solid rgba(197, 151, 59, 0.15);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.portfolio-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  transition: transform 0.25s, box-shadow 0.25s;
}

.portfolio-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  text-decoration: none;
}

.portfolio-link-ghost {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
}

.portfolio-link-ghost:hover {
  background: rgba(197, 151, 59, 0.1);
  box-shadow: none;
}

@media (max-width: 900px) {
  .grid-portfolio {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ===== DEPOIMENTOS ===== */
.depoimentos-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.depoimentos-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.depoimento-card {
  min-width: 100%;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
}

.aspas {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.6;
}

.depoimento-card .frase {
  font-size: 1.35rem;
  font-family: 'Space Grotesk', sans-serif;
  margin: 16px 0 28px;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
}

.depoimento-card .autor {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
}

.depoimento-card .cargo {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Controles do carrossel */
.depoimentos-controles {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.dep-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-glass);
  border: 1px solid var(--border-gold);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.dep-dot.ativo {
  background: var(--gold);
  transform: scale(1.3);
}

.dep-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(197, 151, 59, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.dep-nav:hover {
  background: rgba(197, 151, 59, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.dep-nav-prev { left: -60px; }
.dep-nav-next { right: -60px; }

/* ===== CONTATO ===== */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contato-info h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.contato-info h2 .destaque {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contato-info > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  transition: border-color 0.3s ease;
}

.contato-item:hover {
  border-color: var(--border-gold);
}

.contato-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(197, 151, 59, 0.15), rgba(232, 201, 117, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-item-icon svg {
  width: 20px;
  height: 20px;
}

.contato-item-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contato-item-text strong {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Formulário */
.form-contato {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 48px;
}

.form-grupo {
  margin-bottom: 20px;
}

.form-grupo label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-grupo input,
.form-grupo textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-grupo input:focus,
.form-grupo textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 151, 59, 0.1);
}

.input-erro,
.form-grupo.input-erro {
  border-color: #ff5f56 !important;
  box-shadow: 0 0 0 3px rgba(255, 95, 86, 0.15) !important;
}

.campo-erro {
  display: block;
  color: #ff5f56;
  font-size: 0.8rem;
  margin-top: 6px;
  line-height: 1.4;
}

.form-grupo input::placeholder,
.form-grupo textarea::placeholder {
  color: rgba(154, 154, 154, 0.5);
}

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

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

.btn-enviar {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-enviar:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-intense);
}

/* Mensagem de sucesso/erro */
.msg-form {
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  display: none;
}

.msg-form.sucesso {
  display: block;
  background: rgba(39, 201, 63, 0.1);
  border: 1px solid rgba(39, 201, 63, 0.3);
  color: #27c93f;
}

.msg-form.erro {
  display: block;
  background: rgba(255, 95, 86, 0.1);
  border: 1px solid rgba(255, 95, 86, 0.3);
  color: #ff5f56;
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-glass);
  position: relative;
  z-index: 1;
}

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

.footer-logo img {
  height: 44px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-logo img:hover {
  opacity: 1;
}

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

.footer-redes a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast),
              transform var(--transition-fast),
              background var(--transition-fast);
}

.footer-redes a:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  background: rgba(197, 151, 59, 0.1);
}

.footer-redes svg {
  width: 18px;
  height: 18px;
}

.footer-copy {
  width: 100%;
  text-align: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--border-glass);
}

.footer-copy p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-copy .heart {
  color: var(--gold);
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */
#voltar-topo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  color: var(--bg-primary);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
  box-shadow: var(--shadow-gold);
}

#voltar-topo.visivel {
  opacity: 1;
  pointer-events: auto;
}

#voltar-topo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-intense);
}

/* ===== LINHA DECORATIVA ENTRE SEÇÕES ===== */
.separador {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 60px;
  border-radius: 2px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .sobre-grid { gap: 40px; }
  .contato-grid { gap: 40px; }
  .dep-nav-prev { left: -20px; }
  .dep-nav-next { right: -20px; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero .descricao {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-botoes {
    justify-content: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-visual {
    height: 300px;
    order: -1;
  }

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

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

  .sobre-visual {
    order: -1;
  }

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

  .dep-nav { display: none; }
}

@media (max-width: 640px) {
  section { padding: 80px 0; }

  .nav-links {
    display: none;
  }
  
  .btn-cta-header {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero h1 { font-size: 2rem; }

  .titulo-secao { font-size: 1.8rem; }

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

  .stats-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .depoimento-card {
    padding: 40px 24px;
  }

  .depoimento-card .frase {
    font-size: 1.1rem;
  }

  .form-contato {
    padding: 32px 20px;
  }

  .footer-conteudo {
    flex-direction: column;
    text-align: center;
  }
}

/* Menu mobile aberto */
.nav-links.aberto {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  padding: 24px;
  gap: 20px;
  border-bottom: 1px solid var(--border-gold);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== GLOW LINE — linha brilhante decorativa ===== */
.glow-line {
  position: relative;
  width: 100%;
  height: 1px;
  background: var(--border-glass);
  overflow: hidden;
}

.glow-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: glow-slide 4s ease-in-out infinite;
}

@keyframes glow-slide {
  0% { left: -60%; }
  100% { left: 100%; }
}

/* ===== SELEÇÃO DE TEXTO ===== */
::selection {
  background: rgba(197, 151, 59, 0.3);
  color: var(--text-light);
}

/* ===== SCROLLBAR CUSTOMIZADA ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ===== BOTÃO WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6);
  text-decoration: none;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ===== HONEYPOT (oculto) ===== */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ===== CHECKBOX LGPD ===== */
.form-checkbox {
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border-gold);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.25s, border-color 0.25s;
  position: relative;
  margin-top: 2px;
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--bg-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label input:focus-visible + .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(197, 151, 59, 0.3);
}

.checkbox-text a {
  color: var(--gold);
  text-decoration: underline;
}

.checkbox-text a:hover {
  color: var(--gold-light);
}

/* ===== FOOTER LINKS ===== */
.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.25s;
}

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

/* ===== LIGHT MODE — SCROLLBAR & FIXES ===== */
body.light-mode .header.scrolled {
  background: rgba(244, 244, 246, 0.85);
}

body.light-mode .nav-links.aberto {
  background: rgba(244, 244, 246, 0.97);
}

body.light-mode ::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

body.light-mode ::-webkit-scrollbar-thumb {
  background: var(--gold);
}

body.light-mode .form-grupo input,
body.light-mode .form-grupo textarea {
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-light);
}

body.light-mode .form-grupo input::placeholder,
body.light-mode .form-grupo textarea::placeholder {
  color: rgba(85, 85, 85, 0.5);
}

body.light-mode .sobre-card-visual {
  background: rgba(255, 255, 255, 0.5);
}
