/* ============================
   Variáveis e Reset
============================ */
:root {
  --primary: #1a365d;
  --primary-dark: #153060;
  --secondary: #e9d8a6;
  --accent: #d4af37;
  --text: #2d3748;
  --text-light: #718096;
  --background: #FFFFFF;
  --background-alt: #F7F7F9;
  --border: #E2E8F0;
  --success: #38a169;
  --error: #e53e3e;
  --warning: #dd6b20;
  --info: #3182ce;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text);
  overflow-x: hidden;
  background-color: var(--background);
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================
   Header e Navegação
============================ */
header {
  background: var(--background);
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

/* Remove a regra para o cabeçalho "rolado", pois a sombra já é permanente */
header.scrolled {
  box-shadow: var(--shadow-lg);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  height: 60px;
  filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.3));
}

.menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
}

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

.menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-header {
  background: transparent;
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
  border: 2px solid var(--primary);
  cursor: pointer;
}

.btn-header:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 3px 0;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Linha divisória do cabeçalho */
.header-divider {
  width: 250px;
  height: 4px;
  background: var(--border);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ============================
   Seção de Boas-vindas
============================ */
.welcome-section {
  padding-top: 150px;
  padding-bottom: 50px;
  text-align: center;
  background: var(--background-alt);
}

.welcome-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-style: italic;
  color: var(--text-light);
}

/* ============================
   Seções Gerais
============================ */
.secao {
  padding: 40px 0;
}

.secao h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary);
  position: relative;
}

.secao h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
}

/* Animate-on-scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   Sobre
============================ */
#sobre {
  padding-top: 140px;
}

/* Garante que o H2 ocupe a largura total e fique no topo */
.secao h2 {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 60px; /* Espaço para não encostar no conteúdo abaixo */
  clear: both;
}

.sobre-conteudo {
  display: flex;
  flex-direction: column; /* No mobile, empilha o texto sobre os sócios */
  gap: 40px;
}

/* Layout Desktop para a Seção Sobre */
@media (min-width: 1024px) {
  .sobre-conteudo {
    flex-direction: row; /* Coloca o bloco de texto e o bloco de sócios lado a lado */
    align-items: stretch;
  }
  
  .sobre-texto {
    flex: 1; /* Ocupa cerca de 40% da largura */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .sobre-socios-wrapper {
    flex: 1.5; /* Ocupa cerca de 60% da largura para caber dois advogados */
    display: flex;
    gap: 20px;
  }
}

/* Cards dos Advogados */
.sobre-advogado {
  flex: 1;
  background: var(--background);
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  border-bottom: 3px solid var(--accent);
}

.sobre-advogado:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Container da Foto para manter uniformidade */
.foto-container img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  margin-bottom: 15px;
  transition: var(--transition);
}

.sobre-advogado:hover img {
  border-color: var(--accent);
}

.socio-descricao {
  flex-grow: 1; /* Empurra as redes sociais para a base do card */
  margin-bottom: 15px;
}

.socio-descricao p {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
}

/* ============================
   Áreas de Atuação (Grid 3x2)
============================ */
.areas-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* No desktop, fixa em 3 colunas para ficar simétrico */
@media (min-width: 1024px) {
  .areas-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.area-item {
  background: var(--background);
  padding: 35px 25px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.area-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ============================
   Áreas de Atuação
============================ */
#areas {
  padding-top: 100px;
  margin-top: 60px;
}

.areas-container {
  display: grid;
  /* Cria colunas de no mínimo 280px. Se couber 3, ele coloca 3. */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.area-item {
  background: var(--background);
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  /* Garante que todos os cards tenham a mesma altura mesmo com textos diferentes */
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Deixa o ícone e o título com mais respiro */
.area-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.area-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Ajuste para telas muito grandes: centraliza os 2 últimos cards se sobrarem sozinhos */
@media (min-width: 1200px) {
  .areas-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.area-item {
  background: var(--background);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.area-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.area-item:hover::before {
  transform: scaleX(1);
}

.area-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.area-item:hover {
  transform: translateY(-5px) scale(1.02);
}

.area-icon-container {
  margin-bottom: 20px;
}

.area-icon {
  font-size: 3rem;
  color: var(--accent);
  transition: var(--transition);
}

.area-item:hover .area-icon {
  transform: scale(1.1);
}

.area-item h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.area-item p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text);
}

/* ============================
   Seção de Diagnóstico LGPD
============================ */
#diagnostico-lgpd {
  background-color: var(--background-alt);
}

.intro-diagnostico {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: var(--text-light);
}

.quiz-container {
  background: var(--background);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}

#quiz-progress-bar {
  width: 100%;
  height: 8px;
  background-color: var(--border);
  border-radius: 4px;
  margin-bottom: 30px;
}

#quiz-progress {
  height: 100%;
  width: 0%;
  background-color: var(--primary);
  border-radius: 4px;
  transition: width 0.3s ease;
}

