@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400&family=Montserrat:wght@500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');
/* DEFINIÇÃO DE CORES GLOBAIS */
:root {
  --cor-preto: #101010;
  --cor-bordeaux: #4A0E1A;
  --cor-dourado: #B79261;
  --cor-branco: #FFFFFF;
}

.header-premium-advocacia {
  width: 100%;
  padding: 20px 0; 
  background-color: var(--cor-preto);
  border-bottom: 1px solid rgba(183, 146, 97, 0.2);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: transform 0.4s ease, background-color 0.3s ease;
  box-sizing: border-box;
}

.header-hidden { transform: translateY(-100%); }

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

/* MARCA */
.brand-logo a {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--cor-branco);
  text-decoration: none;
  letter-spacing: 3px;
  transition: all 0.3s ease;
  display: block;
  position: relative;
  z-index: 1001; 
}

.brand-logo a:hover { color: var(--cor-bordeaux); }

/* WRAPPER (Agrupa Nav + CTA) */
.header-right-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* NAVEGAÇÃO PRINCIPAL */
.header-nav { display: flex; gap: 30px; align-items: center; }

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #A0A0A0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  
  /* CORREÇÃO DO ALINHAMENTO */
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0; height: 1px;
  background-color: var(--cor-bordeaux);
  transition: all 0.3s ease;
}

.nav-link:hover { color: var(--cor-branco); }
.nav-link:hover::after { width: 100%; left: 0; }

.nav-link.active { color: var(--cor-bordeaux); font-weight: 600; }
.nav-link.active::after { width: 100%; left: 0; background-color: var(--cor-bordeaux); }

/* --- ESTRUTURA DO DROPDOWN (DESKTOP) --- */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown-arrow {
  font-size: 8px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--cor-preto);
  border: 1px solid rgba(183, 146, 97, 0.25);
  border-radius: 4px;
  padding: 15px 0;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1002;
}

/* Links do Submenu */
.dropdown-link {
  display: block;
  padding: 12px 25px;
  color: #A0A0A0;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-link:hover {
  background-color: rgba(74, 14, 26, 0.2); 
  color: var(--cor-dourado);
  padding-left: 30px; 
}

/* Ativação do Dropdown via Mouse (Desktop) */
@media (min-width: 951px) {
  .nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
  }
  .nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* BOTÃO CTA DO CABEÇALHO */
.btn-cta-header {
  padding: 14px 30px;
  border: 1px solid var(--cor-bordeaux);
  color: var(--cor-branco) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  border-radius: 4px;
}

.btn-cta-header:hover {
  background-color: var(--cor-bordeaux);
  border-color: var(--cor-bordeaux);
  color: var(--cor-branco) !important;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

/* BOTÃO MENU MOBILE */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px; height: 30px;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  box-shadow: none !important;
}

.mobile-menu-toggle .bar {
  width: 24px; height: 2px;
  background-color: var(--cor-dourado);
  margin: 3px 0;
  transition: all 0.3s ease;
}

/* --- COMPORTAMENTO DO MENU NO MOBILE & TABLET --- */
@media (max-width: 950px) {
  .mobile-menu-toggle { display: flex; }

  .header-right-wrapper {
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background-color: var(--cor-preto);
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 30px 20px 40px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(183, 146, 97, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
  }

  .header-right-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-nav {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .nav-link { font-size: 14px; }
  
  .nav-item-dropdown {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .dropdown-menu {
    position: relative;
    top: 0; left: 0;
    transform: none;
    border: none;
    background-color: #141414; 
    box-shadow: none;
    padding: 10px 0;
    margin-top: 10px;
    display: none; 
    width: 100%;
  }
  
  .dropdown-menu.mobile-open {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-link {
    padding: 12px 20px;
    font-size: 13px;
  }

  .btn-cta-header {
    width: 100%; text-align: center;
    padding: 16px 20px; max-width: 300px;
  }

  .mobile-menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .mobile-menu-toggle.active .bar:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Definições de Cores */

:root {

  --cor-preto: #101010;

  --cor-dourado: #4A0E1A;  

  --cor-bordeaux: #4A0E1A; 

}

.footer-premium-advocacia {

  background-color: var(--cor-preto);

  padding: 80px 20px 40px;

  border-top: 1px solid rgba(183, 146, 97, 0.2);

}

.footer-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }

.footer-phrase { font-family: 'Playfair Display', serif; color: #FAFAFA; font-size: 32px; margin-bottom: 20px; }

.footer-divider { width: 60px; height: 3px; background-color: var(--cor-dourado); margin: 0 auto 50px; }

.footer-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 60px; }

/* Botão Glass */

.btn-glass {

  display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px;

  background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 6px;

  color: #E0E0E0; font-size: 13px; text-transform: uppercase; text-decoration: none;

  transition: all 0.4s ease;

}

.btn-icon { width: 18px; height: 18px; margin-right: 10px; fill: var(--cor-dourado); transition: all 0.4s ease; }

/* Efeito Hover */

.btn-glass:hover {

  background: rgba(139, 0, 0, 0.1); 

  border-color: var(--cor-bordeaux);

  color: #FFFFFF;

  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);

}

.btn-glass:hover .btn-icon { fill: var(--cor-bordeaux); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 20px; color: #7A7A7A; }

@media (max-width: 767px) { .btn-glass { width: 100%; } }

/* 1. ESTADOS DA ANIMAÇÃO (CSS) */

/* Estado Inicial: Elemento invisível e levemente deslocado para baixo */
.reveal-hidden {
  opacity: 0;
  transform: translateY(40px);
  /* Curva de transição 'cubic-bezier' premium (começa rápido, termina suave) */
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1) !important;
  will-change: opacity, transform;
}

/* Estado Final: Elemento visível em sua posição original */
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Classes utilitárias opcionais caso queira aplicar delays (atrasos) em elementos vizinhos no futuro */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }

/* VARIÁVEIS DE COR */
:root {
  --wa-preto: #151515;
  --wa-bordeaux: #4A0E1A;
  --wa-dourado: #B79261;
  --wa-branco: #FFFFFF;
}

/* CONTAINER PRINCIPAL (Fixado no canto inferior direito) */
.whatsapp-premium-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999; 
  pointer-events: none; 
}

/* ETIQUETA (TOOLTIP) */
.wa-tooltip {
  background-color: var(--wa-preto);
  color: var(--wa-branco);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 18px;
  border: 1px solid rgba(183, 146, 97, 0.3);
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none; 
}

/* BOTÃO CIRCULAR */
.wa-floating-btn {
  pointer-events: auto; 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--wa-preto);
  color: var(--wa-dourado); /* Cor inicial Dourada */
  border: 1px solid var(--wa-dourado);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  
  /* Animação de respiração (Glow Dourado) */
  animation: waPremiumGlow 3s infinite alternate;
}

/* EFEITOS AO PASSAR O MOUSE (HOVER) */
.wa-floating-btn:hover {
  background-color: var(--wa-bordeaux);
  color: var(--wa-branco); /* Ícone fica branco no hover */
  border-color: var(--wa-bordeaux);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(74, 14, 26, 0.5);
  animation: none; 
}

