:root{
  --cream:#f7f1e8;
  --paper:#fffaf2;
  --paper2:#fdf7ee;
  --olive:#68633f;
  --olive2:#4f4b2f;
  --gold:#b69a5a;
  --ink:#38362d;
  --muted:#756f63;
  --line:#e4d8c7;
  --shadow:0 18px 55px rgba(72,58,35,.12);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--ink);
  font-family:Montserrat,Arial,sans-serif;
  background:
    radial-gradient(circle at top left, rgba(182,154,90,.18), transparent 32%),
    linear-gradient(135deg,#f3eadf,#fffaf2 48%,#f7efe4);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:linear-gradient(120deg, rgba(255,255,255,.25), transparent 45%);
  z-index:-1;
}

.topbar{
  position:sticky;
  top:10px;
  z-index:20;
  margin:10px auto 0;
  max-width:1180px;
  padding:8px 18px;
  border:1px solid rgba(180,154,90,.22);
  border-radius:30px;
  background:rgba(255,250,242,.88);
  backdrop-filter:blur(18px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 14px 35px rgba(68,58,35,.10);
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand img{
  height:60px;
  width:60px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 6px 18px rgba(72,58,35,.10);
}

.nav{
  display:flex;
  gap:20px;
  align-items:center;
}

.nav a{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--ink);
  text-decoration:none;
  font-weight:600;
}

.nav a:hover{color:var(--gold)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 25px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--olive),var(--olive2));
  color:#fff!important;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
  font-size:12px;
  border:1px solid var(--gold);
  box-shadow:0 12px 24px rgba(79,75,47,.18);
  cursor:pointer;
  transition:.25s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(79,75,47,.22);
}

.btn-sm{padding:13px 20px}
.outline{background:transparent;color:var(--olive)!important}
.light{background:#fff;color:var(--olive)!important}

.menu-toggle{
  display:none;
  background:none;
  border:0;
  font-size:28px;
  color:var(--olive);
}

.hero{
  max-width:1180px;
  margin:18px auto 0;
  min-height:650px;
  border-radius:36px;
  overflow:hidden;
  background:rgba(255,250,242,.78);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  box-shadow:var(--shadow);
  position:relative;
  border:1px solid rgba(228,216,199,.7);
}

.hero::before{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  border-radius:50%;
  right:22%;
  top:10%;
  background:rgba(182,154,90,.06);
  pointer-events:none;
}

.hero-text{
  padding:72px 64px;
  position:relative;
  z-index:1;
}

.eyebrow{
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--gold);
  font-size:12px;
  font-weight:700;
  border-bottom:1px solid var(--gold);
  padding-bottom:10px;
  margin-bottom:20px;
}

h1,h2{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
  line-height:1.02;
  margin:0 0 22px;
}

h1{font-size:64px}
h2{font-size:48px}
h3{margin:0 0 12px}
em{color:var(--gold);font-style:normal}

.lead,.hero p{
  font-size:18px;
  line-height:1.75;
  color:var(--muted);
  max-width:720px;
}

.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:30px 0 46px;
}

.mini-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.mini-grid div{
  border-right:1px solid var(--line);
  padding:12px;
  text-align:center;
}

.mini-grid div:last-child{border-right:0}

.mini-grid b{
  font-size:30px;
  display:block;
}

.mini-grid span{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:600;
}

.hero-photo{
  position:relative;
  background:#e9dfd2;
}

.hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.badge{
  position:absolute;
  left:-60px;
  top:42%;
  width:165px;
  height:165px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--olive),#82764a);
  color:#fff;
  display:grid;
  place-content:center;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:.12em;
  line-height:1.5;
  font-size:14px;
  border:2px solid rgba(255,255,255,.5);
  box-shadow:0 18px 35px rgba(0,0,0,.16);
}

.badge small{font-size:11px}

.strip{
  max-width:1180px;
  margin:-1px auto 0;
  padding:30px 90px;
  background:linear-gradient(135deg,var(--olive),var(--olive2));
  color:#f7ecd7;
  border-radius:0 0 28px 28px;
  display:flex;
  justify-content:space-between;
  gap:30px;
  letter-spacing:.08em;
}

