/* ============================================
   LBM CORRETORA DE SEGUROS - STYLE.CSS
   ============================================ */

/* Variáveis CSS */
:root {
  --preto: #050505;
  --grafite: #1a1a1a;
  --grafite-hover: #333333;
  --branco: #ffffff;
  --cinza-claro: #c9c9c9;
  --verde-wpp: #2db742;
  --verde-wpp-hover: #25a33a;
  --vermelho: #e63946;
  --vermelho-hover: #c92a37;
  --borda: rgba(255, 255, 255, 0.1);
  --sombra: rgba(0, 0, 0, 0.2) 0 0 15px;
  --dourado: #d4a843;
  --dourado-claro: #f0d78c;
  --raio: 8px;
  --transicao: all 300ms ease;
  --fonte-titulo: 'Roboto', sans-serif;
  --fonte-corpo: 'Roboto', sans-serif;
  --fonte-destaque: 'Roboto Slab', serif;
  --espacamento-xs: 0.5rem;
  --espacamento-sm: 1rem;
  --espacamento-md: 2rem;
  --espacamento-lg: 4rem;
  --espacamento-xl: 6rem;
  --container-max: 1200px;
}

/* Reset e Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--fonte-corpo);
  background-color: var(--preto);
  color: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transicao);
}

ul, ol {
  list-style: none;
}

/* Utilitários */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--espacamento-sm);
}

.section-padding {
  padding: var(--espacamento-lg) 0;
}

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

.titulo-secao {
  font-family: var(--fonte-titulo);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--espacamento-md);
  color: var(--branco);
}

.subtitulo-secao {
  font-family: var(--fonte-corpo);
  font-size: 1.1rem;
  color: var(--cinza-claro);
  margin-bottom: var(--espacamento-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  background-color: var(--preto);
  border-bottom: 1px solid var(--borda);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--espacamento-xs);
}

.logo img {
  height: 82px;
  width: auto;
}

.logo-texto {
  font-family: var(--fonte-titulo);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: 1px;
}

.logo-texto span {
  color: var(--vermelho);
}

/* Navegação Desktop */
.nav-desktop {
  display: none;
}

.nav-lista {
  display: flex;
  align-items: center;
  gap: var(--espacamento-md);
}

.nav-link {
  font-family: var(--fonte-corpo);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff !important;
  position: relative;
}

.nav-link:hover {
  color: var(--dourado-claro) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--dourado);
  transition: var(--transicao);
}

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

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--espacamento-xs);
  padding: 0.75rem 1.5rem;
  border-radius: var(--raio);
  font-family: var(--fonte-corpo);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transicao);
}

.btn-cta {
  background-color: var(--dourado);
  color: var(--branco);
}

.btn-cta:hover {
  background-color: var(--dourado-claro);
  color: var(--preto);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.4);
  transform: translateY(-2px);
}

.btn-wpp {
  background-color: var(--verde-wpp);
  color: var(--branco);
}

.btn-wpp:hover {
  background-color: var(--verde-wpp-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--branco);
  border: 2px solid var(--branco);
}

.btn-outline:hover {
  background-color: var(--dourado);
  color: var(--preto);
  border-color: var(--dourado);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
  transform: translateY(-2px);
}

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

.btn-branco:hover {
  background-color: var(--dourado-claro);
  color: var(--preto);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
  transform: translateY(-2px);
}

/* Menu Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger-linha {
  width: 28px;
  height: 2px;
  background-color: var(--branco);
  transition: var(--transicao);
  border-radius: 2px;
}

.hamburger.ativo .hamburger-linha:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.ativo .hamburger-linha:nth-child(2) {
  opacity: 0;
}

.hamburger.ativo .hamburger-linha:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu Mobile */
.nav-mobile {
  display: none;
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  background-color: var(--preto);
  border-bottom: 1px solid var(--borda);
  padding: var(--espacamento-md);
  flex-direction: column;
  gap: var(--espacamento-sm);
}