#quiz-question-screen {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#quiz-question-text {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-option {
  display: block;
  background: var(--background-alt);
  padding: 15px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.quiz-option:hover {
  background: var(--border);
}

.quiz-option input[type="radio"] {
  margin-right: 10px;
}

.quiz-nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

/* Telas de resultado */
.hidden-screen {
  display: none;
}

.result-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

#result-farol {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.farol-green { background-color: var(--success); }
.farol-yellow { background-color: var(--warning); }
.farol-red { background-color: var(--error); }

.result-description {
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
}

.result-form-intro {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
  color: var(--text-light);
}

/* ============================
   FAQ
============================ */
.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  padding: 10px 0;
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 20px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.4s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--background);
}

.faq-answer p {
  padding: 20px 0;
  line-height: 1.7;
  font-size: 1rem;
  color: var(--text);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* ============================
   Contato
============================ */
.contato-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.contato-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--text);
}

.contato-info i {
  color: var(--accent);
}

.botoes-contato {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
  margin-top: 20px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Formulário de contato */
#contactForm {
  background: var(--background-alt);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: 40px;
  transition: all 0.5s ease;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#contactForm.hidden {
  display: none;
}

#contactForm h3 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--primary);
  font-size: 1.8rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  color: var(--text);
  background-color: var(--background);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

#contactForm .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 15px;
  font-size: 1.1rem;
  padding: 15px 30px;
  border-radius: 8px;
}

#contactForm.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

/* ============================
   FOOTER
============================ */
footer {
  background: rgba(26, 54, 93, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: white;
  text-align: center;
  padding: 30px 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.05);
}

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}

footer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  transition: var(--transition);
}

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

/* ============================
   WhatsApp e Back to Top
============================ */
.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  z-index: 999;
}

.whatsapp-fixed:hover {
  background: #128c7e;
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--primary);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 998;
}

.back-to-top.visible {
  display: flex;
  opacity: 1;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--primary-dark);
}

/* ============================
   Responsividade
============================ */
@media (max-width: 992px) {
  .menu {
    position: fixed;
    top: 75px;
    left: 0;
    background: var(--primary);
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 0;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
  }

  .menu.active {
    transform: translateY(0);
  }

  .menu a {
    color: white;
    padding: 15px;
    width: 100%;
    text-align: center;
  }

  .menu a:hover {
    background: var(--primary-dark);
  }

  .menu a::after {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }

  .header-actions {
    display: none;
  }
  
  .sobre-conteudo {
    flex-direction: column;
  }

  .sobre-advogado {
    margin-top: 40px;
  }
  
  .contato-info {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .destaques {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .secao {
    padding: 80px 0;
  }
  
  .secao h2 {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 25px;
    font-size: 1rem;
  }
  
  .btn-header {
    display: none;
  }

  .assistente-container {
    flex-direction: column;
  }

  #ai-button {
    width: 100%;
  }

  .whatsapp-fixed {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .back-to-top {
    bottom: 80px;
  }
}

@media (max-width: 576px) {
    .destaques {
        grid-template-columns: 1fr;
    }
}

/* ============================
   Revisão RGA - Home e Subpáginas
============================ */
.hero-section {
  padding: 160px 0 90px;
  background: linear-gradient(135deg, rgba(26,54,93,0.96), rgba(21,48,96,0.92));
  color: white;
  text-align: center;
}
.hero-section .container { max-width: 960px; }
.hero-section h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 20px;
}
.hero-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 820px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.88);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.hero-section .btn-secondary { color: white; border-color: white; }
.btn-secondary:hover, .hero-section .btn-secondary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}
.section-intro {
  text-align: center;
  max-width: 780px;
  margin: -25px auto 40px;
  color: var(--text-light);
  font-size: 1.08rem;
}
.card-link {
  margin-top: auto;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.card-link:hover { color: var(--accent); }
.diferenciais-grid, .content-grid, .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 35px;
}
.diferencial-card, .content-card, .step-card {
  background: var(--background);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 28px;
  border-top: 4px solid var(--accent);
}
.diferencial-card i, .content-card i, .step-card i { color: var(--accent); font-size: 2rem; margin-bottom: 14px; }
.diferencial-card h3, .content-card h3, .step-card h3 { color: var(--primary); margin-bottom: 10px; }
.cta-section {
  background: var(--background);
  color: var(--text);
  text-align: center;
  padding: 70px 0;
}