/* Exibe a etiqueta quando passa o mouse no botão (Desktop) */
.whatsapp-premium-container:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ANIMAÇÃO DE RESPIRAÇÃO (GLOW) */
@keyframes waPremiumGlow {
  0% { box-shadow: 0 0 0 0 rgba(183, 146, 97, 0.1); }
  100% { box-shadow: 0 0 20px 8px rgba(183, 146, 97, 0.2); }
}

/* RESPONSIVIDADE PARA MOBILE */
@media (max-width: 767px) {
  .whatsapp-premium-container {
    bottom: 25px;
    right: 25px;
  }
  
  .wa-floating-btn {
    width: 55px;
    height: 55px;
  }
  
  /* No mobile, escondemos a etiqueta para não poluir a tela pequena */
  .wa-tooltip {
    display: none;
  }
}

/* VARIÁVEIS GLOBAIS */
:root {
  --lgpd-preto: rgba(16, 16, 16, 0.95);
  --lgpd-dourado: #4A0E1A;
  --lgpd-branco: #4A0E1A;
  --wa-bordeaux: #4A0E1A;
}

/* CONTAINER DO BANNER */
.lgpd-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--lgpd-preto);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(183, 146, 97, 0.2);
  z-index: 9998; /* Fica logo abaixo do WhatsApp (9999) */
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

/* Estado realmente oculto: evita que o card fique parcialmente visível após aceitar. */
.lgpd-wrapper.hidden,
.lgpd-wrapper[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(100% + 96px)) !important;
}

/* Classe que exibe o banner */
.lgpd-wrapper.show {
  transform: translateY(0);
}

.lgpd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-sizing: border-box;
}

/* TEXTOS */
.lgpd-text {
  flex: 1;
}

.lgpd-text p {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  line-height: 1.6em;
  color: #B0B0B0;
  margin: 0;
}

.lgpd-text strong {
  color: var(--wa-bordeaux);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.lgpd-link {
  color: #B79261;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.lgpd-link:hover {
  text-decoration: underline;
  color: #4A0E1A;
}

/* BOTÃO DE AÇÃO */
.btn-lgpd-accept {
  background-color: var(--lgpd-dourado);
  color: #101010;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  padding: 14px 30px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-lgpd-accept:hover {
  background-color: #B79261;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* RESPONSIVIDADE */
@media (max-width: 767px) {
  .lgpd-container {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
    gap: 15px;
  }
  .btn-lgpd-accept {
    width: 100%;
  }
}

/* Barra mobile removida: mantido apenas o WhatsApp flutuante e o banner LGPD. */
.mobile-sticky-bar { display: none !important; }
/* IMPORTAÇÃO DE FONTES */


/* VARIÁVEIS GLOBAIS ABSOLUTAS DO KIT DE MARCA */
:root {
  --cor-preto: #101010;
  --cor-bordeaux: #4A0E1A;
  --cor-texto-escuro: #F5F5F5;
  --cor-branco: #FFFFFF;
}

/* CONTAINER PRINCIPAL DA SEÇÃO (DARK MODE) */
.hero-premium-advocacia {
  background-color: var(--cor-preto);
  width: 100%;
  padding: 160px 0 100px 0; 
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(183, 146, 97, 0.1);
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  z-index: 2;
  box-sizing: border-box;
}

/* ÁREA DE TEXTO (ESQUERDA) */
.hero-content {
  flex: 1;
  max-width: 580px;
}

/* SUBTÍTULO / TAG DE SUPORTE */
.hero-tag {
  font-family: 'Montserrat', sans-serif;
  color: var(--cor-bordeaux);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

/* TÍTULO PRINCIPAL H1 */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2em;
  color: var(--cor-branco);
  margin: 0 0 25px 0;
}

/* TEXTO DE APOIO P */
.hero-description {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6em;
  color: var(--cor-texto-escuro);
  margin: 0 0 40px 0;
}

/* ALINHAMENTO DE BOTÕES */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* --- ESTILIZAÇÃO DO CTA DE ALTA CONVERSÃO (VINHO) --- */
.btn-cta-primary {
  background-color: var(--cor-bordeaux);
  color: var(--cor-branco) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px;
  border: 1px solid var(--cor-bordeaux);
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-cta-primary:hover {
  background-color: transparent;
  color: var(--cor-branco) !important;
  border-color: var(--cor-bordeaux);
  box-shadow: 0 8px 25px rgba(183, 146, 97, 0.15);
}

/* --- ESTILIZAÇÃO DO CTA SECUNDÁRIO (OURO) --- */
.btn-cta-secondary {
  background-color: transparent;
  color: var(--cor-bordeaux) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px;
  border: 1px solid var(--cor-bordeaux);
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-cta-secondary:hover {
  background-color: var(--cor-bordeaux);
  color: var(--cor-preto) !important;
  box-shadow: 0 8px 25px rgba(183, 146, 97, 0.2);
}

/* --- ÁREA VISUAL (DIREITA) --- */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 10 / 11;
  height: auto;
  background-color: #1A1A1A; 
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(183, 146, 97, 0.2);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: 15px; left: 15px; right: 15px; bottom: 15px;
  border: 1px solid rgba(183, 146, 97, 0.5);
  border-radius: 2px;
  pointer-events: none;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Elemento decorativo de fundo */
.hero-bg-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 14, 26, 0.3) 0%, rgba(16, 16, 16, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
  .hero-title { font-size: 32px; }
  .hero-container { gap: 40px; }
  .hero-image-wrapper { max-width: 410px; }
  .btn-cta-primary, .btn-cta-secondary { padding: 14px 24px; font-size: 13px; }
}

@media (max-width: 767px) {
  .hero-premium-advocacia { padding: 130px 0 60px 0; }
  .hero-container { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  
  .hero-title { font-size: 28px; } 
  .hero-description { font-size: 16px; }
  
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn-cta-primary, .btn-cta-secondary { width: 100%; }
  
  .hero-visual { justify-content: center; width: 100%; }
  .hero-image-wrapper { max-width: 500px; }
}

/* VARIÁVEIS GLOBAIS ABSOLUTAS (Reafirmadas para garantir escopo visual) */

:root {

  --cor-preto: #101010;

  --cor-bordeaux: #4A0E1A;

  --cor-dourado: #B79261;

  --cor-texto-escuro: #F5F5F5;

  --cor-branco: #FFFFFF;

}

/* CONTAINER PRINCIPAL */

.expertise-premium-advocacia {

  background-color: var(--cor-preto);

  width: 100%;

  padding: 100px 0; 

  display: flex;

  justify-content: center;

  align-items: center;

  box-sizing: border-box;

  position: relative;

  /* Borda superior sutil para separar suavemente da dobra anterior */

  border-top: 1px solid rgba(255,255,255,0.02);

}

.expertise-container {

  max-width: 1200px;

  width: 100%;

  margin: 0 auto;

  padding: 0 20px;

  display: flex;

  flex-direction: column;

  align-items: center;

  z-index: 2;

  box-sizing: border-box;

}

/* CABEÇALHO DA SEÇÃO */

.expertise-header {

  text-align: center;

  max-width: 800px;

  margin-bottom: 70px;

}

.expertise-tag {

  font-family: 'Montserrat', sans-serif;

  color: var(--cor-dourado);

  font-size: 14px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 15px;

  display: block;

}

.expertise-title {

  font-family: 'Playfair Display', serif;

  font-weight: 700;

  font-size: 36px;

  line-height: 1.3em;

  color: var(--cor-branco); /* Texto branco obrigatório sobre fundo escuro */

  margin: 0 0 20px 0;

}

.expertise-divider {

  width: 60px;

  height: 2px;

  background-color: var(--cor-dourado);

  margin: 0 auto 25px auto;

}

.expertise-subtitle {

  font-family: 'Lato', sans-serif;

  font-weight: 400;

  font-size: 16px;

  line-height: 1.6em;

  color: var(--cor-texto-escuro);

  margin: 0;

}

/* GRID DE SERVIÇOS */

.expertise-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  width: 100%;

  margin-bottom: 60px;

}

/* CARDS DE ATUAÇÃO */

.expertise-card {

  background: rgba(255, 255, 255, 0.02);

  border: 1px solid rgba(183, 146, 97, 0.1);

  border-radius: 4px;

  padding: 50px 40px;

  transition: all 0.4s ease;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  position: relative;

  overflow: hidden;

}

/* Efeito Hover do Card - Iluminação Vinho/Dourado */

.expertise-card:hover {

  background: rgba(74, 14, 26, 0.15); /* Fundo sutil bordô ao passar o mouse */

  border-color: var(--cor-dourado);

  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);

}

/* Ícones */

.card-icon-wrapper {

  margin-bottom: 25px;

  padding-bottom: 20px;

  border-bottom: 1px solid rgba(183, 146, 97, 0.2);

  width: 100%;

  transition: all 0.4s ease;

}

.card-icon {

  width: 40px;

  height: 40px;

  transition: all 0.4s ease;

}

.expertise-card:hover .card-icon-wrapper {

  border-bottom-color: var(--cor-dourado);

}

/* Textos do Card */

.card-title {

  font-family: 'Playfair Display', serif;

  font-size: 24px;

  font-weight: 600;

  color: var(--cor-branco);

  margin: 0 0 15px 0;

  line-height: 1.3em;

}

.card-description {

  font-family: 'Lato', sans-serif;

  font-size: 15px;

  font-weight: 400;

  line-height: 1.6em;

  color: #A0A0A0; /* Cinza médio para criar hierarquia, fica branco gelo no hover */

  margin: 0;

  transition: all 0.4s ease;

}

.expertise-card:hover .card-description {

  color: var(--cor-texto-escuro);

}

/* CTA SECUNDÁRIO */

.btn-cta-secondary {

  background-color: transparent;

  color: var(--cor-dourado) !important;

  font-family: 'Montserrat', sans-serif;

  font-size: 14px;

  font-weight: 700;

  text-transform: uppercase;

  text-decoration: none;

  padding: 16px 40px;

  border-radius: 4px;

  border: 1px solid var(--cor-dourado);

  letter-spacing: 1.5px;

  transition: all 0.4s ease;

  display: inline-flex;

  align-items: center;

  justify-content: center;

}

.btn-cta-secondary:hover {

  background-color: var(--cor-dourado);

  color: var(--cor-preto) !important;

  box-shadow: 0 8px 25px rgba(183, 146, 97, 0.2);

}

/* --- RESPONSIVIDADE --- */

@media (max-width: 1024px) {

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

}

@media (max-width: 767px) {

  .expertise-premium-advocacia { padding: 80px 0; }

  .expertise-title { font-size: 28px; }

  .expertise-grid { grid-template-columns: 1fr; gap: 20px; }

  .expertise-card { padding: 40px 30px; }

  .btn-cta-secondary { width: 100%; text-align: center; }

}

/* VARIÁVEIS GLOBAIS ABSOLUTAS */
:root {
  --cor-preto: #101010;
  --cor-bordeaux: #4A0E1A;
  --cor-dourado: #B79261;
  --cor-texto-escuro: #F5F5F5;
  --cor-branco: #FFFFFF;
}

/* CONTAINER PRINCIPAL DA SEÇÃO */
.about-premium-advocacia {
  background-color: var(--cor-preto);
  width: 100%;
  padding: 120px 0; 
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}

.about-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column; /* NOVO: Elementos empilhados (Imagem em cima, Texto em baixo) */
  align-items: center;
  gap: 60px;
  z-index: 2;
  box-sizing: border-box;
}

/* --- ÁREA VISUAL (IMAGEM LARGA) --- */
.about-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Estilo de moldura deslocada ajustada para o novo formato */
.about-visual::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  height: 100%;
  border: 1px solid var(--cor-dourado);
  border-radius: 4px;
  z-index: 1;
  opacity: 0.5;
  margin-left: 20px;
}

