:root {
  --bg-dark: #120c0a;
  --bg-card: #5a3626;
  --accent: #d28d0e;
  --accent-hover: #e8a221;
  --text-light: #ffffff;
  --text-muted: #c4b8b2;
  --border-glass: rgba(210, 141, 14, 0.2);
  --border-glass-hover: rgba(210, 141, 14, 0.5);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Outfit", sans-serif;
}

.serif {
  font-family: "Playfair Display", serif;
}

.text-accent {
  color: var(--accent);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

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

/* Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  padding: 1rem 8%;
  background: rgba(18, 12, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
}

.logo i {
  color: var(--accent);
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

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

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

.btn-siscp {
  background: transparent;
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600 !important;
  text-transform: none !important;
  transition: var(--transition);
  cursor: pointer;
}

.btn-siscp::after {
  display: none;
}

.btn-siscp:hover {
  background: var(--accent);
  color: var(--bg-dark) !important;
  box-shadow: 0 0 20px rgba(210, 141, 14, 0.4);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  margin-top: 20px;
  background: var(--accent);
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(210, 141, 14, 0.3);
}

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  margin-top: 20px;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg-dark);
}

/* Hero Section (Split Layout com Animação) */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

/* Coluna Esquerda: Texto */
.hero-content {
  padding: 140px 0 40px 8%;
  width: 65%;
  /* Define espaço muito maior para o texto */
  max-width: 1000px;
  z-index: 10;
  /* Garante que ficará sobreposto à animação */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-tag {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 850px;
  /* Aumentado para usar o novo espaço disponível */
}

.hero-actions-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centraliza tudo (botões e texto rolar) em relação ao seu próprio eixo */
  align-self: flex-start;
  /* Mantém o bloco todo alinhado à esquerda junto ao texto */
}

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  text-decoration: none;
  margin: 3rem 0 0 0;
  /* Espaçamento apenas em cima para afastar dos botões */
}

.hero-scroll i {
  color: var(--accent);
  font-size: 1.2rem;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Coluna Direita: Animação Frame by Frame */
.hero-animation {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  /* Ocupa metade da tela à direita, criando sobreposição com o texto */
  height: 100%;
  overflow: hidden;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* Vinheta (Degradê) sobreposta para esconder as bordas das imagens e fundir perfeitamente com o fundo escuro */
.hero-animation::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 35%, var(--bg-dark) 75%);
  pointer-events: none;
  z-index: 5;
}

.anim-canvas {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Redimensiona mantendo a proporção */
}

/* Máscara de fade para integrar a animação ao fundo da seção esquerda */
.anim-edge-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  /* Largura do fade */
  height: 100%;
  background: linear-gradient(to right, var(--bg-dark) 0%, rgba(18, 12, 10, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Textos sobrepostos à animação */
.anim-text {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  padding: 0 2rem;
  z-index: 6;
  /* Acima da vinheta */
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-text-top {
  top: 23%;
  /* Altura balanceada: nem muito baixa na rocha, nem dentro do menu */
  padding-left: 35%;
  /* Empurra o texto mais para a direita */
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 1;
  transform: translateY(0);
}

.anim-text-bottom {
  bottom: 10%;
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1.5px;
  opacity: 0;
  transform: translateY(10px);
}

/* Responsividade da Hero */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    /* Empilha em telas menores */
    height: auto;
    padding-top: 100px;
  }

  .hero-content {
    padding: 40px 8%;
    align-items: center;
    text-align: center;
  }

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

  .hero-animation {
    height: 50vh;
    /* Altura fixa para a animação em mobile */
    min-height: 400px;
    width: 100%;
  }

  .anim-edge-fade {
    /* Em mobile, o fade precisa ser no topo para misturar com o texto acima */
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, rgba(18, 12, 10, 0) 100%);
  }
}

/* Sections General */
.section-padding {
  padding: 8rem 8%;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  /* Garante que a imagem comece na mesma altura do texto */
}

.about-image {
  position: sticky;
  /* Fica imóvel enquanto o texto ao lado rola */
  top: 180px;
  /* Deixa uma margem para o menu que fica fixo no topo */
  border-radius: 8px;
}