.cta-section .container {
  max-width: 900px;
  background: var(--background);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 44px 36px;
}

.cta-section h2 {
  color: var(--primary);
  font-size: 2.1rem;
  margin-bottom: 28px;
}

.cta-section h2::after {
  background: var(--accent);
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-section .botoes-contato {
  margin-top: 28px;
}

.cta-section #contactForm {
  background: var(--background-alt);
  border: 1px solid var(--border);
  box-shadow: none;
}
.area-hero { padding-bottom: 70px; }
.area-page-content { padding-top: 70px; }
.area-page-content ul { padding-left: 20px; line-height: 1.8; }
.breadcrumb { color: rgba(255,255,255,0.78); margin-bottom: 18px; font-weight: 600; }
.breadcrumb a { color: white; text-decoration: none; }
.lead-text { font-size: 1.15rem; line-height: 1.8; color: var(--text); max-width: 900px; margin: 0 auto 30px; text-align: center; }
.notice-box {
  background: var(--background-alt);
  border-left: 5px solid var(--accent);
  padding: 24px;
  border-radius: 8px;
  margin: 35px 0;
}
@media (max-width: 768px) {
  .hero-section { padding: 130px 0 70px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { justify-content: center; }
}


/* ============================
   Endereço Rodapé
============================ */
.footer-address {
  margin-top: 30px;
  padding: 20px 0 10px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
}

.footer-address i {
  color: var(--accent);
  margin-right: 8px;
}


.footer-address {
  display: block;
  margin-top: 30px;
  padding: 24px 0 10px;
  border-top: 1px solid var(--border);
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
}

.footer-address strong {
  color: var(--primary);
  font-weight: 600;
}

.footer-address i.fa-map-marker-alt {
  color: var(--accent);
  margin-right: 8px;
}

.footer-address-city {
  margin-top: 6px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.footer-map-link {
  margin-top: 10px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-address:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ==========================================================================
   Ajuste de Contraste do Rodapé (RGA)
   ========================================================================== */
footer .footer-address, 
footer .footer-address strong, 
footer .footer-address-city,
footer .footer-map-link {
  color: #ffffff !important;
}
footer .footer-address {
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Animação Suave para o Quiz de LGPD */
.quiz-step {
  animation: fadeInStep 0.4s ease-in-out;
}
@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ==========================================================================
   Design Compacto e Moderno do Rodapé (Lado a Lado + Mapa)
   ========================================================================== */
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left !important;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  align-items: center;
  text-align: center;
}

.footer-address-block {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-align: center;
  justify-content: center;
}

.footer-address-block i {
  color: var(--accent);
  font-size: 1.4rem;
}

.footer-address-city {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.footer-map-container {
  width: 100%;
  max-width: 350px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left !important;
  }
  
  .footer-brand {
    align-items: flex-start;
    text-align: left;
    width: auto;
  }
  
  .footer-links {
    justify-content: flex-start;
  }
  
  .footer-info {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    width: auto;
    text-align: left;
  }
  
  .footer-address-block {
    text-align: left;
    justify-content: flex-start;
  }
}


/* ============================
   Páginas Legais
============================ */
.legal-text-container {
  max-width: 900px;
}

.legal-text-container p {
  margin-bottom: 24px;
  line-height: 1.9;
  color: var(--text);
  font-size: 1.05rem;
  text-align: justify;
}

/* ============================
   Rodapé - Endereço
============================ */
.footer-address-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-light);
  font-weight: 400;
}


/* ============================
   Perfil individual
============================ */
.single-profile {
  max-width: 420px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .sobre-socios-wrapper.single-profile {
    flex: 0.9;
  }
}