.about-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Imagem muito mais larga */
  height: 500px; /* Altura ideal para paisagem */
  background-color: #1A1A1A; 
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

/* --- ÁREA DE TEXTO (CENTRALIZADA EMBAIXO) --- */
.about-content {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-tag {
  font-family: 'Montserrat', sans-serif;
  color: var(--cor-bordeaux);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3em;
  color: var(--cor-branco);
  margin: 0 0 30px 0;
}

.about-description {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7em;
  color: var(--cor-texto-escuro);
  margin: 0 0 20px 0;
}

/* Lista de Highlights - Mantendo os bullets alinhados à esquerda mesmo com a caixa centralizada */
.about-highlights {
  list-style: none;
  padding: 0;
  margin: 35px auto 45px auto;
  display: inline-block;
  text-align: left;
}

.about-highlights li {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--cor-branco);
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.check-icon {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

/* --- BOTÃO CTA --- */
.btn-cta-primary {
  background-color: var(--cor-bordeaux);
  color: var(--cor-branco) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 4px;
  border: 1px solid var(--cor-bordeaux);
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-cta-primary:hover {
  background-color: transparent;
  color: var(--cor-branco) !important;
  border-color: var(--cor-dourado);
  box-shadow: 0 8px 25px rgba(183, 146, 97, 0.15);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
  .about-container { gap: 50px; }
  .about-title { font-size: 32px; }
  .about-image-wrapper { height: 400px; }
  .about-visual::before { display: none; } /* Ocultar moldura em telas menores para evitar quebra de layout */
}

@media (max-width: 767px) {
  .about-premium-advocacia { padding: 80px 0; }
  .about-image-wrapper { height: 250px; border-radius: 4px; }
  .about-title { font-size: 28px; }
  .about-description { text-align: center; }
  
  .about-highlights { width: 100%; display: flex; flex-direction: column; align-items: flex-start; }
  .about-highlights li { text-align: left; }
  
  .btn-cta-primary { width: 100%; }
}

/* VARIÁVEIS GLOBAIS DA SECÇÃO */
:root {
  --cor-preto: #101010;
  --cor-bordeaux: #4A0E1A;
  --cor-dourado: #B79261;
}

/* FUNDO E INTRODUÇÃO DA SECÇÃO */
.reviews-section-container {
  background-color: #0C0C0C; 
  width: 100%;
  padding: 120px 0 100px 0;
  box-sizing: border-box;
  border-top: 1px solid rgba(255,255,255,0.02);
}

.reviews-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.reviews-tag {
  font-family: 'Montserrat', sans-serif;
  color: var(--cor-dourado);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.reviews-main-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2em;
  color: #FFFFFF;
  margin: 0 0 20px 0;
}

.reviews-title-line {
  width: 60px;
  height: 2px;
  background-color: var(--cor-bordeaux);
  margin: 0 auto 25px auto;
}

.reviews-main-subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7em;
  color: #B0B0B0;
  margin: 0;
}

.reviews-trustindex-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =================================================== */
/* 🔴 OVERRIDES PARA FORÇAR O DESIGN NO TRUSTINDEX 🔴 */
/* =================================================== */

/* Forçar fundo transparente no widget principal */
.ti-widget.ti-goog {
  background: transparent !important;
}

/* O Cartão de Avaliação (Design Premium) */
.ti-widget.ti-goog .ti-review-item {
  background-color: #151515 !important;
  border: 1px solid rgba(183, 146, 97, 0.15) !important;
  border-top: 3px solid var(--cor-bordeaux) !important;
  border-radius: 6px !important;
  padding: 35px 30px !important;
  box-shadow: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

/* Efeito Hover ao passar o rato no cartão */
.ti-widget.ti-goog .ti-review-item:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(183, 146, 97, 0.4) !important;
}

/* Nome do Cliente */
.ti-widget.ti-goog .ti-review-header .ti-reviewer-name {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  color: #FFFFFF !important;
}

/* Data da Avaliação */
.ti-widget.ti-goog .ti-review-header .ti-date {
  font-family: 'Lato', sans-serif !important;
  font-size: 12px !important;
  color: #777777 !important;
}

/* Texto da Avaliação */
.ti-widget.ti-goog .ti-review-content {
  font-family: 'Lato', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.6em !important;
  color: #B0B0B0 !important;
  font-style: italic !important;
}

/* Ler mais / Ver menos (caso o texto seja longo) */
.ti-widget.ti-goog .ti-read-more {
  color: var(--cor-dourado) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
}

/* Estrelas (Forçar o Dourado Institucional ou Amarelo Google) */
.ti-widget.ti-goog .ti-star.f {
  color: #FFB400 !important; 
}

/* Setas de navegação do Slider do Trustindex */
.ti-widget.ti-goog .ti-controls .ti-next, 
.ti-widget.ti-goog .ti-controls .ti-prev {
  background-color: transparent !important;
  border: 1px solid rgba(183, 146, 97, 0.3) !important;
  color: var(--cor-dourado) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

.ti-widget.ti-goog .ti-controls .ti-next:hover, 
.ti-widget.ti-goog .ti-controls .ti-prev:hover {
  background-color: var(--cor-dourado) !important;
  color: var(--cor-preto) !important;
}

/* Ajustes Mobile */
@media (max-width: 767px) {
  .reviews-section-container { padding: 80px 0; }
  .reviews-main-title { font-size: 28px; }
  .ti-widget.ti-goog .ti-review-item { padding: 25px 20px !important; }
}

/* VARIÁVEIS GLOBAIS ABSOLUTAS DO KIT DE MARCA */
:root {
  --cor-preto: #101010;
  --cor-bordeaux: #4A0E1A;
  --cor-dourado: #B79261;
  --cor-texto-escuro: #F5F5F5;
  --cor-branco: #FFFFFF;
}

/* BACKGROUND DA PÁGINA DE SERVIÇOS */
.services-page-container {
  background-color: var(--cor-preto);
  width: 100%;
  padding: 160px 0 120px 0; 
  box-sizing: border-box;
  overflow: hidden;
}

/* INTRODUÇÃO DA PÁGINA */
.services-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
}

.services-tag {
  font-family: 'Montserrat', sans-serif;
  color: var(--cor-bordeaux);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.services-main-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2em;
  color: var(--cor-branco);
  margin: 0 0 25px 0;
}

.services-title-line {
  width: 80px;
  height: 2px;
  background-color: var(--cor-bordeaux);
  margin: 0 auto 30px auto;
}

.services-main-subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7em;
  color: var(--cor-texto-escuro);
  margin: 0;
}

/* LINHAS DE SERVIÇO (LAYOUT ZIGUE-ZAGUE) */
.service-row {
  max-width: 1200px;
  margin: 0 auto 140px auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  box-sizing: border-box;
}

.service-row.row-reverse {
  flex-direction: row-reverse;
}

/* COLUNA DE TEXTOS */
.service-text-col {
  flex: 1;
  max-width: 550px;
}

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cor-bordeaux);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3em;
  color: var(--cor-branco);
  margin: 0 0 20px 0;
}

