body {
  font-family: "Poppins", sans-serif;
  color: #0b2447;
  background-color: #fff;
  overflow-x: hidden;
}

/* Cores */
.bg-primary-custom {
  background-color: #0b2447 !important;
}

.text-gold {
  color: #c9a227;
}

/* Navbar */
.navbar-brand {
  font-weight: 700;
  font-size: 1.3rem;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #c9a227 !important;
}

/* Hero */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.hero h1 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #0b2447;
}

.hero h1 span {
  color: #c9a227;
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  border-radius: 6px;
  padding: 12px 24px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}

/* Seções */
section {
  padding: 70px 0;
}

h2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #0b2447;
}

/* Icon boxes */
.icon-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.icon-box i {
  font-size: 2rem;
  color: #c9a227;
  margin-bottom: 10px;
}

/* FAQ */
#faq h6 {
  font-weight: 600;
  margin-top: 20px;
}

#faq p {
  margin-left: 25px;
  color: #444;
}

/* Footer */
footer {
  background-color: #0b2447;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

.navbar-imglogo{
    background: white;
    border-radius: 5px;
}

.navbar-brand img {
  height: 60px;             /* controla o tamanho da logo */
  width: auto;
  max-height: 65px;
  transition: all 0.3s ease-in-out;
}

.navbar {
  padding: 0.7rem 0;        /* reduz altura do cabeçalho */
}

/* Alinha logo e menu melhor em telas médias */
@media (max-width: 992px) {
  .navbar-brand img {
    height: 50px;
  }
}

/* Em telas bem pequenas */
@media (max-width: 576px) {
  .navbar-brand img {
    height: 42px;
  }
}



.hero img {
  height: 500px;
  max-height: 550px; /* controla o tamanho máximo da pessoa */
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  transition: all 0.4s ease-in-out;
}

/* Em telas menores, reduz um pouco mais */
@media (max-width: 992px) {
  .hero img {
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  .hero img {
    max-height: 360px;
  }
}

/* Dá um espaçamento extra pra respirar melhor no topo */
.hero {
  padding: 140px 0 100px;
}

/* Torna o texto mais equilibrado no mobile */
/*.hero h1 {*/
/*  font-size: clamp(2rem, 4vw, 3rem);*/
/*}*/

.hero p {
  font-size: 1rem;
  line-height: 1.6;
}

#quem-somos {
  background-color: #f8f9fa;
}

#quem-somos h2 {
  font-weight: 700;
  color: #0b2447;
}

#quem-somos p.lead {
  font-size: 1.1rem;
  color: #333;
}

/* Cards de advogados */
.card-adv {
  background: #fff;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.card-adv:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* Avatar do advogado */
.adv-avatar {
  width: 130px;
  height: 130px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #c9a227;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.adv-avatar img {
  width: 120%;              /* diminui um pouco o zoom da imagem */
  height: auto;
  object-fit: cover;
  object-position: center top; /* <-- foca mais no rosto */
  transform: translateY(25px); /* <-- sobe levemente a imagem */
}

/* Responsividade */
@media (max-width: 768px) {
  .adv-avatar img {
    width: 110px;
    height: 110px;
  }
}
