body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #0d0d0d;
  color: #f5f5f5;
  overflow-x: hidden;
}

/* SCROLL */
html {
  scroll-behavior: smooth;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 1000;
  transition: 0.3s;

  display: flex;
  justify-content: space-between;
  align-items: center;

  box-sizing: border-box;
}

header.scrolled {
  background: #0d0d0d;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #f5f5f5;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 400;
}

/* MENU */
nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: #f5f5f5;
  text-decoration: none;
  position: relative;
  transition: .3s;
  font-size: 15px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;

  width: 0;
  height: 2px;

  background: #c5a253;
  transition: .3s;
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: #c5a253;
}

/* HERO */

.hero{

    width:100%;
    max-width:none;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:0 20px;

    box-sizing:border-box;

    background:
        linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.88)),
        url("fundo-mobile.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

@media (min-width:768px){

.hero{

background:
linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.88)),
url("fundo-desktop.jpg");

background-size:cover;
background-position:center;
background-repeat:no-repeat;

}

}

.hero-content{

    width:100%;
    max-width:850px;

}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px !important;
  font-weight: 400;
  color: #c5a253;
  line-height: 1.2;
  margin: 0 auto 24px;
  max-width: 760px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero p{

    font-size:19px;
    color:#ddd;
    line-height:1.8;

}

/* BOTÃO HERO */

.hero-btn{

    display:inline-block;
    margin-top:30px;
    padding:15px 32px;

    background:#c5a253;
    color:#000;

    border-radius:6px;
    text-decoration:none;
    font-weight:600;

    transition:.3s;

}

.hero-btn:hover{

    transform:scale(1.05);
    background:#ddb76a;

}
/* ===========================
   SEÇÕES
=========================== */

.section {
  padding: 100px 20px;
  max-width: 1100px;
  margin: 0 auto;
  scroll-margin-top: 100px;
  box-sizing: border-box;
}

/* ===========================
   SOBRE
=========================== */

#sobre {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sobre-content {
  width: 100%;
  max-width: 760px;
}

.sobre-content h2 {
  margin-bottom: 40px;
}

.sobre-content p {
  color: #ccc;
  font-size: 17px;
  line-height: 2;
  margin-bottom: 24px;
}

/* ===========================
   TÍTULOS
=========================== */

h2 {
  font-family: 'Playfair Display', serif;
  color: #c5a253;
  font-size: 46px;
  font-weight: 400;
  margin-bottom: 30px;
}

#advogados h2,
#servicos h2 {
  text-align: center;
}

.section p {
  color: #ccc;
  line-height: 1.9;
  font-size: 17px;
}

/* ===========================
   EQUIPE
=========================== */

.advogados-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.advogado-card {
  background: #111;
  border: 1px solid rgba(197, 162, 83, 0.2);
  border-radius: 12px;
  padding: 35px 25px;
  width: 300px;
  text-align: center;
  transition: 0.3s;
}

.advogado-card:hover {
  transform: translateY(-8px);
  border-color: #c5a253;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.advogado-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #c5a253;
  margin: 0 auto 20px;
}

.advogado-card h3 {
  font-family: 'Playfair Display', serif;
  color: #c5a253;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 10px;
}

.advogado-card p {
  color: #fff;
  margin-bottom: 10px;
}

.advogado-card span {
  color: #bbb;
  font-size: 15px;
  line-height: 1.6;
}
.advogado-card {
  border-radius: 12px;
  padding: 35px 25px;
  width: 300px;
  text-align: center;
  transition: .3s;
}

.advogado-card:hover {
  transform: translateY(-8px);
  border-color: #c5a253;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.advogado-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #c5a253;
  margin-bottom: 20px;
}

.advogado-card h3 {
  font-family: 'Playfair Display', serif;
  color: #c5a253;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 10px;
}

.advogado-card p {
  color: #fff;
  margin-bottom: 10px;
}

.advogado-card span {
  color: #bbb;
  font-size: 15px;
  line-height: 1.6;
}

/* ===========================
   ACCORDION
=========================== */

.accordion .item {
  border: 1px solid rgba(197,162,83,.2);
  border-radius: 10px;
  overflow: hidden;
  margin: 15px 0;
  transition: .3s;
}

.accordion .item:hover {
  border-color: #c5a253;
}

.accordion-btn {
  width: 100%;
  border: none;
  background: transparent;
  color: #c5a253;
  cursor: pointer;

  padding: 20px;

  text-align: left;

  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;

  transition: .3s;
}

.accordion-btn:hover {
  background: #141414;
}

.content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height .4s ease;
}

.content p {
  color: #ccc;
  margin: 20px 0;
  line-height: 1.8;
}

/* ===========================
   CTA
=========================== */

.cta {
  text-align: center;
}

.cta h2 {
  margin-bottom: 20px;
}

.cta p {
  color: #ccc;
  font-size: 18px;
  margin-bottom: 30px;
}

.cta a {
  display: inline-block;
  padding: 15px 32px;
  background: #c5a253;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: .3s;
}

.cta a:hover {
  background: #ddb76a;
  transform: scale(1.05);
}
/* ===========================
   ANIMAÇÕES
=========================== */

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   BOTÃO WHATSAPP
=========================== */

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;

  background: #c5a253;
  color: #000;

  padding: 14px 20px;

  border-radius: 30px;

  text-decoration: none;
  font-weight: 600;

  box-shadow: 0 8px 20px rgba(0,0,0,.35);

  transition: .3s;

  z-index: 999;
}

.whatsapp:hover {
  transform: scale(1.08);
  background: #ddb76a;
}

/* ===========================
   FOOTER
=========================== */

footer {
  background: #000;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 35px;

  text-align: center;
}

.footer-info {
  width: 100%;
  max-width: 500px;
}

.footer-info h3 {
  font-family: 'Playfair Display', serif;
  color: #c5a253;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 15px;
}

.footer-info p {
  margin: 10px 0;
  line-height: 1.8;
}

.footer-info a {
  color: #f5f5f5;
  text-decoration: none;
  transition: .3s;
}

.footer-info a:hover {
  color: #c5a253;
}

.copy {
  margin-top: 45px;
  text-align: center;
  font-size: 14px;
  opacity: .7;
}
/* ===========================
   RESPONSIVIDADE
=========================== */

@media (max-width: 768px) {

  header {
    padding: 18px 20px;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
  }

  header h1 {
    text-align: center;
    font-size: 24px;
  }

  nav {
    justify-content: center;
    gap: 15px;
  }

  nav a {
    font-size: 14px;
  }

  .hero {
    padding: 0 20px;
    min-height: 100vh;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h2 {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.8;
  }

  .section {
    padding: 80px 20px;
  }

  #sobre {
    min-height: auto;
    padding: 90px 20px;
  }

  .sobre-content {
    max-width: 100%;
  }

  h2 {
    font-size: 36px;
  }

  .advogados-container {
    gap: 30px;
  }

  .advogado-card {
    width: 100%;
    max-width: 340px;
  }

  .advogado-card img {
    width: 160px;
    height: 160px;
  }

  .accordion-btn {
    font-size: 24px;
    padding: 18px;
  }

  .whatsapp {
    right: 15px;
    bottom: 15px;
    padding: 12px 18px;
    font-size: 15px;
  }

}

/* ===========================
   TELAS GRANDES
=========================== */

@media (min-width: 1200px) {

  .hero-content {
    max-width: 900px;
  }

  .hero h2 {
    font-size: 72px;
  }

  .hero p {
    font-size: 20px;
  }

}

/* ===========================
   AJUSTES FINAIS
=========================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font-family: inherit;
}