.service-description {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7em;
  color: #B0B0B0;
  margin: 0 0 30px 0;
}

/* Marcadores técnicos */
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.service-bullets li {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--cor-texto-escuro);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}

.bullet-gold {
  color: var(--cor-dourado);
  font-size: 12px;
  margin-right: 12px;
}

/* ALINHAMENTO DO GRUPO DE BOTÕES */
.service-buttons-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* BOTÃO CTA PRIMÁRIO (VINHO - WHATSAPP) */
.btn-cta-primary {
  background-color: var(--cor-bordeaux);
  color: var(--cor-branco) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px;
  border: 1px solid var(--cor-bordeaux);
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-cta-primary:hover {
  background-color: transparent;
  color: var(--cor-branco) !important;
  border-color: var(--cor-dourado);
  box-shadow: 0 8px 25px rgba(183, 146, 97, 0.15);
}

/* BOTÃO CTA SECUNDÁRIO (DOURADO - SAIBA MAIS) */
.btn-cta-secondary {
  background-color: transparent;
  color: var(--cor-dourado) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px;
  border: 1px solid var(--cor-dourado);
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-cta-secondary:hover {
  background-color: var(--cor-dourado);
  color: var(--cor-preto) !important;
  box-shadow: 0 8px 25px rgba(183, 146, 97, 0.2);
}

/* COLUNA DA IMAGEM ESTRUTURA */
.service-visual-col {
  flex: 1;
  display: flex;
  justify-content: center;
}

.service-img-wrapper {
  width: 100%;
  max-width: 500px;
  height: 380px;
  background-color: #161616;
  border: 1px solid rgba(183, 146, 97, 0.15);
  border-radius: 4px;
  position: relative;
  overflow: hidden; 
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.service-img-wrapper:hover {
  border-color: var(--cor-dourado);
  box-shadow: 0 20px 50px rgba(183, 146, 97, 0.15);
}

.service-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cor-bordeaux);
  opacity: 0.3; 
  z-index: 2;
  pointer-events: none;
}

.service-img-wrapper::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid rgba(183, 146, 97, 0.3);
  pointer-events: none;
  z-index: 3;
}

.service-img-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease; 
  z-index: 1;
  display: flex; 
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-sizing: border-box;
}

.service-img-wrapper:hover .service-img-placeholder {
  transform: scale(1.08);
}