.sobre-section{
  max-width:1180px;
  margin:80px auto 0;
  padding:34px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:46px;
  align-items:center;
  background:rgba(255,250,242,.82);
  border:1px solid var(--line);
  border-radius:34px;
  box-shadow:var(--shadow);
}

.sobre-photo{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  min-height:600px;
  background:#e9dfd2;
}

.sobre-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(255,250,242,0),rgba(79,75,47,.16));
  pointer-events:none;
}

.sobre-photo img{
  width:100%;
  height:100%;
  min-height:600px;
  object-fit:cover;
  object-position:center;
  display:block;
}

.sobre-text{padding:18px 10px}

.sobre-text p{
  color:var(--muted);
  line-height:1.85;
  font-size:17px;
  margin:0 0 16px;
}

.sobre-text strong{color:var(--olive2)}
.sobre-text .btn{margin-top:12px}

.section,.split,.form-wrap,.article{
  max-width:1180px;
  margin:0 auto;
  padding:90px 28px;
}

.section{text-align:center}

.alt{
  background:rgba(255,255,255,.30);
  max-width:none;
}

.alt>*{
  max-width:1180px;
  margin-left:auto;
  margin-right:auto;
}

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:32px;
}

.card,.step,.panel,.form-card{
  background:rgba(255,250,242,.88);
  border:1px solid var(--line);
  border-radius:28px;
  padding:30px;
  text-align:left;
  box-shadow:0 12px 32px rgba(72,58,35,.08);
  transition:.25s ease;
}

.card:hover,.step:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(72,58,35,.12);
}

.card .icon{
  font-size:38px;
  margin-bottom:18px;
}

.card p,.step p,.panel p,li{
  color:var(--muted);
  line-height:1.7;
}

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:36px;
}

.step strong{
  display:inline-grid;
  place-items:center;
  width:46px;
  height:46px;
  border-radius:50%;
  background:var(--olive);
  color:#fff;
  margin-bottom:18px;
}

.split{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:42px;
  align-items:center;
}