.nav-mobile.ativo {
  display: flex;
}

.nav-mobile .nav-link {
  font-size: 1.1rem;
  padding: var(--espacamento-xs) 0;
  border-bottom: 1px solid var(--borda);
}

.nav-mobile .btn-cta {
  margin-top: var(--espacamento-sm);
  width: 100%;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--preto) 0%, var(--grafite) 100%);
  padding: var(--espacamento-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-titulo {
  font-family: var(--fonte-titulo);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--espacamento-sm);
  max-width: 800px;
}

.hero-subtitulo {
  font-family: var(--fonte-corpo);
  font-size: 1.1rem;
  color: var(--cinza-claro);
  margin-bottom: var(--espacamento-md);
  max-width: 600px;
}

.hero-botoes {
  display: flex;
  flex-direction: column;
  gap: var(--espacamento-sm);
  width: 100%;
  max-width: 400px;
}

.hero-botoes .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

/* ============================================
   CARDS DE SERVIÇOS
   ============================================ */
.servicos {
  background-color: var(--preto);
}

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.card-servico {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: var(--raio);
  padding: var(--espacamento-sm);
  transition: var(--transicao);
  display: flex;
  flex-direction: column;
  gap: var(--espacamento-xs);
}

.card-servico:hover {
  background-color: var(--grafite-hover);
  border-color: var(--dourado-claro);
  box-shadow: 0 0 25px rgba(212, 168, 67, 0.15);
  transform: translateY(-5px);
}

.card-icone {
  width: 80px;
  height: 80px;
  background-color: transparent;
  border-radius: var(--raio);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--branco);
  border: none;
}

.card-icone svg {
  width: 4.0rem;
  height: 4.0rem;
  fill: var(--branco);
}

.card-titulo {
  font-family: var(--fonte-titulo);
  font-size: 1.50rem;
  font-weight: 700;
  color: var(--branco);
}

.card-descricao {
  font-family: var(--fonte-corpo);
  font-size: 0.95rem;
  color: var(--cinza-claro);
  line-height: 1.6;
  flex-grow: 1;
}

.card-link {
  font-family: var(--fonte-corpo);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dourado);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.card-link:hover {
  color: var(--dourado-claro);
  text-shadow: 0 0 10px rgba(212, 168, 67, 0.3);
}

/* ============================================
   CARROSSEL DE SEGURADORAS
   ============================================ */
.seguradoras {
  border-top: 1px solid var(--borda);
  border-bottom: 1px solid var(--borda);
}

.swiper {
  width: 100%;
  padding: var(--espacamento-md) 0;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.logo-seguradora {
  background-color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--raio);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 72px;
  transition: var(--transicao);
}

.logo-seguradora img {
  max-width: 120px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-seguradora:hover {
  border-color: var(--dourado);
  box-shadow: 0 0 15px rgba(212, 168, 67, 0.25);
  transform: translateY(-2px);
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos {
  background-color: var(--preto);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--espacamento-md);
}

.card-depoimento {
  background-color: #0f0f0f;
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: var(--espacamento-md);
  transition: var(--transicao);
  box-shadow: var(--sombra);
}

.card-depoimento:hover {
  border-color: var(--dourado);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.1);
}

.depoimento-estrelas {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: var(--espacamento-sm);
  letter-spacing: 2px;
}

.depoimento-texto {
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  color: var(--cinza-claro);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--espacamento-sm);
}

.depoimento-autor {
  font-family: var(--fonte-titulo);
  font-size: 1rem;
  font-weight: 600;
  color: var(--branco);
}

.depoimento-seguro {
  font-family: var(--fonte-corpo);
  font-size: 0.85rem;
  color: var(--dourado);
  font-weight: 500;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq {
  background-color: var(--preto);
  border-top: 1px solid var(--borda);
}

.faq-lista {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--espacamento-xs);
}