/* MAPAS DE IMAGENS */
.img-tributario { background-color: #202020; }
.img-civel { background-color: #1A1A1A; }
.img-trabalhista { background-color: #161616; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
  .services-main-title { font-size: 36px; }
  .service-title { font-size: 28px; }
  .service-row { gap: 40px; margin-bottom: 100px; }
  .service-img-wrapper { height: 320px; }
  .btn-cta-primary, .btn-cta-secondary { padding: 14px 20px; font-size: 12px; }
}

@media (max-width: 767px) {
  .services-page-container { padding: 130px 0 80px 0; }
  .services-intro { margin-bottom: 60px; }
  .services-main-title { font-size: 28px; }
  
  .service-row, .service-row.row-reverse {
    flex-direction: column;
    gap: 35px;
    margin-bottom: 80px;
  }
  
  .service-text-col, .service-visual-col {
    max-width: 100%;
    width: 100%;
  }

  .service-title { font-size: 24px; }
  .service-bullets li { font-size: 14px; }
  
  /* Ajuste de Botões para Mobile (Largura Total e Empilhados) */
  .service-buttons-group { flex-direction: column; width: 100%; gap: 10px; }
  .btn-cta-primary, .btn-cta-secondary { width: 100%; }
  
  .service-img-wrapper { height: 260px; }
}

/* VARIÁVEIS GLOBAIS ABSOLUTAS */
:root {
  --cor-preto: #101010;
  --cor-bordeaux: #4A0E1A;
  --cor-dourado: #B79261;
  --cor-texto-escuro: #F5F5F5;
  --cor-branco: #FFFFFF;
}

/* BACKGROUND DA PÁGINA E ALINHAMENTO */
.thank-you-page-container {
  background-color: var(--cor-preto);
  width: 100%;
  /* Define altura mínima da tela inteira, considerando o header fixo */
  min-height: 100vh; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px 60px 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Elemento decorativo de fundo (Glow Bordô) */
.thank-you-bg-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 14, 26, 0.25) 0%, rgba(16, 16, 16, 0) 60%);
  z-index: 1;
  pointer-events: none;
}

.thank-you-wrapper {
  max-width: 750px;
  width: 100%;
  z-index: 2;
  position: relative;
}

/* CARD DE CONFIRMAÇÃO */
.thank-you-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(183, 146, 97, 0.2);
  border-radius: 4px;
  padding: 70px 50px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ÍCONE ANIMADO */
.ty-icon-container {
  width: 80px;
  height: 80px;
  background-color: rgba(183, 146, 97, 0.05);
  border: 1px solid rgba(183, 146, 97, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  /* Animação suave de pulso */
  animation: pulseGlow 2.5s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(183, 146, 97, 0.1); }
  100% { box-shadow: 0 0 20px 5px rgba(183, 146, 97, 0.2); }
}

.ty-icon {
  width: 35px;
  height: 35px;
}

/* TEXTOS */
.ty-tag {
  font-family: 'Montserrat', sans-serif;
  color: var(--cor-dourado);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.ty-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2em;
  color: var(--cor-branco);
  margin: 0 0 25px 0;
}

.ty-divider {
  width: 60px;
  height: 2px;
  background-color: var(--cor-bordeaux);
  margin: 0 auto 30px auto;
}

.ty-description {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6em;
  color: var(--cor-branco);
  margin: 0 0 20px 0;
}

.ty-sub-description {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6em;
  color: #A0A0A0;
  margin: 0 0 45px 0;
}

/* BOTÕES DE AÇÃO */
.ty-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}

/* Botão Retornar (Ouro) */
.btn-cta-secondary {
  background-color: transparent;
  color: var(--cor-dourado) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px;
  border: 1px solid var(--cor-dourado);
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cta-secondary:hover {
  background-color: var(--cor-dourado);
  color: var(--cor-preto) !important;
  box-shadow: 0 8px 25px rgba(183, 146, 97, 0.2);
}

/* Botão Instagram (Vinho) */
.btn-cta-primary {
  background-color: var(--cor-bordeaux);
  color: var(--cor-branco) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px;
  border: 1px solid var(--cor-bordeaux);
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cta-primary:hover {
  background-color: transparent;
  color: var(--cor-branco) !important;
  border-color: var(--cor-dourado);
  box-shadow: 0 8px 25px rgba(183, 146, 97, 0.15);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 767px) {
  .thank-you-card {
    padding: 50px 30px;
  }
  
  .ty-title {
    font-size: 28px;
  }
  
  .ty-description {
    font-size: 16px;
  }
  
  .ty-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-cta-primary, .btn-cta-secondary {
    width: 100%;
  }
}

/* VARIÁVEIS GLOBAIS ABSOLUTAS */
:root {
  --cor-preto: #101010;
  --cor-bordeaux: #4A0E1A;
  --cor-dourado: #B79261;
  --cor-texto-escuro: #F5F5F5;
  --cor-branco: #FFFFFF;
}

/* CONTAINER PRINCIPAL DA PÁGINA */
.contact-page-container {
  background-color: var(--cor-preto);
  width: 100%;
  padding: 160px 0 120px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.contact-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 14, 26, 0.2) 0%, rgba(16, 16, 16, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.contact-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
  position: relative;
  box-sizing: border-box;
}

/* CABEÇALHO DA PÁGINA */
.contact-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px auto;
}

.contact-tag {
  font-family: 'Montserrat', sans-serif;
  color: var(--cor-dourado);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2em;
  color: var(--cor-branco);
  margin: 0 0 25px 0;
}

.contact-divider {
  width: 80px;
  height: 2px;
  background-color: var(--cor-bordeaux);
  margin: 0 auto 30px auto;
}

.contact-subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6em;
  color: var(--cor-texto-escuro);
  margin: 0;
}

/* GRID DE CONTEÚDO */
.contact-grid {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

/* --- COLUNA ESQUERDA (CARDS) --- */
.contact-info-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #161616;
  border: 1px solid rgba(183, 146, 97, 0.15);
  border-radius: 4px;
  padding: 35px 30px;
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background-color: var(--cor-bordeaux);
  opacity: 0;
  transition: all 0.4s ease;
}

.info-card:not(.no-hover):hover {
  background: rgba(74, 14, 26, 0.1);
  border-color: var(--cor-dourado);
  transform: translateX(10px);
}

.info-card:not(.no-hover):hover::before {
  opacity: 1;
}

.info-icon {
  width: 32px;
  height: 32px;
  margin-right: 25px;
  flex-shrink: 0;
  margin-top: 5px;
}

.info-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cor-branco);
  margin: 0 0 10px 0;
}

.info-text p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #A0A0A0;
  margin: 0 0 15px 0;
  line-height: 1.5em;
}

.info-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--cor-dourado);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Redes Sociais no Card */
.social-card {
  padding: 30px;
}

.social-icons-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(183, 146, 97, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor-dourado);
  background-color: rgba(255, 255, 255, 0.02);
  transition: all 0.4s ease;
  text-decoration: none;
}

