:root{
  /* ---------------------------------------------------------------
     PALETA CLARA DERIVADA DA IDENTIDADE LC PERSIANAS.
     O logo e um monograma em tinta azul-marinho (#002662) sobre fundo
     transparente — sem dourado, sem preto. Por isso a marca aqui e
     construida em torno do azul-marinho como cor de destaque (no lugar
     do dourado usado em outros clientes), com neutros em creme quente
     para dar acabamento premium sem depender de uma segunda cor.
     Cabecalho e rodape usam faixa clara/escura solidas para o logo
     (tinta escura) nunca "sumir" sobre um fundo da mesma familia.
     --------------------------------------------------------------- */
  --bg:#ffffff;              /* fundo base (claro) */
  --bg-alt:#f8f6f1;          /* tom 1 — marfim muito leve */
  --bg-warm:#f2ede3;         /* tom 2 — marfim quente */
  --bg-soft:#ece5d6;         /* tom 3 — marfim mais fechado */
  --card:#ffffff;
  --card-warm:#ffffff;
  --line:rgba(14,32,64,.10);
  --line-strong:rgba(14,32,64,.18);
  --line-warm:rgba(150,120,64,.22);
  --ink:#132038;             /* texto principal — alto contraste no branco */
  --muted:#5b6472;           /* texto secundario */
  --navy:#0e2c58;            /* azul-marinho — cor de destaque principal */
  --navy-d:#0a2144;
  --navy-bg:rgba(14,44,88,.08);
  --brass:#96733c;           /* latao acobreado — realce secundario, discreto */
  --brass-bg:rgba(150,115,60,.10);
  --green:#25d366;
  --green-d:#1eb955;
  --serif:Georgia,'Times New Roman',serif;
  --sans:'Segoe UI',system-ui,-apple-system,'Helvetica Neue',Arial,sans-serif;
  --radius:16px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:var(--sans);color:var(--ink);background:var(--bg);
  line-height:1.7;overflow-x:hidden;-webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font-family:inherit}
::selection{background:var(--navy);color:#fff}

.container{max-width:1180px;margin:0 auto;padding:0 26px}
section{padding:96px 0;background:var(--bg)}
#produtos{background:var(--bg)}
.steps{background:var(--bg-warm)}
.visita{background:var(--bg)}
#sobre{background:var(--bg-alt)}
#galeria{background:var(--bg)}
.cta-band{background:var(--bg-alt)}
section[id],footer[id]{scroll-margin-top:90px}
.center-cta{text-align:center;margin-top:56px}

/* ---------- ANIMAÇÃO REVEAL ---------- */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s cubic-bezier(.2,.7,.2,1)}
.reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}}