.faq-item {
  background-color: #0f0f0f;
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  overflow: hidden;
  transition: var(--transicao);
}

.faq-item:hover {
  border-color: var(--dourado);
}

.faq-pergunta {
  width: 100%;
  padding: var(--espacamento-sm) var(--espacamento-md);
  background: none;
  border: none;
  color: var(--branco);
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--espacamento-sm);
}

.faq-icone {
  font-size: 1.2rem;
  color: var(--dourado);
  min-width: 20px;
  text-align: center;
  transition: var(--transicao);
}

.faq-item.ativo .faq-icone {
  transform: rotate(180deg);
}

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease, padding 400ms ease;
}

.faq-item.ativo .faq-resposta {
  max-height: 500px;
  padding: 0 var(--espacamento-md) var(--espacamento-sm);
}

.faq-resposta p {
  font-family: var(--fonte-corpo);
  font-size: 0.95rem;
  color: var(--cinza-claro);
  line-height: 1.7;
}

/* ============================================
   FORMULÁRIO DE CONTATO
   ============================================ */
.contato {
  background-color: var(--preto);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--espacamento-lg);
}

.formulario {
  display: flex;
  flex-direction: column;
  gap: var(--espacamento-sm);
}

.campo-grupo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.campo-label {
  font-family: var(--fonte-corpo);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cinza-claro);
}

.campo-input,
.campo-select,
.campo-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: var(--grafite);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  color: var(--branco);
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  transition: var(--transicao);
}

.campo-input:focus,
.campo-select:focus,
.campo-textarea:focus {
  outline: none;
  border-color: var(--vermelho);
  background-color: var(--grafite-hover);
}

.campo-input::placeholder,
.campo-textarea::placeholder {
  color: rgba(201, 201, 201, 0.5);
}

.campo-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9c9c9'%3E%3Cpath d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.campo-select option {
  background-color: var(--grafite);
  color: var(--branco);
}

.campo-textarea {
  min-height: 140px;
  resize: vertical;
}

.formulario-mensagem {
  padding: var(--espacamento-sm);
  border-radius: var(--raio);
  font-size: 0.95rem;
  display: none;
}

.formulario-mensagem.sucesso {
  display: block;
  background-color: rgba(45, 183, 66, 0.1);
  border: 1px solid var(--verde-wpp);
  color: var(--verde-wpp);
}

.formulario-mensagem.erro {
  display: block;
  background-color: rgba(230, 57, 70, 0.1);
  border: 1px solid var(--vermelho);
  color: var(--vermelho);
}

/* Info Contato */
.info-contato {
  display: flex;
  flex-direction: column;
  gap: var(--espacamento-md);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--espacamento-sm);
}

.info-icone {
  width: 44px;
  height: 44px;
  background-color: rgba(212, 168, 67, 0.1);
  border-radius: var(--raio);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-conteudo h4 {
  font-family: var(--fonte-titulo);
  font-size: 1rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 4px;
}

.info-conteudo p,
.info-conteudo a {
  font-family: var(--fonte-corpo);
  font-size: 0.95rem;
  color: var(--cinza-claro);
}

.info-conteudo a:hover {
  color: var(--vermelho);
}

.mapa-container {
  width: 100%;
  height: 250px;
  border-radius: var(--raio);
  overflow: hidden;
  border: 1px solid var(--borda);
  margin-top: var(--espacamento-sm);
}

.mapa-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--preto);
  border-top: 1px solid var(--borda);
  padding: var(--espacamento-lg) 0 var(--espacamento-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--espacamento-lg);
  margin-bottom: var(--espacamento-lg);
}

.footer-coluna h4 {
  font-family: var(--fonte-titulo);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: var(--espacamento-sm);
}

.footer-coluna p,
.footer-coluna a {
  font-family: var(--fonte-corpo);
  font-size: 0.9rem;
  color: var(--cinza-claro);
  line-height: 1.8;
}