.social-icon-btn:hover {
  background-color: var(--cor-bordeaux);
  border-color: var(--cor-bordeaux);
  color: var(--cor-branco);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(74, 14, 26, 0.4);
}

/* --- COLUNA DIREITA (MAPA) --- */
.contact-map-col {
  flex: 1.2;
  display: flex;
  flex-direction: column;
}

.map-wrapper {
  background: #131313;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.map-wrapper::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background-color: var(--cor-dourado);
  border-radius: 4px 4px 0 0;
}

.map-header {
  margin-bottom: 25px;
}

.map-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--cor-branco);
  margin: 0 0 8px 0;
}

.map-header p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #888888;
  margin: 0;
}

/* Container do Iframe */
.map-container {
  width: 100%;
  flex: 1;
  min-height: 350px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(183, 146, 97, 0.2);
  filter: grayscale(80%) invert(90%) contrast(85%); 
  transition: filter 0.4s ease;
}

.map-container:hover {
  filter: grayscale(40%) invert(90%) contrast(90%);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 950px) {
  .contact-grid { flex-direction: column; }
  .contact-info-col, .contact-map-col { width: 100%; }
  .map-container { min-height: 400px; }
}

@media (max-width: 767px) {
  .contact-page-container { padding: 130px 0 80px 0; }
  .contact-title { font-size: 32px; }
  .map-wrapper { padding: 20px; }
  .info-card { padding: 25px 20px; }
  .info-text h4 { font-size: 18px; }
  .map-container { min-height: 300px; }
  .social-icons-wrapper { justify-content: flex-start; }
}

/* VARIÁVEIS GLOBAIS ABSOLUTAS */
:root {
  --cor-preto: #101010;
  --cor-bordeaux: #4A0E1A;
  --cor-dourado: #B79261;
  --cor-texto-escuro: #F5F5F5;
  --cor-branco: #FFFFFF;
}

/* CONTAINER PRINCIPAL DA PÁGINA */
.team-page-container {
  background-color: var(--cor-preto);
  width: 100%;
  padding: 160px 0 120px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.team-bg-accent {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 14, 26, 0.25) 0%, rgba(16, 16, 16, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

/* INTRODUÇÃO INSTITUCIONAL */
.team-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.team-tag {
  font-family: 'Montserrat', sans-serif;
  color: var(--cor-dourado);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.team-main-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2em;
  color: var(--cor-branco);
  margin: 0 0 25px 0;
}

.team-title-line {
  width: 80px;
  height: 2px;
  background-color: var(--cor-bordeaux);
  margin: 0 auto 30px auto;
}

.team-main-subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7em;
  color: var(--cor-texto-escuro);
  margin: 0;
}

/* CARDS DAS SÓCIAS */
.team-members-wrapper {
  max-width: 1200px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.member-card {
  display: flex;
  background: #151515;
  border: 1px solid rgba(183, 146, 97, 0.15);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.member-card:hover {
  border-color: rgba(183, 146, 97, 0.4);
  box-shadow: 0 25px 50px rgba(74, 14, 26, 0.3);
}

.member-card.reverse {
  flex-direction: row-reverse;
}

/* VISUAL DA SÓCIA (IMAGEM) */
.member-visual {
  flex: 1;
  max-width: 450px;
  position: relative;
  background-color: #1A1A1A;
}

.member-img-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: var(--cor-bordeaux);
  opacity: 0.2;
  z-index: 2;
  pointer-events: none;
}

.member-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 450px;
  background-size: cover;
  background-position: top center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  z-index: 1;
}

/* Mapas das Imagens (Cor de Fundo base) */
.img-socia-1 { background-color: #121212; }
.img-socia-2 { background-color: #1A1A1A; }

/* CONTEÚDO DA SÓCIA (TEXTOS) */
.member-content {
  flex: 2;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.member-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--cor-branco);
  margin: 0 0 10px 0;
}

.member-role {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--cor-dourado);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.member-divider {
  width: 50px;
  height: 1px;
  background-color: rgba(183, 146, 97, 0.3);
  margin-bottom: 25px;
}

.member-bio {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7em;
  color: #B0B0B0;
  margin: 0 0 30px 0;
}

.member-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
}

.member-credentials li {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--cor-texto-escuro);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.bullet-gold {
  color: var(--cor-dourado);
  font-size: 14px;
  margin-right: 15px;
}

/* O NOSSO COMPROMISSO (VALORES) */
.team-values-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.values-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--cor-branco);
  margin: 0 0 15px 0;
}

.values-subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #A0A0A0;
  margin: 0 auto 60px auto;
  max-width: 600px;
}

.values-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.value-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(183, 146, 97, 0.1);
  border-radius: 4px;
  padding: 40px 30px;
  transition: all 0.4s ease;
}

.value-item:hover {
  background: rgba(74, 14, 26, 0.1);
  border-color: var(--cor-dourado);
  transform: translateY(-5px);
}

.value-icon {
  width: 45px;
  height: 45px;
  margin: 0 auto 25px auto;
}

.value-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cor-branco);
  margin: 0 0 15px 0;
}

.value-item p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.6em;
  color: #999999;
  margin: 0;
}

/* BOTÃO CTA (VINHO) */
.team-cta-wrapper {
  margin-top: 20px;
}

.btn-cta-primary {
  background-color: var(--cor-bordeaux);
  color: var(--cor-branco) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 4px;
  border: 1px solid var(--cor-bordeaux);
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cta-primary:hover {
  background-color: transparent;
  color: var(--cor-branco) !important;
  border-color: var(--cor-dourado);
  box-shadow: 0 8px 25px rgba(183, 146, 97, 0.15);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
  .member-content { padding: 40px; }
  .member-name { font-size: 30px; }
  .values-grid { flex-direction: column; gap: 20px; }
}

@media (max-width: 767px) {
  .team-page-container { padding: 130px 0 80px 0; }
  .team-main-title { font-size: 32px; }
  
  .member-card, .member-card.reverse { flex-direction: column; }
  .member-visual { max-width: 100%; width: 100%; }
  .member-img-placeholder { min-height: 350px; }
  
  .member-content { padding: 40px 25px; text-align: center; }
  .member-divider { margin: 0 auto 25px auto; }
  .member-credentials li { text-align: left; }
  
  .values-title { font-size: 28px; }
  .btn-cta-primary { width: 100%; }
}

/* VARIÁVEIS GLOBAIS ABSOLUTAS DO KIT DE MARCA */
:root {
  --cor-preto: #101010;
  --cor-bordeaux: #4A0E1A;
  --cor-dourado: #B79261;
  --cor-texto-escuro: #F5F5F5;
  --cor-branco: #FFFFFF;
}

.single-service-page {
  background-color: var(--cor-preto);
  width: 100%;
  font-family: 'Lato', sans-serif;
  color: #B0B0B0;
  overflow: hidden;
}

.svc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  box-sizing: border-box;
}

