/* ================= RESET / BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* ================= TIPOGRAFIA ================= */
/* Títulos principais das seções */
h2 {
  text-align: center;    
  font-size: 1.8rem;
  color:#111;
  margin-bottom: 10px;
}

/* Subtítulos reutilizáveis */
.subtitulo {
  color: #d4af37;          
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;    
}

/* Títulos de bloco internos */
h3 {
  font-size: 1.3rem;
  color: #d4af37;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: center;    
}

/* Parágrafos gerais */
p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 15px;
  text-align: justify;
}

/* ================= HEADER ================= */
header {
  background: #111;
  padding: 15px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo img { height: 60px; }
header nav {
  display: flex;
  gap: 30px;
}
header nav a {
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  transition: color 0.3s ease;
}
header nav a:hover { color: #d4af37; }

/* ================= HERO ================= */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero h1 {
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #d4af37;
  text-align: center;
}
.breadcrumb {
  color: #fff;
  font-style: italic;
  font-weight: bold;
  text-align: center;
  font-size: 1.0rem;
}

/* ================= DIVISORES ================= */
.barra-dourada {
  width: 80px;
  height: 3px;
  background: #d4af37;
  margin: 40px auto;
  border-radius: 2px;
}
.ornamento {
  width: 60px;
  height: 2px;
  background: #ccc;
  margin: 40px auto;
}

/* ================= QUEM SOMOS ================= */
.quem-somos {
  padding: 60px 10%;
}
.quem-somos .container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.quem-somos .texto {
  flex: 1;
}
.quem-somos h2 { margin-bottom: 15px; }
.quem-somos h3 { margin-bottom: 12px; }
.quem-somos p { line-height: 1.6; }
.quem-somos .imagem {
  flex: 1;
  text-align: center;
}
.quem-somos img {
  max-width: 100%;
  border: 4px solid #000;
  border-radius: 5px;
}

/* ================= ADVOGADO ================= */
.advogado {
  padding: 60px 15%;
  background: #f9f9f9;
}
.advogado-card {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.advogado-img img {
  width: 220px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 4px solid #000;
}
.advogado-info {
  flex: 1;
}
.advogado-info h2 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 10px;
  text-align: left;
}
.advogado-info h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 12px;
  text-align: left;
}
.advogado-info ul {
  list-style: none;
  padding-left: 0;
}
.advogado-info li {
  margin-bottom: 6px;
  color: #444;
  line-height: 1.6;
  text-align: justify;
}

/* ================= ÁREAS DE ATUAÇÃO ================= */
.atuacao {
  padding: 60px 15%;
  text-align: center;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: #fff9e4;
  border: 2px solid #000;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #d4af37;
}

/* ================= CITAÇÃO ================= */
.citacao {
  background: #f2f2f2;
  padding: 60px 15%;
  text-align: center;
  font-style: italic;
  color: #555;
}
.citacao p {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.citacao span {
  font-size: 1rem;
  color: #888;
}

/* ================= FOOTER ================= */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 40px 20px;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}
.footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.footer-info h4 {
  color: #d4af37;
  margin-bottom: 5px;
  text-align: center;
}
.footer-info p {
  color: #d9d9d9;
  margin-bottom: 5px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-social {
  margin-bottom: 20px;
}
.footer-social a {
  color: #d4af37;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}
.footer-social a:hover { text-decoration: underline; }
.footer-maps .maps-frame {
  width: 100%;
  height: 250px;
  border: 0;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #777;
}

/* ================= RESPONSIVO ================= */
@media (max-width: 900px) {
  .quem-somos .container,
  .advogado-card {
    flex-direction: column;
    text-align: center;
  }
  .quem-somos img,
  .advogado-img img {
    max-width: 85%;
    height: auto;
  }
}