.footer-coluna a:hover {
  color: var(--vermelho);
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: var(--espacamento-sm);
}

.footer-slogan {
  font-family: var(--fonte-corpo);
  font-size: 0.95rem;
  color: var(--cinza-claro);
  line-height: 1.6;
  margin-bottom: var(--espacamento-sm);
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-susep {
  background-color: var(--preto);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: var(--espacamento-sm);
  margin-top: var(--espacamento-sm);
}

.footer-susep p {
  font-size: 0.8rem;
  color: var(--cinza-claro);
  line-height: 1.6;
}

.footer-susep strong {
  color: var(--branco);
}

.footer-bottom {
  border-top: 1px solid var(--borda);
  padding-top: var(--espacamento-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--espacamento-xs);
  text-align: center;
}

.footer-bottom p {
  font-family: var(--fonte-corpo);
  font-size: 0.85rem;
  color: var(--cinza-claro);
}

.footer-bottom a {
  color: var(--cinza-claro);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--vermelho);
}

/* ============================================
   BOTÕES FLUTUANTES
   ============================================ */
.botao-flutuante {
  position: fixed;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: var(--espacamento-xs);
  padding: 0.75rem 1rem;
  border-radius: 50px;
  font-family: var(--fonte-corpo);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--branco);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transicao);
  border: none;
  cursor: pointer;
}

.botao-flutuante:hover {
  transform: scale(1.05);
}

.botao-wpp {
  background-color: var(--verde-wpp);
  bottom: 20px;
  right: 20px;
}

.botao-wpp:hover {
  background-color: var(--verde-wpp-hover);
}

.botao-emergencia {
  background-color: var(--dourado);
  bottom: 20px;
  left: 20px;
}

.botao-emergencia:hover {
  background-color: var(--dourado-claro);
}

/* ============================================
   PÁGINAS INTERNAS - HEADER DE PÁGINA
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--preto) 0%, var(--grafite) 100%);
  padding: var(--espacamento-lg) 0;
  text-align: center;
  border-bottom: 1px solid var(--borda);
}

.page-header-titulo {
  font-family: var(--fonte-titulo);
  font-size: 2rem;
  font-weight: 800;
  color: var(--branco);
  margin-bottom: var(--espacamento-xs);
}

.page-header-subtitulo {
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  color: var(--cinza-claro);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   CONTEÚDO DE PÁGINAS INTERNAS
   ============================================ */
.pagina-conteudo {
  background-color: var(--preto);
  padding: var(--espacamento-lg) 0;
}

.texto-conteudo {
  max-width: 800px;
  margin: 0 auto;
}

.texto-conteudo h2 {
  font-family: var(--fonte-titulo);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--branco);
  margin-top: var(--espacamento-md);
  margin-bottom: var(--espacamento-sm);
}

.texto-conteudo h3 {
  font-family: var(--fonte-titulo);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--branco);
  margin-top: var(--espacamento-md);
  margin-bottom: var(--espacamento-xs);
}

.texto-conteudo p {
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  color: var(--cinza-claro);
  line-height: 1.8;
  margin-bottom: var(--espacamento-sm);
}

.texto-conteudo ul {
  margin-bottom: var(--espacamento-sm);
  padding-left: var(--espacamento-md);
}

.texto-conteudo ul li {
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  color: var(--cinza-claro);
  line-height: 1.8;
  margin-bottom: 8px;
  list-style-type: disc;
}

.texto-conteudo strong {
  color: var(--branco);
  font-weight: 600;
}

/* Lista de Diferenciais */
.lista-diferenciais {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--espacamento-sm);
  margin: var(--espacamento-md) 0;
}

.item-diferencial {
  display: flex;
  align-items: flex-start;
  gap: var(--espacamento-sm);
  background-color: var(--grafite);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: var(--espacamento-sm);
  transition: var(--transicao);
}