/* 1. HERO DO SERVIÇO DETALHADO */
.svc-hero {
  padding: 180px 0 100px 0;
  position: relative;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.svc-hero-bg {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: 900px; height: 500px;
  background: radial-gradient(circle, rgba(74, 14, 26, 0.3) 0%, rgba(16, 16, 16, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.svc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.svc-tag {
  font-family: 'Montserrat', sans-serif;
  color: var(--cor-dourado);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 20px;
}

.svc-title {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--cor-branco);
  line-height: 1.2em;
  margin: 0 0 25px 0;
}

.svc-divider {
  width: 80px; height: 2px;
  background-color: var(--cor-bordeaux);
  margin: 0 auto 30px auto;
}
.svc-divider.center { margin: 0 auto 25px auto; }

.svc-subtitle {
  font-size: 18px;
  line-height: 1.6em;
  color: var(--cor-texto-escuro);
  margin: 0 0 40px 0;
}

.svc-hero-actions {
  display: flex;
  justify-content: center;
}

/* BOTÃO CTA (VINHO) */
.btn-cta-primary {
  background-color: var(--cor-bordeaux);
  color: var(--cor-branco) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 4px;
  border: 1px solid var(--cor-bordeaux);
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cta-primary:hover {
  background-color: transparent;
  color: var(--cor-branco) !important;
  border-color: var(--cor-dourado);
  box-shadow: 0 8px 25px rgba(183, 146, 97, 0.15);
}

/* 2. VISÃO GERAL E METODOLOGIA */
.svc-overview {
  padding: 100px 0;
}

.svc-grid-overview {
  display: flex;
  gap: 70px;
  align-items: center;
}

.svc-overview-text {
  flex: 1.2;
}

.svc-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--cor-branco);
  margin: 0 0 25px 0;
  line-height: 1.3em;
}

.text-center { text-align: center; }

.svc-overview-text p {
  font-size: 16px;
  line-height: 1.7em;
  margin-bottom: 20px;
}

.svc-overview-text p strong {
  color: var(--cor-texto-escuro);
}

.svc-overview-text p em {
  color: var(--cor-dourado);
  font-style: normal;
}

.svc-sub-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: var(--cor-branco);
  margin: 40px 0 20px 0;
}

.svc-bullets-list {
  list-style: none;
  padding: 0; margin: 0;
}

.svc-bullets-list li {
  font-size: 16px;
  line-height: 1.6em;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.svc-bullets-list strong {
  color: var(--cor-texto-escuro);
  font-weight: 600;
  margin-right: 5px;
}

.bullet-gold {
  color: var(--cor-dourado);
  margin-right: 12px;
  font-size: 14px;
  margin-top: 2px;
}

/* Coluna de Destaque */
.svc-overview-highlight {
  flex: 0.8;
}

.highlight-card {
  background: #151515;
  border: 1px solid rgba(183, 146, 97, 0.2);
  border-radius: 4px;
  padding: 50px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; height: 3px;
  background-color: var(--cor-bordeaux);
  border-radius: 4px 4px 0 0;
}

.highlight-icon {
  width: 45px; height: 45px;
  margin-bottom: 25px;
}

.highlight-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--cor-branco);
  margin: 0 0 15px 0;
}

.highlight-card p {
  font-size: 15px;
  line-height: 1.6em;
  color: #A0A0A0;
  margin: 0;
}

.highlight-card strong {
  color: var(--cor-dourado);
  font-weight: normal;
}

/* 3. FAQ SANFONA (ACCORDION) */
.svc-faq {
  padding: 80px 0 120px 0;
  background-color: #121212;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-header {
  margin-bottom: 60px;
}

.faq-accordion-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
  border-color: var(--cor-dourado);
  background: #1A1A1A;
  box-shadow: 0 10px 20px rgba(183, 146, 97, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background-color: transparent !important;
  border: none !important;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
}

.faq-question:hover,
.faq-question:focus,
.faq-question:active {
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.faq-question span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--cor-branco);
  line-height: 1.4em;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question span,
.faq-item.active .faq-question span {
  color: var(--cor-dourado);
}

.faq-icon-btn {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-plus {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 2px;
  background-color: var(--cor-dourado);
  transition: all 0.3s ease;
}

.faq-plus::after {
  content: '';
  position: absolute;
  top: -6px; left: 6px;
  width: 2px; height: 14px;
  background-color: var(--cor-dourado);
  transition: all 0.3s ease;
}

.faq-item.active .faq-plus {
  background-color: var(--cor-bordeaux);
}
.faq-item.active .faq-plus::after {
  transform: rotate(90deg);
  background-color: var(--cor-bordeaux);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-answer p {
  padding: 0 30px 30px 30px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7em;
  color: #A0A0A0;
}

.faq-answer em {
  color: var(--cor-texto-escuro);
  font-style: normal;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 950px) {
  .svc-grid-overview { flex-direction: column; }
  .svc-overview-highlight { width: 100%; }
}

@media (max-width: 767px) {
  .svc-hero { padding: 140px 0 80px 0; }
  .svc-title { font-size: 32px; }
  .svc-subtitle { font-size: 16px; }
  
  .svc-section-title { font-size: 28px; }
  
  .faq-question { padding: 20px; }
  .faq-question span { font-size: 14px; }
  .faq-answer p { padding: 0 20px 20px 20px; font-size: 14px; }
  
  .btn-cta-primary { width: 100%; text-align: center; }
}

:root {
  --cor-preto: #101010;
  --cor-bordeaux: #4A0E1A;
  --cor-dourado: #B79261;
  --cor-branco: #FFFFFF;
}

.legal-page-container {
  background-color: var(--cor-preto);
  padding: 160px 20px 100px 20px;
  width: 100%;
  box-sizing: border-box;
}

.legal-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.legal-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--cor-branco);
  margin: 0 0 20px 0;
}

.legal-divider {
  width: 60px;
  height: 2px;
  background-color: var(--cor-bordeaux);
  margin: 0 auto 25px auto;
}

.legal-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #A0A0A0;
  margin: 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-card {
  background-color: #151515;
  border: 1px solid rgba(183, 146, 97, 0.15);
  border-radius: 4px;
  padding: 60px 70px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.legal-card::before {
  content: '';
  display: block;
  height: 3px;
  background-color: var(--cor-dourado);
  margin: -60px -70px 57px -70px;
  border-radius: 4px 4px 0 0;
}

.last-update {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--cor-dourado);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.legal-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--cor-branco);
  margin: 40px 0 20px 0;
}

.legal-card p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.8em;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.legal-card strong {
  color: #E0E0E0;
}

.legal-card ul {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.8em;
  color: #B0B0B0;
  padding-left: 20px;
  margin-bottom: 30px;
}

.legal-card ul li {
  margin-bottom: 10px;
}

.legal-card ul li strong {
  color: var(--cor-dourado);
  font-weight: normal;
}

.legal-contact-link {
  color: var(--cor-dourado);
  text-decoration: none;
  font-weight: bold;
}

.legal-contact-link:hover {
  text-decoration: underline;
  color: var(--cor-branco);
}

@media (max-width: 767px) {
  .legal-page-container { padding: 130px 15px 80px 15px; }
  .legal-title { font-size: 28px; }
  .legal-card { padding: 40px 25px; }
  .legal-card::before { margin: -40px -25px 37px -25px; }
  .legal-card h2 { font-size: 20px; }
  .legal-card p, .legal-card ul { font-size: 14px; }
}