.about-image img {
  width: 110%;
  border-radius: 4px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Canvas da animação da seção Sobre */
.about-anim-canvas {
  width: 110%;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 2;
  position: relative;
  display: block;
  background: #0a0704;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 110%;
  height: 100%;
  border: 2px solid var(--accent);
  border-radius: 4px;
  z-index: 1;
}

.about-experience {
  position: absolute;
  bottom: -100px;
  right: -50px;
  background: var(--bg-card);
  padding: 2rem;
  border: 1px solid var(--border-glass);
  border-radius: 4px;
  z-index: 3;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-experience h3 {
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-experience p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Areas Section */
.areas-section {
  background-color: var(--bg-card);
  position: relative;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.area-card {
  background: var(--bg-dark);
  padding: 3rem 2rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 3px 3px 10px rgba(255, 255, 255, 0.393);
  /* Sombra branca esfumada e leve */
  transition: var(--transition);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--accent);
  transition: var(--transition);
}

.area-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 3px 3px 15px rgba(33, 33, 33, 0.194);
  /* Brilho branco mais intenso no hover */
}

.area-card:hover::before {
  height: 100%;
}

.area-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.area-card:hover i {
  transform: scale(1.1);
}

.area-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.area-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.contact-info-card {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 4px;
  border: 1px solid var(--border-glass);
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 5px;
}

.contact-item h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.contact-cta {
  background: linear-gradient(45deg, var(--bg-card), var(--bg-dark));
  padding: 4rem;
  text-align: center;
  border-radius: 4px;
  border: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-cta p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 500px;
}

/* Footer */
.footer {
  background: #0a0705;
  padding: 5rem 8% 2rem;
  border-top: 1px solid var(--border-glass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about p {
  color: var(--text-muted);
  margin-top: 1.5rem;
  max-width: 350px;
}

.footer-title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 0.8rem;
  color: var(--accent);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Modals (Shared with system) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  opacity: 1;
}

.modal-content {
  background: var(--bg-card);
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  padding: 3rem;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  color: #fff;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(210, 141, 14, 0.2);
  background: rgba(0, 0, 0, 0.5);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  margin-left: 10px;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

@media (max-width: 992px) {

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }

  .about-experience {
    right: 20px;
    bottom: -20px;
    padding: 1.5rem;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .header {
    padding: 1rem 5%;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 5% 40px;
  }

  .hero h1 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-primary {
    margin-left: 0px;
  }

  .section-padding {
    padding-top: 5rem 5%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================================
   LGPD — Modal de Consentimento Completo
   ============================================================ */

/* Overlay de fundo */
.lgpd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 3, 2, 0.85);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lgpd-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Modal card */
.lgpd-modal {
  background: linear-gradient(145deg, #1c120e, #251912);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  width: 100%;
  max-width: 560px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(210, 141, 14, 0.08);
  overflow: hidden;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lgpd-overlay.active .lgpd-modal {
  transform: translateY(0) scale(1);
}

/* Cabeçalho */
.lgpd-modal-header {
  padding: 2.2rem 2.2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(210, 141, 14, 0.12);
}

.lgpd-icon {
  width: 60px;
  height: 60px;
  background: rgba(210, 141, 14, 0.12);
  border: 1px solid rgba(210, 141, 14, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
  color: var(--accent);
}

.lgpd-modal-header h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.8rem;
  font-family: "Playfair Display", serif;
}

.lgpd-modal-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto;
}

.lgpd-modal-header strong {
  color: var(--accent);
  font-weight: 600;
}

/* Corpo — linhas de toggle */
.lgpd-modal-body {
  padding: 1.2rem 2.2rem;
}

.lgpd-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lgpd-toggle-row:last-child {
  border-bottom: none;
}

.lgpd-toggle-row.lgpd-essential {
  opacity: 0.6;
}

.lgpd-toggle-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.lgpd-toggle-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lgpd-toggle-label i {
  color: var(--accent);
  font-size: 0.85rem;
}

.lgpd-toggle-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.lgpd-toggle-always {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Toggle switch customizado */
.lgpd-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.lgpd-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.lgpd-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  transition: 0.3s ease;
}

.lgpd-slider::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lgpd-switch input:checked+.lgpd-slider {
  background: rgba(210, 141, 14, 0.25);
  border-color: var(--accent);
}

.lgpd-switch input:checked+.lgpd-slider::before {
  transform: translateX(22px) translateY(-50%);
  background: var(--accent);
  box-shadow: 0 0 10px rgba(210, 141, 14, 0.5);
}

/* Rodapé do modal */
.lgpd-modal-footer {
  padding: 1.4rem 2.2rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(210, 141, 14, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.lgpd-policy-link {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.lgpd-policy-link:hover {
  color: var(--accent);
}

.lgpd-policy-link i {
  font-size: 0.7rem;
}

.lgpd-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Botões de ação */
.lgpd-btn-reject,
.lgpd-btn-save,
.lgpd-btn-accept {
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.8rem;
  white-space: nowrap;
}

.lgpd-btn-reject {
  padding: 9px 14px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lgpd-btn-reject:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.lgpd-btn-save {
  padding: 9px 14px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border-glass);
}

.lgpd-btn-save:hover {
  background: rgba(210, 141, 14, 0.1);
  border-color: rgba(210, 141, 14, 0.5);
}

.lgpd-btn-accept {
  padding: 9px 18px;
  background: var(--accent);
  color: var(--bg-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.lgpd-btn-accept:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(210, 141, 14, 0.35);
}

/* Botão flutuante de configurações LGPD */
.lgpd-settings-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(25, 16, 12, 0.92);
  border: 1px solid var(--border-glass);
  color: var(--accent);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.lgpd-settings-btn:hover {
  background: var(--accent);
  color: var(--bg-dark);
  transform: scale(1.1);
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(210, 141, 14, 0.4);
}

/* Placeholder do mapa (quando sem consentimento) */
.map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 4px;
  border: 1px dashed rgba(210, 141, 14, 0.3);
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
  padding: 2rem;
  color: var(--text-muted);
}

.map-placeholder i {
  font-size: 2.5rem;
  color: rgba(210, 141, 14, 0.4);
  margin-bottom: 0.5rem;
}

.map-placeholder h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.map-placeholder p {
  font-size: 0.85rem;
  max-width: 300px;
  line-height: 1.5;
}

/* Link bloqueado por LGPD */
.lgpd-blocked-link {
  opacity: 0.55;
  cursor: help;
  text-decoration: line-through !important;
  position: relative;
}

.lgpd-blocked-link::after {
  content: " 🔒";
  font-size: 0.75em;
  text-decoration: none;
  display: inline;
}

/* Responsivo */
@media (max-width: 600px) {
  .lgpd-modal-header {
    padding: 1.8rem 1.5rem 1.2rem;
  }

  .lgpd-modal-body {
    padding: 0.8rem 1.5rem;
  }

  .lgpd-modal-footer {
    padding: 1.2rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
  }

  .lgpd-actions {
    justify-content: stretch;
    flex-direction: column;
  }

  .lgpd-btn-reject,
  .lgpd-btn-save,
  .lgpd-btn-accept {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .lgpd-policy-link {
    justify-content: center;
  }

  .map-placeholder {
    height: 260px;
  }
}

/* =========================================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================================= */

/* Ocultar o menu toggle por padrão no desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 992px) {
  .header {
    padding: 1rem 5%;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .hero {
    flex-direction: column-reverse;
    height: auto;
    padding-top: 120px;
  }

  .hero-content {
    padding: 3rem 5%;
    text-align: center;
  }

  .hero-actions-wrapper {
    align-items: center;
  }

  .hero-animation {
    width: 100%;
    height: 60vh;
    position: relative;
  }

  .anim-edge-fade {
    /* Vinheta adaptada para mobile (fades top/bottom em vez de left) */
    background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 20%, transparent 80%, var(--bg-dark) 100%);
  }

  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    position: relative;
    top: 0;
  }

  .about-experience {
    bottom: -50px;
    right: -10px;
    padding: 1.2rem;
  }

  .about-experience h3 {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
  }

  .about-experience p {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .about-experience {
    bottom: -80px;
    /* Empurra mais para baixo no celular */
    right: -5px;
    padding: 1rem;
  }

  .about-experience h3 {
    font-size: 1.8rem;
    /* Reduz a fonte do 20+ */
  }

  .about-experience p {
    font-size: 0.65rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(10, 7, 4, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 1000;
    border-left: 1px solid var(--border-glass);
  }

  .nav-links.active {
    right: 0;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions a {
    text-align: center;
    width: 100%;
  }

  .anim-text-top {
    top: 15%;
    padding-left: 0;
    font-size: 0.75rem;
  }

  .anim-text-bottom {
    bottom: 10%;
    padding-right: 0;
    font-size: 0.75rem;
  }

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

  .section-padding {
    padding: 4rem 5%;
  }
}