:root{
  --off-white:#EFEFEF;
  --bege-claro:#DFDBD5;
  --bege-medio:#AFA494;
  --taupe:#948774;
  --taupe-escuro:#6f6555;
  --bg:#EFEFEF;
  --texto:#4a453d;
  --branco:#ffffff;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;color:var(--texto);line-height:1.7;background:var(--bg)}
h1,h2,h3{font-family:'Cormorant Garamond',serif;color:var(--taupe-escuro);font-weight:600;line-height:1.2}
h1{font-size:2.8rem}
h2{font-size:2.2rem;margin-bottom:1rem}
.container{max-width:1100px;margin:0 auto;padding:0 24px}
.center{text-align:center}
.lead{font-size:1.15rem;color:var(--taupe);margin-bottom:2rem}
.small-note{font-size:.85rem;color:#8a8375;margin-top:1rem}

/* HEADER */
#header{position:sticky;top:0;background:rgba(148,135,116,.97);z-index:100;backdrop-filter:blur(8px)}
#header nav{display:flex;justify-content:space-between;align-items:center;padding:16px 24px}
.logo{color:var(--branco);font-family:'Cormorant Garamond',serif;font-size:1.6rem;font-weight:600;text-decoration:none;display:flex;flex-direction:column;line-height:1}
.logo span{font-size:.7rem;letter-spacing:3px;color:var(--bege-claro);font-family:'Inter';text-transform:uppercase}
.nav-links{list-style:none;display:flex;gap:28px;align-items:center}
.nav-links a{color:#f2efe9;text-decoration:none;font-size:.95rem;transition:.3s}
.nav-links a:hover{color:var(--bege-claro)}
.btn-nav{background:var(--off-white);color:var(--taupe-escuro)!important;padding:8px 20px;border-radius:30px;font-weight:600}
.btn-nav:hover{background:var(--bege-claro);color:var(--taupe-escuro)!important}
#menu-toggle,.menu-icon{display:none}

/* HERO */
.hero{background:linear-gradient(135deg,var(--taupe),var(--bege-medio));color:var(--branco);padding:80px 0}
.hero-content{display:flex;align-items:center;gap:50px}
.hero-text{flex:1}
.hero-text h1{color:var(--branco);margin-bottom:1.2rem}
.hero-text p{font-size:1.2rem;color:#f5f2ec;margin-bottom:2rem;max-width:480px}
.hero-ctas{display:flex;gap:16px;flex-wrap:wrap}
.hero-img{flex:1;display:flex;justify-content:center}

/* BOTÕES */
.btn-primary{display:inline-block;background:var(--taupe-escuro);color:var(--off-white);padding:14px 34px;border-radius:30px;text-decoration:none;font-weight:600;transition:.3s;border:none;cursor:pointer}
.btn-primary:hover{background:#5a5142;transform:translateY(-2px)}
.btn-outline{display:inline-block;border:2px solid var(--off-white);color:var(--branco);padding:12px 32px;border-radius:30px;text-decoration:none;font-weight:600;transition:.3s}
.btn-outline:hover{background:var(--off-white);color:var(--taupe-escuro)}

/* FOTOS */
.foto{border-radius:16px;object-fit:cover;box-shadow:0 8px 30px rgba(111,101,85,.25)}
.foto-hero{width:340px;height:420px}
.foto-sobre{width:320px;height:400px}
.foto-perfil{width:300px;height:360px}
.foto-wrap{display:flex;justify-content:center}

/* SECTIONS */
.section{padding:80px 0}
.section.alt{background:var(--bege-claro)}
.two-col{display:flex;align-items:center;gap:50px}

/* PARA QUEM */
.reconhece{list-style:none;max-width:820px;margin:0 auto;display:grid;gap:14px}
.reconhece li{background:var(--branco);padding:18px 24px;border-left:4px solid var(--bege-medio);border-radius:10px;box-shadow:0 2px 12px rgba(111,101,85,.06)}

/* CARDS */
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:2rem}
.cards-3{grid-template-columns:repeat(3,1fr)}
.card{background:var(--branco);padding:30px 22px;border-radius:14px;text-align:center;box-shadow:0 4px 20px rgba(111,101,85,.08);transition:.3s}
.card:hover{transform:translateY(-6px);box-shadow:0 10px 30px rgba(111,101,85,.15)}
.card span{font-size:2.2rem;display:block;margin-bottom:12px}
.card h3{font-size:1.35rem;margin-bottom:8px}
.card p{font-size:.95rem;color:#6b6455}

/* FAQ */
details{background:var(--branco);border-radius:12px;padding:18px 24px;margin-bottom:14px;box-shadow:0 2px 10px rgba(111,101,85,.06)}
summary{font-weight:600;cursor:pointer;color:var(--taupe-escuro);font-size:1.05rem}
details p{margin-top:12px;color:#6b6455}

/* CONTATO */
.contato-links{display:flex;gap:18px;justify-content:center;flex-wrap:wrap;margin-top:1rem}

/* FOOTER */
footer{background:var(--taupe-escuro);color:#e8e4dc;text-align:center;padding:40px 0}
footer p{margin:4px 0}

/* RESPONSIVO */
@media(max-width:768px){
  h1{font-size:2rem}h2{font-size:1.7rem}
  .menu-icon{display:block;color:#fff;font-size:1.8rem;cursor:pointer}
  .nav-links{position:absolute;top:100%;left:0;right:0;background:var(--taupe);flex-direction:column;padding:20px;gap:16px;display:none}
  #menu-toggle:checked ~ .nav-links{display:flex}
  .hero-content,.two-col{flex-direction:column;text-align:center}
  .hero-text p{margin:0 auto 2rem}
  .hero-ctas{justify-content:center}
  .cards,.cards-3{grid-template-columns:1fr 1fr}
  .foto-hero,.foto-sobre,.foto-perfil{width:100%;max-width:320px;height:auto}
}
@media(max-width:480px){.cards,.cards-3{grid-template-columns:1fr}}