html,
body {
  max-width: 100%;
  overflow-x: hidden;
  background: #0b0b0b;
}

body {
  margin: 0;
}

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

@media (max-width: 640px) {
  .btn-cta-primary,
  .btn-cta-secondary,
  .double-redirect-expertise,
  .double-redirect-about {
    max-width: min(100%, calc(100vw - 56px));
    white-space: normal;
  }

  .hero-bg-accent {
    max-width: 100vw;
  }
}

/* Refinamento de acessibilidade mobile: area real de toque >= 44px */
.brand-logo a,
.nav-link,
.lgpd-link,
.legal-contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.mobile-menu-toggle {
  width: 44px;
  height: 44px;
  touch-action: manipulation;
}

@media (max-width: 950px) {
  .nav-link {
    justify-content: center;
    min-width: 44px;
  }
}
.btn-lgpd-accept {
  min-height: 44px;
  touch-action: manipulation;
}

.reviews-carousel-dot {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.reviews-carousel-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(183, 146, 97, 0.45);
  background: transparent;
}

.reviews-carousel-dot.is-active {
  background: transparent;
  border-color: transparent;
}

.reviews-carousel-dot.is-active::before {
  background: var(--cor-dourado);
  border-color: var(--cor-dourado);
}

.reviews-summary-card {
  max-width: 420px;
  margin: 0 auto 34px auto;
  padding: 26px 28px;
  text-align: center;
  background: #151515;
  border: 1px solid rgba(183, 146, 97, 0.18);
  border-top: 3px solid var(--cor-bordeaux);
  border-radius: 6px;
}

.reviews-google-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cor-dourado);
  margin-bottom: 10px;
}

.reviews-summary-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.reviews-summary-card p {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  line-height: 1.6em;
  color: #9F9F9F;
  margin: 12px 0 0 0;
}

.reviews-stars {
  font-family: Arial, sans-serif;
  color: #FFB400;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 1;
}

.static-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.static-review-card {
  min-height: 100%;
  background-color: #151515;
  border: 1px solid rgba(183, 146, 97, 0.15);
  border-top: 3px solid var(--cor-bordeaux);
  border-radius: 6px;
  padding: 30px 28px;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.static-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(183, 146, 97, 0.4);
}

.static-review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(74, 14, 26, 0.8);
  border: 1px solid rgba(183, 146, 97, 0.28);
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.static-review-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
  margin: 0 0 5px 0;
}

.static-review-header span:not(.review-avatar) {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: #777777;
}

.static-review-card p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.65em;
  color: #B0B0B0;
  font-style: italic;
  margin: 18px 0 0 0;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .static-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .static-reviews-grid {
    grid-template-columns: 1fr;
  }

  .static-review-card {
    padding: 26px 22px;
  }

  .reviews-summary-card {
    padding: 24px 20px;
  }
}

.reviews-carousel {
  max-width: 960px;
  margin: 0 auto;
}

.reviews-carousel-stage {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 18px;
  align-items: stretch;
}

.reviews-carousel-track {
  position: relative;
  min-height: 330px;
}

.reviews-carousel-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  background-color: #151515;
  border: 1px solid rgba(183, 146, 97, 0.15);
  border-top: 3px solid var(--cor-bordeaux);
  border-radius: 6px;
  padding: 42px 46px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.reviews-carousel-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.reviews-carousel-card p {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.75em;
  color: #B0B0B0;
  font-style: italic;
  margin: 22px 0 0 0;
}

.reviews-carousel-btn {
  align-self: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(183, 146, 97, 0.35);
  background: transparent;
  color: var(--cor-dourado);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.reviews-carousel-btn:hover {
  background: var(--cor-bordeaux);
  border-color: var(--cor-bordeaux);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.reviews-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.reviews-carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(183, 146, 97, 0.45);
  background: transparent;
  cursor: pointer;
}

.reviews-carousel-dot.is-active {
  background: var(--cor-dourado);
  border-color: var(--cor-dourado);
}

.reviews-carousel-empty {
  position: static;
  text-align: center;
}

@media (max-width: 767px) {
  .reviews-carousel-stage {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .reviews-carousel-track {
    min-height: 430px;
  }

  .reviews-carousel-card {
    padding: 30px 24px;
  }

  .reviews-carousel-card p {
    font-size: 15px;
  }

  .reviews-carousel-btn {
    width: 46px;
    height: 46px;
    font-size: 28px;
  }

  .reviews-carousel-prev {
    grid-row: 2;
    justify-self: start;
    margin-left: 22px;
  }

  .reviews-carousel-next {
    grid-row: 2;
    justify-self: end;
    margin-right: 22px;
  }
}

/* Override final: mantém o ponto pequeno, mas amplia a área clicável. */
.nav-link {
  min-width: 44px;
}

.reviews-carousel-dot {
  position: relative !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50%;
  background: transparent !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.reviews-carousel-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(183, 146, 97, 0.45);
  background: transparent;
}

.reviews-carousel-dot.is-active::before {
  background: var(--cor-dourado);
  border-color: var(--cor-dourado);
}

/* =========================================================
   Correção mobile: barra inferior removida + LGPD visível
   ========================================================= */
.lgpd-wrapper {
  bottom: 0;
  box-sizing: border-box;
}

.lgpd-actions {
  flex-shrink: 0;
}

.whatsapp-premium-container {
  z-index: 9997;
}

@media (max-width: 950px) {
  body {
    padding-bottom: 0 !important;
  }

  .mobile-sticky-bar,
  .sticky-btn,
  .sticky-divider {
    display: none !important;
  }

  .lgpd-wrapper {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    right: 12px;
    width: auto;
    max-height: calc(100dvh - 24px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    border: 1px solid rgba(183, 146, 97, 0.25);
    border-radius: 12px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.55);
  }

  .lgpd-container {
    max-width: none;
    width: 100%;
    padding: 18px 16px;
    gap: 14px;
    box-sizing: border-box;
  }

  .whatsapp-premium-container {
    right: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  }

  body.lgpd-banner-visible .whatsapp-premium-container {
    bottom: min(
      calc(var(--lgpd-banner-height, 0px) + 24px + env(safe-area-inset-bottom, 0px)),
      calc(100dvh - 84px)
    );
  }
}

@media (max-width: 767px) {
  .lgpd-container {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .lgpd-text p {
    font-size: 12px;
    line-height: 1.45em;
  }

  .lgpd-actions,
  .btn-lgpd-accept {
    width: 100%;
  }

  .btn-lgpd-accept {
    white-space: normal;
    line-height: 1.25;
    padding: 14px 18px;
  }

  .whatsapp-premium-container {
    right: 18px;
  }
}

@supports not (height: 100dvh) {
  @media (max-width: 950px) {
    .lgpd-wrapper {
      max-height: calc(100vh - 24px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    }

    body.lgpd-banner-visible .whatsapp-premium-container {
      bottom: min(
        calc(var(--lgpd-banner-height, 0px) + 24px + env(safe-area-inset-bottom, 0px)),
        calc(100vh - 84px)
      );
    }
  }
}