.item-diferencial:hover {
  border-color: var(--dourado);
  box-shadow: 0 0 15px rgba(212, 168, 67, 0.1);
}

.item-diferencial i {
  color: var(--dourado);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.item-diferencial span {
  font-family: var(--fonte-corpo);
  font-size: 0.95rem;
  color: var(--cinza-claro);
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  background-color: var(--grafite);
  border-top: 1px solid var(--borda);
  border-bottom: 1px solid var(--borda);
  padding: var(--espacamento-lg) 0;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--fonte-titulo);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: var(--espacamento-sm);
}

.cta-section p {
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  color: var(--cinza-claro);
  margin-bottom: var(--espacamento-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   GRID SEGURADORAS
   ============================================ */
.grid-seguradoras {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--espacamento-sm);
}

.logo-seguradora-img {
  max-width: 110px;
  max-height: 45px;
  object-fit: contain;
  margin-bottom: var(--espacamento-xs);
}

.card-seguradora {
  background-color: var(--grafite);
  border: 1px solid transparent;
  border-radius: var(--raio);
  padding: var(--espacamento-md);
  text-align: center;
  transition: var(--transicao);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  gap: var(--espacamento-sm);
}

.card-seguradora:hover {
  background-color: var(--grafite-hover);
  border-color: var(--dourado);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.15);
}

.card-seguradora-nome {
  font-family: var(--fonte-titulo);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cinza-claro);
}

.card-seguradora:hover .card-seguradora-nome {
  color: var(--dourado-claro);
}

/* Grid Serviços (página servicos.html) */
.grid-servicos-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--espacamento-md);
}

/* Sobre - Fundador */
.fundador-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--espacamento-md);
  margin: var(--espacamento-lg) 0;
}

.fundador-foto {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--dourado);
  box-shadow: var(--sombra);
}

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

.fundador-info h3 {
  font-family: var(--fonte-titulo);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 4px;
}

.fundador-info p {
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  color: var(--vermelho);
  font-weight: 500;
}

/* Valores */
.valores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--espacamento-sm);
  margin: var(--espacamento-md) 0;
}

.card-valor {
  background-color: var(--grafite);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: var(--espacamento-md);
  text-align: center;
  transition: var(--transicao);
}

.card-valor:hover {
  border-color: var(--dourado);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.15);
}

.card-valor i {
  font-size: 1.5rem;
  color: var(--dourado);
  margin-bottom: var(--espacamento-xs);
}

.card-valor h4 {
  font-family: var(--fonte-titulo);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 4px;
}

.card-valor p {
  font-family: var(--fonte-corpo);
  font-size: 0.9rem;
  color: var(--cinza-claro);
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animar-entrada {
  animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar customizada */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--preto); }
::-webkit-scrollbar-thumb { background: var(--grafite); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--grafite-hover); }

/* ============================================
   RESPONSIVIDADE - TABLET (768px)
   ============================================ */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--espacamento-md);
  }

  .nav-mobile {
    display: none !important;
  }

  .hero-titulo {
    font-size: 3rem;
  }

  .hero-subtitulo {
    font-size: 1.25rem;
  }

  .hero-botoes {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }

  .hero-botoes .btn {
    width: auto;
    padding: 1rem 2rem;
  }

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

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

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

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

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

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

  .page-header-titulo {
    font-size: 2.5rem;
  }

  .fundador-section {
    flex-direction: row;
    text-align: left;
  }

  .fundador-info {
    text-align: left;
  }

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

  .logo-seguradora-img {
    max-width: 140px;
    max-height: 60px;
  }
}

/* ============================================
   RESPONSIVIDADE - DESKTOP (1025px)
   ============================================ */
@media (min-width: 1025px) {
  .container {
    padding: 0 var(--espacamento-md);
  }

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

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

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

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

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

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

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

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

  .mapa-container {
    height: 300px;
  }

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

  .logo-seguradora-img {
    max-width: 180px;
    max-height: 120px;
  }
}