.panel{
  background:linear-gradient(135deg,var(--olive),#83764a);
  color:#fff;
}

.panel p{color:#f5eedf}

.testimonials{grid-template-columns:repeat(3,1fr)}

.testimonials article{
  background:#fffaf2;
  border-radius:24px;
  padding:28px;
  border:1px solid var(--line);
  font-family:'Cormorant Garamond',serif;
  font-size:26px;
}

.faq{
  max-width:860px;
  margin:35px auto 0;
  text-align:left;
}

.faq details{
  background:#fffaf2;
  border:1px solid var(--line);
  border-radius:18px;
  margin:14px 0;
  padding:18px 22px;
}

.faq summary{
  font-weight:700;
  cursor:pointer;
}

.faq p{
  color:var(--muted);
  line-height:1.7;
}

.cta{
  margin:30px auto 80px;
  max-width:1050px;
  border-radius:34px;
  background:linear-gradient(135deg,var(--olive),#8b7a4d);
  color:#fff;
  text-align:center;
  padding:75px 30px;
  box-shadow:var(--shadow);
}

.cta p{color:#f8edda}

.page-hero{
  max-width:960px;
  margin:60px auto 0;
  text-align:center;
  padding:80px 26px;
}

.form-wrap{padding-top:35px}

.form-card{
  max-width:760px;
  margin:auto;
  display:grid;
  gap:18px;
}

.form-card input,
.form-card textarea,
.form-card select{
  width:100%;
  border:1px solid var(--line);
  background:#fffaf2;
  border-radius:18px;
  padding:16px;
  font-family:Montserrat,Arial,sans-serif;
  font-size:15px;
}

.form-card textarea{min-height:130px}

.footer{
  max-width:1180px;
  margin:40px auto 26px;
  padding:34px;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:26px;
  background:rgba(255,250,242,.85);
  border:1px solid var(--line);
  border-radius:30px;
  color:var(--muted);
}

.footer img{
  width:86px;
  height:86px;
  border-radius:50%;
  object-fit:cover;
}

.footer a{
  display:block;
  color:var(--muted);
  text-decoration:none;
  margin:8px 0;
}

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:30;
  background:#25d366;
  color:#fff!important;
  text-decoration:none;
  padding:15px 20px;
  border-radius:999px;
  font-weight:700;
  box-shadow:0 14px 30px rgba(0,0,0,.22);
}

.lgpd{
  position:fixed;
  left:22px;
  bottom:22px;
  z-index:31;
  max-width:340px;
  background:#fffaf2;
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px;
  box-shadow:0 14px 30px rgba(0,0,0,.12);
  display:none;
}

.lgpd p{margin:0 0 10px;color:var(--muted);font-size:13px}
.lgpd button{border:0;border-radius:999px;padding:10px 16px;background:var(--olive);color:#fff;cursor:pointer}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:1050px){
  .nav{
    display:none;
    position:absolute;
    top:92px;
    right:16px;
    left:16px;
    flex-direction:column;
    align-items:stretch;
    background:#fffaf2;
    border:1px solid var(--line);
    border-radius:24px;
    padding:20px;
    box-shadow:var(--shadow);
  }

  .nav.open{display:flex}
  .menu-toggle{display:block}
}

@media(max-width:900px){
  .topbar{
    margin:10px 12px 0;
    top:8px;
  }

  .brand img{
    height:64px;
    width:64px;
  }

  .hero{
    margin:18px 14px 0;
    grid-template-columns:1fr;
    min-height:auto;
  }

  .hero-text{padding:48px 24px}
  h1{font-size:46px}
  h2{font-size:38px}

  .hero-photo{min-height:430px}
  .badge{left:18px;top:18px;width:140px;height:140px;font-size:12px}

  .mini-grid{grid-template-columns:repeat(2,1fr)}
  .strip{margin:0 14px;padding:24px;display:block}
  .strip span{display:block;margin-top:12px}

  .sobre-section{
    grid-template-columns:1fr;
    padding:22px;
    margin:48px 14px 0;
  }

  .sobre-photo,
  .sobre-photo img{
    min-height:420px;
  }

  .cards,.steps,.testimonials,.split,.footer{
    grid-template-columns:1fr;
  }

  .section,.split,.form-wrap,.article{
    padding:60px 18px;
  }

  .whatsapp-float{
    right:14px;
    bottom:14px;
  }

  .lgpd{
    left:14px;
    right:14px;
    bottom:76px;
    max-width:none;
  }
}


/* ===== Ajustes finais de elegância e redução de espaços vazios ===== */
.topbar{
  max-width:1120px;
  min-height:72px;
}

.nav .btn-sm{
  padding:12px 18px;
}

.hero{
  max-width:1120px;
}

.hero-text{
  align-self:center;
}

.hero-photo img{
  object-position:center top;
}

.strip{
  max-width:1120px;
  padding:24px 70px;
}

/* Páginas internas compactas */
.page-hero{
  max-width:920px;
  margin:26px auto 0;
  text-align:center;
  padding:54px 24px 28px;
}

.compact-hero{
  padding-top:42px;
  padding-bottom:18px;
}

.page-hero h1{
  font-size:52px;
  margin-bottom:14px;
}

.page-hero p{
  max-width:720px;
  margin:0 auto;
  color:var(--muted);
  line-height:1.7;
}

.section,
.split,
.form-wrap,
.article{
  padding-top:66px;
  padding-bottom:66px;
}

.compact-section{
  padding-top:24px;
  padding-bottom:54px;
}

.compact-form{
  padding-top:20px;
  padding-bottom:70px;
}

.compact-article{
  max-width:860px;
  padding-top:56px;
}

.cards{
  margin-top:22px;
}

.service-cards,
.blog-cards{
  align-items:stretch;
}

.service-card,
.blog-card{
  min-height:260px;
  display:flex;
  flex-direction:column;
}

.service-card p,
.blog-card p{
  margin-bottom:18px;
}

.text-link{
  margin-top:auto;
  color:var(--olive2);
  font-weight:700;
  text-decoration:none;
  border-bottom:1px solid rgba(182,154,90,.55);
  width:max-content;
}

.text-link:hover{
  color:var(--gold);
}

.card{
  border-radius:24px;
  padding:28px;
}

.card .icon{
  font-size:34px;
  margin-bottom:14px;
}

.form-card{
  margin-top:0;
}

.cta{
  margin-top:10px;
  margin-bottom:64px;
  padding:58px 30px;
}

.compact-cta{
  margin-top:0;
}

.sobre-section{
  max-width:1120px;
  margin-top:64px;
}

.section h2{
  margin-bottom:12px;
}

/* Corrige excesso visual em mobile e tablets */
@media(max-width:900px){
  .topbar{
    margin:8px 12px 0;
    min-height:66px;
  }

  .brand img{
    height:56px;
    width:56px;
  }

  .page-hero,
  .compact-hero{
    margin:16px auto 0;
    padding:34px 18px 18px;
  }

  .page-hero h1{
    font-size:40px;
  }

  .section,
  .split,
  .form-wrap,
  .article{
    padding-top:44px;
    padding-bottom:44px;
  }

  .compact-section,
  .compact-form{
    padding-top:18px;
  }

  .hero{
    min-height:auto;
  }

  .hero-text{
    padding:42px 24px;
  }

  .strip{
    padding:20px;
  }

  .cta{
    margin-left:14px;
    margin-right:14px;
    padding:46px 22px;
  }
}


/* ===== Página de Avaliações ===== */
.avaliacoes-resumo{
  max-width:1120px;
  margin:18px auto 0;
  padding:24px 28px 10px;
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:26px;
  align-items:stretch;
}

.score-card,
.score-info,
.avaliacao-card{
  background:rgba(255,250,242,.88);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:0 12px 32px rgba(72,58,35,.08);
}

.score-card{
  padding:34px;
  text-align:center;
  display:grid;
  place-content:center;
}

.score-stars,
.stars{
  color:var(--gold);
  letter-spacing:.12em;
}

.score-card strong{
  display:block;
  font-family:'Cormorant Garamond',serif;
  font-size:70px;
  line-height:1;
  margin:10px 0;
  color:var(--olive2);
}

.score-card p,
.score-info p,
.avaliacao-card p{
  color:var(--muted);
  line-height:1.75;
}

.score-info{
  padding:36px;
}

.score-info h2{
  margin-bottom:14px;
}

.avaliacoes-grid{
  grid-template-columns:repeat(3,1fr);
}

.avaliacao-card{
  padding:28px;
  min-height:260px;
  display:flex;
  flex-direction:column;
}

.avaliacao-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}

.avaliacao-top small{
  color:var(--muted);
  text-align:right;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.avaliacao-card p{
  font-family:'Cormorant Garamond',serif;
  font-size:25px;
  line-height:1.35;
  margin:0 0 24px;
}

.avaliacao-card strong{
  margin-top:auto;
  color:var(--olive2);
}

@media(max-width:900px){
  .avaliacoes-resumo{
    grid-template-columns:1fr;
    padding:18px 14px 0;
  }

  .avaliacoes-grid{
    grid-template-columns:1fr;
  }

  .score-card strong{
    font-size:56px;
  }

  .avaliacao-card p{
    font-size:22px;
  }
}


/* ===== Header premium com logo horizontal completa ===== */
.topbar{
  max-width:1180px !important;
  min-height:96px !important;
  padding:12px 22px !important;
  border-radius:28px !important;
  display:grid !important;
  grid-template-columns:230px 1fr !important;
  column-gap:22px !important;
}

.brand{
  width:220px !important;
  height:78px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:999px !important;
  background:rgba(255,250,242,.72) !important;
  box-shadow:0 10px 24px rgba(72,58,35,.08) !important;
  overflow:hidden !important;
}

.brand img{
  height:72px !important;
  width:200px !important;
  max-width:200px !important;
  object-fit:contain !important;
  object-position:center !important;
  border-radius:0 !important;
  box-shadow:none !important;
  mix-blend-mode:multiply;
}

.nav{
  justify-content:flex-end !important;
  gap:22px !important;
}

.nav a{
  white-space:nowrap;
}

.nav .btn-sm{
  padding:15px 24px !important;
  min-width:190px;
}

@media(max-width:1050px){
  .topbar{
    display:flex !important;
    grid-template-columns:none !important;
  }

  .brand{
    width:190px !important;
    height:68px !important;
  }

  .brand img{
    width:174px !important;
    height:64px !important;
  }
}

@media(max-width:900px){
  .topbar{
    min-height:76px !important;
    padding:8px 14px !important;
  }

  .brand{
    width:160px !important;
    height:58px !important;
  }

  .brand img{
    width:145px !important;
    height:54px !important;
  }
}

/* ===== Instagram profissional ===== */
.header-social{
  display:flex;
  align-items:center;
  gap:8px;
}

.social-pill{
  width:38px;
  height:38px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:1px solid rgba(180,154,90,.38);
  box-shadow:0 8px 18px rgba(72,58,35,.10);
  transition:.25s ease;
}

.social-pill:hover{
  transform:translateY(-2px);
}

.whatsapp-pill{
  background:#25d366;
  color:#fff !important;
  font-weight:800;
}

.instagram-pill,
.instagram-link,
.instagram-follow{
  background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
  color:#fff !important;
}

.instagram-icon{
  width:18px;
  height:18px;
  display:inline-block;
  border:2px solid currentColor;
  border-radius:5px;
  position:relative;
  color:inherit;
}

.instagram-icon::before{
  content:"";
  position:absolute;
  width:6px;
  height:6px;
  border:2px solid currentColor;
  border-radius:50%;
  left:4px;
  top:4px;
}

.instagram-icon::after{
  content:"";
  position:absolute;
  width:3px;
  height:3px;
  border-radius:50%;
  background:currentColor;
  right:3px;
  top:3px;
}

.instagram-section{
  max-width:1120px;
  margin:20px auto 70px;
  padding:46px 28px;
  background:rgba(255,250,242,.82);
  border:1px solid var(--line);
  border-radius:34px;
  box-shadow:var(--shadow);
}

.instagram-head{
  text-align:center;
  max-width:780px;
  margin:0 auto 32px;
}

.instagram-head p{
  color:var(--muted);
  line-height:1.75;
  margin-bottom:22px;
}

.instagram-follow{
  gap:10px;
}

.instagram-feed{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.insta-post{
  position:relative;
  overflow:hidden;
  min-height:360px;
  border-radius:26px;
  text-decoration:none;
  color:#fff;
  background:var(--olive);
  box-shadow:0 14px 32px rgba(72,58,35,.14);
}

.insta-post img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  display:block;
  transition:.35s ease;
}

.insta-post:hover img{
  transform:scale(1.04);
}

.insta-post::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.64));
}

.insta-post div{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  z-index:1;
}

.insta-post strong{
  display:block;
  font-family:'Cormorant Garamond',serif;
  font-size:30px;
  line-height:1.05;
  margin-bottom:8px;
}

.insta-post span{
  display:block;
  font-size:13px;
  line-height:1.55;
  color:rgba(255,255,255,.86);
}

.instagram-note{
  margin:22px auto 0;
  max-width:760px;
  text-align:center;
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
}

.footer-social{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.social-link{
  display:inline-flex !important;
  align-items:center;
  gap:8px;
  width:max-content;
  padding:10px 14px;
  border-radius:999px;
  color:#fff !important;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
}

.whatsapp-link{
  background:#25d366;
}

.instagram-link .instagram-icon,
.instagram-follow .instagram-icon{
  width:16px;
  height:16px;
}

@media(max-width:1050px){
  .header-social{
    justify-content:center;
    margin:8px 0;
  }
}

@media(max-width:900px){
  .instagram-section{
    margin:10px 14px 48px;
    padding:34px 18px;
  }

  .instagram-feed{
    grid-template-columns:1fr;
  }

  .insta-post,
  .insta-post img{
    min-height:320px;
  }
}
