/*
Theme Name: Advogado Pro Theme
Version: 1.8
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Inter:wght@300;400;500&display=swap');

:root{
  --azul-escuro:#102536;
  --azul-claro:#1F4E6B;
  --bege:#FAF9F6;
  --dourado:#C2A45D;
  --texto:#24323A;
}

body{
  margin:0;
  font-family:'Inter', sans-serif;
  background:var(--bege);
  color:var(--texto);
  line-height:1.75;
}

header{
  background:#ffffff;
  border-bottom:1px solid #e6e6e6;
  padding:18px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

header h1{
  font-family:'Playfair Display', serif;
  font-size:1.5rem;
  margin:0;
  color:var(--azul-escuro);
}

header span{
  font-size:.85rem;
  color:#666;
}

.hero{
  background:linear-gradient(135deg,var(--azul-claro),var(--azul-escuro));
  color:#fff;
  padding:90px 40px;
  text-align:center;
}

.hero h2{
  font-family:'Playfair Display', serif;
  font-size:2.4rem;
  margin-bottom:14px;
}

.hero p{
  max-width:700px;
  margin:0 auto 28px;
  font-size:1.05rem;
}

.cta{
  display:inline-block;
  padding:14px 32px;
  background:var(--dourado);
  color:#1a1a1a;
  text-decoration:none;
  border-radius:30px;
  font-weight:500;
}

.section{
  max-width:1100px;
  margin:0 auto;
  padding:90px 40px;
}

.section h3{
  font-family:'Playfair Display', serif;
  font-size:2rem;
  margin-bottom:30px;
  text-align:center;
}

.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.card{
  background:#fff;
  padding:36px;
  border-radius:14px;
  box-shadow:0 18px 45px rgba(0,0,0,.05);
}

footer{
  background:var(--azul-escuro);
  color:#fff;
  padding:45px 40px;
  text-align:center;
  font-size:.9rem;
}
