/* ================= 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: #333;
  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: #111;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: center;    
}

/* Parágrafos gerais */
p {
  font-size: 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: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 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 h2 {
  font-size: 1.6rem;
  margin-bottom: 5px;
  text-align: center;
}
.hero h3.oab {
  font-size: 1rem;
  color: #d4af37;
  margin-bottom: 15px;
  text-align: center;
}
.hero h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 15px 0;
  color: #fff;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================= BOTÕES ================= */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #d4af37;
  color: #111;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #b8922d;
  color: #fff;
}

/* ================= SEÇÕES BASE ================= */
section {
  padding: 60px 15%;
}
section:nth-child(even) {
  background: #f9f9f9;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* ================= ÁREAS DE ATUAÇÃO ================= */
.areas .container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.areas-img,
.sobre-imagem {
  flex: 1;
  text-align: center;
}
.areas-img img,
.sobre-imagem img {
  width: 100%;          
  max-width: 500px;     
  height: 350px;
  object-fit: cover;
  border: 4px solid #000;
  border-radius: 5px;
}
.areas-content,
.sobre-texto {
  flex: 1;
}

/* ================= SOBRE ================= */
.sobre {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 10%;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 2px solid #eee;
}

/* ================= 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) {
  .sobre,
  .areas .container {
    flex-direction: column;
    text-align: center;
  }
  .areas-img img,
  .sobre-imagem img {
    max-width: 85%;
    height: 250px;
  }
}