/* ---------- BOTÕES ---------- */
.btn-green{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--green);color:#06210f;font-weight:600;font-size:1rem;
  padding:16px 32px;border-radius:50px;transition:.25s;cursor:pointer;
  box-shadow:0 10px 26px rgba(37,211,102,.22);
}
.btn-green:hover{background:var(--green-d);transform:translateY(-3px);box-shadow:0 14px 32px rgba(37,211,102,.3)}
.btn-green svg{width:22px;height:22px;fill:#06210f}
.btn-pill{padding:13px 26px;font-size:.92rem}
.btn-navy{
  display:inline-flex;align-items:center;gap:10px;
  background:transparent;color:var(--navy);border:1px solid var(--navy);
  font-weight:600;letter-spacing:1.4px;text-transform:uppercase;font-size:.86rem;
  padding:16px 36px;border-radius:50px;transition:.25s;cursor:pointer;
}
.btn-navy:hover{background:var(--navy);color:#fff;transform:translateY(-3px)}
.btn-navy svg{width:19px;height:19px;fill:currentColor}

/* ---------- HEADER ---------- */
header.nav{
  position:fixed;top:0;left:0;right:0;z-index:500;
  background:rgba(255,255,255,.92);backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:18px;height:82px}
.nav-logo img{height:52px;width:auto}
.nav-links{display:flex;gap:26px;list-style:none}
.nav-links a{color:var(--muted);font-weight:500;font-size:.93rem;transition:.2s}
.nav-links a:hover{color:var(--navy)}
.nav-toggle{display:none;background:none;border:0;cursor:pointer;padding:6px;z-index:520}
.nav-toggle span{display:block;width:26px;height:2px;background:var(--ink);margin:6px 0;transition:.3s}
.nav-toggle.open span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

/* ---------- TÍTULOS ---------- */
.eyebrow{
  color:var(--brass);font-weight:600;letter-spacing:3px;text-transform:uppercase;
  font-size:.76rem;margin-bottom:16px;line-height:1.4;display:flex;align-items:center;gap:10px;
}
.eyebrow .rule{width:26px;height:2px;background:var(--brass);display:inline-block}
h2.title{
  font-family:var(--serif);font-size:2.9rem;font-weight:600;
  color:var(--ink);line-height:1.15;letter-spacing:-.5px;
}
h2.title .navy{color:var(--navy)}
.title-wrap{text-align:center;max-width:720px;margin:0 auto 64px;position:relative}
.title-wrap p{color:var(--muted);max-width:620px;margin:28px auto 0;font-size:1.02rem}
.title-wrap::after{content:'';display:block;width:56px;height:3px;border-radius:2px;
  background:var(--navy);margin:18px auto 0}

/* ---------- HERO ---------- */
.hero{
  position:relative;padding:150px 0 0;background:var(--bg);overflow:hidden;
}
.hero-grid{
  display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center;
  padding-bottom:88px;
}
.hero-content{max-width:560px}
.badge{
  display:inline-flex;align-items:center;gap:9px;
  background:var(--navy-bg);border:1px solid var(--line-warm);
  border-radius:50px;padding:9px 18px;
  font-size:.84rem;color:var(--navy);font-weight:600;margin-bottom:28px;
  letter-spacing:.3px;
}
.badge .pin{width:16px;height:16px;flex:0 0 auto;fill:var(--navy)}
.hero h1{
  font-family:var(--serif);font-size:3.5rem;font-weight:600;line-height:1.12;
  color:var(--ink);letter-spacing:-1px;margin-bottom:26px;
}
.hero h1 .navy{color:var(--navy)}
.hero p.lead{
  font-size:1.12rem;color:var(--muted);max-width:520px;margin-bottom:34px;line-height:1.75;
}
.hero-checks{display:flex;flex-direction:column;gap:14px;margin-bottom:38px}
.hero-check{display:flex;align-items:center;gap:12px;font-weight:600;color:var(--ink);font-size:.98rem}
.hero-check svg{width:20px;height:20px;fill:var(--navy);flex:0 0 auto}
.hero-cities{margin-top:26px;font-size:.86rem;color:var(--muted)}
.hero-cities b{color:var(--ink);font-weight:600}

.hero-media{position:relative}
.hero-media .frame{
  border-radius:22px;overflow:hidden;box-shadow:0 30px 70px rgba(14,32,64,.22);
  border:1px solid var(--line);
}
.hero-media img{width:100%;height:520px;object-fit:cover}
.hero-chip{
  position:absolute;left:-22px;bottom:-22px;background:#fff;border-radius:16px;
  padding:18px 24px;box-shadow:0 18px 40px rgba(14,32,64,.20);
  display:flex;align-items:center;gap:14px;border:1px solid var(--line);
  max-width:260px;
}
.hero-chip .n{font-family:var(--serif);font-size:2rem;font-weight:700;color:var(--navy);line-height:1}
.hero-chip .t{font-size:.78rem;color:var(--muted);line-height:1.35;font-weight:600;text-transform:uppercase;letter-spacing:.4px}

/* ---------- FAIXA DE DIFERENCIAIS ---------- */
.trust-bar{background:var(--navy);padding:0}
.trust-inner{
  display:flex;flex-wrap:wrap;justify-content:center;gap:14px 44px;
  padding:26px 0;
}
.trust-item{display:flex;align-items:center;gap:12px;color:#fff;font-size:.92rem;font-weight:600}
.trust-item svg{width:20px;height:20px;fill:#cdd8e8;flex:0 0 auto}

/* ---------- PRODUTOS ---------- */
.grid-serv{display:flex;flex-wrap:wrap;justify-content:center;gap:26px}
.grid-serv .card-serv{scroll-margin-top:120px}
.card-serv{
  flex:0 1 calc((100% - 52px)/3);
  background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;transition:.3s;
}
.card-serv:hover{transform:translateY(-6px);border-color:var(--navy);box-shadow:0 18px 40px rgba(14,32,64,.14)}
.card-serv img{width:100%;height:240px;object-fit:cover;transition:.5s}
.card-serv:hover img{transform:scale(1.04)}
.card-serv .body{padding:30px 26px 32px;background:var(--card)}
.card-serv h3{font-family:var(--serif);font-size:1.4rem;font-weight:600;color:var(--ink);margin-bottom:12px}
.card-serv p{font-size:.93rem;color:var(--muted);line-height:1.65}
#produtos .card-serv{box-shadow:0 1px 2px rgba(14,32,64,.04),0 8px 24px rgba(14,32,64,.06)}
#produtos .card-serv:hover{box-shadow:0 4px 8px rgba(14,32,64,.06),0 16px 40px rgba(14,32,64,.10)}

/* ---------- 3 PASSOS ---------- */
.grid-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;position:relative}
.step{
  background:var(--card-warm);border:1px solid var(--line-warm);border-radius:var(--radius);
  padding:44px 30px;text-align:center;transition:.3s;position:relative;
}
.step:hover{border-color:var(--navy)}
.step .ic{
  width:64px;height:64px;margin:0 auto 24px;border-radius:50%;
  background:var(--navy-bg);display:flex;align-items:center;justify-content:center;
}
.step .ic svg{width:28px;height:28px;fill:var(--navy)}
.step .num{
  display:block;font-size:.74rem;letter-spacing:2.5px;text-transform:uppercase;
  color:var(--brass);font-weight:600;
}
.step h3{font-family:var(--serif);font-size:1.45rem;font-weight:600;color:var(--ink);margin:10px 0 14px}
.step p{font-size:.96rem;color:var(--muted);line-height:1.7}

/* ---------- VISITA TÉCNICA ---------- */
.vt-card{
  max-width:980px;margin:0 auto;background:var(--card);
  border:1px solid var(--line);border-radius:22px;padding:56px 50px;
  box-shadow:0 1px 2px rgba(14,32,64,.04),0 8px 24px rgba(14,32,64,.06);
}
.vt-head{text-align:center;max-width:620px;margin:0 auto 48px}
.vt-badge{
  display:inline-flex;align-items:center;gap:8px;
  border:1px solid var(--navy);color:var(--navy);border-radius:50px;padding:7px 18px;
  font-weight:600;letter-spacing:2px;text-transform:uppercase;font-size:.72rem;
}
.vt-badge svg{width:16px;height:16px;fill:var(--navy)}
.vt-head h2{font-family:var(--serif);font-size:3.2rem;font-weight:600;color:var(--ink);margin:24px 0 0;line-height:1.05}
.vt-rule{width:60px;height:2px;background:var(--navy);margin:28px auto}
.vt-head p{color:var(--muted)}
.vt-head p b{color:var(--ink);font-weight:600}
.vt-list{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-bottom:48px}
.vt-item{display:flex;gap:18px;align-items:flex-start;padding:20px;border-radius:14px;transition:.25s}
.vt-item:hover{background:var(--navy-bg)}
.vt-ic{
  flex:0 0 52px;width:52px;height:52px;border-radius:50%;background:var(--navy-bg);
  display:flex;align-items:center;justify-content:center;
}
.vt-ic svg{width:24px;height:24px;fill:var(--navy)}
.vt-item h3{font-family:var(--serif);font-size:1.15rem;font-weight:600;color:var(--ink);margin:2px 0 8px}
.vt-item p{font-size:.92rem;color:var(--muted);line-height:1.6}
.vt-cta{text-align:center}

/* ---------- SOBRE ---------- */
.about{display:grid;grid-template-columns:1.1fr 1fr;gap:64px;align-items:center}
.about-img{position:relative}
.about-img .frame{border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);
  box-shadow:0 20px 50px rgba(14,32,64,.14)}
.about-img img{height:480px;width:100%;object-fit:cover}
.about-stat{
  position:absolute;right:-24px;top:-24px;background:var(--navy);color:#fff;
  border-radius:18px;padding:22px 26px;text-align:center;min-width:126px;
  box-shadow:0 18px 40px rgba(14,32,64,.28);
}
.about-stat .n{font-family:var(--serif);font-size:2.6rem;font-weight:700;line-height:1}
.about-stat .t{font-size:.72rem;letter-spacing:1.2px;text-transform:uppercase;margin-top:6px;color:#cdd8e8;font-weight:600}
.about-txt h2{font-family:var(--serif);font-size:2.7rem;font-weight:600;color:var(--ink);line-height:1.15;margin-bottom:26px}
.about-txt p{color:var(--muted);margin-bottom:18px;line-height:1.8}
.tag-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:26px}
.tag{
  display:inline-flex;align-items:center;gap:8px;background:var(--brass-bg);color:var(--brass);
  border:1px solid var(--line-warm);border-radius:50px;padding:8px 16px;font-size:.82rem;font-weight:600;
}

/* ---------- GALERIA DE FOTOS (MOSAICO) ---------- */
.grid-gal{
  display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:170px;gap:16px;
}
.gal-item{
  border-radius:14px;overflow:hidden;cursor:pointer;position:relative;
  border:1px solid var(--line);background:var(--card);padding:0;width:100%;display:block;
  box-shadow:0 1px 2px rgba(14,32,64,.04),0 8px 24px rgba(14,32,64,.06);
}
.gal-item.big{grid-column:span 2;grid-row:span 2}
.gal-item img{width:100%;height:100%;object-fit:cover;transition:.45s}
.gal-item:hover img{transform:scale(1.06)}
.gal-item::after{
  content:'+';position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  font-size:2.2rem;color:#fff;background:linear-gradient(180deg,rgba(14,32,64,0) 0%,rgba(14,32,64,.62) 100%);opacity:0;transition:.3s;
}
.gal-item:hover::after,.gal-item:focus-visible::after{opacity:1}

/* ---------- CTA BAND ---------- */
.cta-band{
  background:var(--bg-alt);text-align:center;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
}
.cta-band h2{
  font-family:var(--serif);font-size:2.4rem;font-weight:600;color:var(--ink);
  line-height:1.25;max-width:800px;margin:0 auto 36px;
}
.cta-band h2 .navy{color:var(--navy)}

/* ---------- RODAPÉ ---------- */
footer{background:var(--navy-d);padding:86px 0 0;color:#aab6c8}
.foot-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr;gap:50px;padding-bottom:56px}
.foot-brand img{height:60px;width:auto;margin-bottom:24px;filter:brightness(0) invert(1)}
.foot-brand p{color:#aab6c8;max-width:340px;line-height:1.8}
.foot-col h4{
  font-size:.76rem;letter-spacing:2.5px;text-transform:uppercase;
  color:#cdb888;margin-bottom:24px;font-weight:600;
}
.foot-col a,.foot-col p{display:block;color:#aab6c8;margin-bottom:14px;transition:.2s}
.foot-col a:hover{color:#fff}
.foot-bottom{border-top:1px solid rgba(255,255,255,.12);padding:26px 0;text-align:center;font-size:.8rem;color:#8291a8}

/* ---------- LIGHTBOX ---------- */
.lb{position:fixed;inset:0;background:rgba(6,10,18,.97);display:none;align-items:center;justify-content:center;z-index:999;padding:30px}
.lb.open{display:flex}
.lb img{max-width:90%;max-height:88vh;border-radius:10px;box-shadow:0 0 50px rgba(0,0,0,.7)}
.lb .x{position:absolute;top:20px;right:26px;font-size:2.4rem;line-height:1;color:#fff;background:none;border:0;cursor:pointer}
.lb .nav-arrow{position:absolute;top:50%;transform:translateY(-50%);font-size:2.6rem;line-height:1;color:#cdd8e8;background:none;border:0;cursor:pointer;user-select:none;padding:10px 18px}
.lb .prev{left:6px}.lb .next{right:6px}

/* ---------- WHATSAPP FLUTUANTE ---------- */
.float-wpp{
  position:fixed;bottom:26px;right:26px;width:60px;height:60px;border-radius:50%;
  background:var(--green);display:flex;align-items:center;justify-content:center;
  z-index:600;box-shadow:0 8px 22px rgba(37,211,102,.4);animation:pulse 2.4s infinite;
}
.float-wpp svg{width:31px;height:31px;fill:#06210f}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(37,211,102,.45)}70%{box-shadow:0 0 0 18px rgba(37,211,102,0)}100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}}
@media(prefers-reduced-motion:reduce){.float-wpp{animation:none}}

/* ---------- INDICADOR DE ROLAGEM ---------- */
.hero-scroll{
  display:none;position:absolute;left:50%;bottom:20px;transform:translateX(-50%);
  width:44px;height:44px;border-radius:50%;background:var(--navy);color:#fff;
  align-items:center;justify-content:center;box-shadow:0 6px 18px rgba(14,32,64,.3);
  animation:heroBounce 1.8s ease-in-out infinite;z-index:3;cursor:pointer;
}
.hero-scroll svg{width:22px;height:22px;stroke:#fff;fill:none}
@keyframes heroBounce{
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(7px)}
}
@media(prefers-reduced-motion:reduce){.hero-scroll{animation:none}}

/* ---------- RESPONSIVO ---------- */
@media(max-width:1080px){
  .nav-links{gap:18px}
  .nav-links a{font-size:.88rem}
  .hero h1{font-size:3.1rem}
}
@media(max-width:980px){
  .nav-links{
    position:fixed;top:82px;left:0;right:0;background:var(--bg);
    flex-direction:column;gap:0;padding:8px 26px 20px;display:none;
    border-bottom:1px solid var(--line);box-shadow:0 18px 30px rgba(14,32,64,.16);
    max-height:calc(100vh - 82px);overflow-y:auto;
  }
  .nav-links.open{display:flex}
  .nav-links li{list-style:none}
  .nav-links a{display:block;padding:15px 4px;font-size:1.02rem;border-bottom:1px solid var(--line);color:var(--ink)}
  .nav-links li:last-child a{border-bottom:0}
  .nav-toggle{display:block}
  .nav .btn-green{display:none}
  section{padding:76px 0}
  .grid-serv .card-serv{flex:0 1 calc((100% - 26px)/2)}
  .grid-steps{grid-template-columns:1fr}
  .vt-list{grid-template-columns:1fr}
  .vt-card{padding:40px 26px}
  .vt-head h2{font-size:2.6rem}
  .about{grid-template-columns:1fr;gap:70px}
  .about-img img{height:360px}
  .about-stat{right:16px;top:-20px}
  .grid-gal{grid-template-columns:repeat(3,1fr);grid-auto-rows:140px}
  .foot-grid{grid-template-columns:1fr;gap:38px}
  h2.title{font-size:2.3rem}

  .hero{padding-top:112px}
  .hero-grid{grid-template-columns:1fr;gap:44px;padding-bottom:64px}
  .hero-content{max-width:none;order:1}
  .hero-media{order:2}
  .hero-media img{height:340px}
  .hero-chip{left:16px;bottom:-20px;padding:14px 18px}
}
@media(max-width:760px){
  .nav-logo img{height:42px}
}
@media(max-width:560px){
  .container{padding:0 18px}
  section{padding:60px 0}
  .grid-serv .card-serv{flex:0 1 100%}
  .grid-gal{grid-template-columns:repeat(2,1fr);gap:12px;grid-auto-rows:130px}
  .gal-item.big{grid-column:span 2;grid-row:span 2}
  .title-wrap{margin-bottom:44px}
  .title-wrap p{margin-top:28px}
  .about-txt h2{font-size:2.1rem}
  .about-img img{height:280px}
  .cta-band h2{font-size:1.95rem}
  .vt-head h2{font-size:2.4rem}
  .vt-item{padding:16px}
  .step{padding:36px 24px}
  .card-serv img{height:210px}
  footer{padding-top:64px}
  .btn-green,.btn-navy{min-height:48px}
  .lb .x{min-width:48px;min-height:48px;top:12px;right:14px}
  .lb .nav-arrow{min-width:48px;min-height:48px}
  .foot-col a{padding:4px 0;display:inline-block;min-height:32px}
  .lb{padding:14px}
  .lb img{max-width:100%;max-height:82vh}
  .trust-inner{gap:12px 24px;padding:20px 0}
  .trust-item{font-size:.82rem}
}
@media(max-width:430px){
  .hero h1{font-size:2.3rem}
  h2.title{font-size:1.9rem}
  .about-txt h2{font-size:1.85rem}
  .cta-band h2{font-size:1.65rem}
  .vt-head h2{font-size:2.05rem}
  .vt-card{padding:32px 20px}
  .btn-green,.btn-navy{padding:14px 22px;font-size:.88rem}
  .float-wpp{width:54px;height:54px;bottom:18px;right:18px}
  .float-wpp svg{width:28px;height:28px}
  .lb .nav-arrow{font-size:2.1rem;padding:8px 10px}
}

/* ---------- HERO MOBILE (badge legivel, CTA de largura total) ---------- */
@media(max-width:760px){
  .badge{
    border-radius:14px;padding:12px 20px;font-size:1rem;line-height:1.35;
    max-width:max-content;margin-bottom:24px;
  }
  .badge .pin{width:20px;height:20px}
  .hero h1{font-size:clamp(1.9rem,7.6vw,2.4rem);line-height:1.16;letter-spacing:-.01em;margin-bottom:18px;text-wrap:balance}
  .hero p.lead{font-size:1.04rem;line-height:1.62;margin-bottom:28px}
  .hero-checks{margin-bottom:30px}
  .hero .btn-green{
    display:flex;width:100%;justify-content:center;
    padding:20px 24px;font-size:1.1rem;min-height:62px;border-radius:16px;
  }
  .hero .btn-green svg{width:25px;height:25px}
}
@media(max-width:430px){
  .hero h1{font-size:2.05rem}
  .badge{font-size:.94rem;padding:11px 18px}
  .hero p.lead{font-size:1rem}
  .hero .btn-green{padding:19px 20px;font-size:1.06rem;min-height:60px}
}
