html{scroll-behavior:smooth}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:#ffffff;
  color:#2a1e15;
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
.container{width:min(1140px,calc(100% - 32px));margin:0 auto}
.small{width:min(880px,calc(100% - 32px));margin:0 auto}

:root{
  --accent:#8b5a2b;
  --accent2:#c98b4b;
  --soft:#f8f3ed;
  --soft2:#fff8f1;
  --text:#2a1e15;
  --muted:#69584a;
  --line:rgba(42,30,21,.10);
  --shadow:0 18px 40px rgba(42,30,21,.10);
  --radius:24px;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand,.top-link{font-weight:700}
.top-link{color:var(--accent)}

.hero{
  position:relative;
  overflow:hidden;
  padding:88px 0 48px;
  background:
    radial-gradient(circle at top left, rgba(201,139,75,.14), transparent 36%),
    linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
}
.hero::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  background:rgba(139,90,43,.08);
  right:-80px;
  top:-40px;
}
.hero::after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(201,139,75,.08);
  left:-90px;
  bottom:-50px;
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.2fr .9fr;
  gap:32px;
  align-items:center;
}
.tag{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:var(--soft);
  color:var(--accent);
  font-size:.9rem;
  font-weight:800;
}
.hero h1{
  margin:18px 0 14px;
  font-size:clamp(2.4rem,6vw,4.8rem);
  line-height:.97;
  letter-spacing:-.04em;
  max-width:10ch;
}
.lead{
  margin:0 0 26px;
  max-width:640px;
  color:var(--muted);
  font-size:1.1rem;
}
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:22px;
}
.btn{
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}
.primary{
  color:#fff;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow:0 12px 24px rgba(139,90,43,.22);
}
.secondary{
  background:#fff;
  border:1px solid var(--line);
}
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.chips span{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
  font-weight:700;
}
.hero-card{display:flex;justify-content:center}
.card{
  width:min(100%,460px);
  padding:32px;
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.95)),
    linear-gradient(135deg, #ead7c1, #f6ece2);
  border:1px solid rgba(139,90,43,.15);
  box-shadow:var(--shadow);
  position:relative;
}
.card::before{
  content:"";
  position:absolute;
  inset:12px;
  border-radius:22px;
  border:1px dashed rgba(139,90,43,.22);
  pointer-events:none;
}
.card-tag{
  display:inline-block;
  margin-bottom:14px;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.82rem;
  font-weight:800;
}
.card h2{margin:0 0 10px;font-size:clamp(1.8rem,4vw,2.5rem)}
.card p{margin:0 0 22px;color:var(--muted)}
.contact-box{
  padding:18px 20px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.85);
}
.contact-box strong{display:block;margin-bottom:4px}
.contact-box a{color:var(--accent);font-weight:800;font-size:1.1rem}

.section{padding:86px 0}
.heading{margin-bottom:28px}
.heading h2{
  margin:14px 0 10px;
  font-size:clamp(1.9rem,4vw,3rem);
  line-height:1.05;
}
.heading p,.center-text,.service p,.step p,.highlight-wrap p,.contact-card p,.footer p{color:var(--muted)}
.center{text-align:center}
.center-text{text-align:center;font-size:1.05rem}
.intro{background:linear-gradient(180deg,#ffffff 0%,#fffaf5 100%)}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:30px;
}
.service{
  padding:28px;
  border-radius:24px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#ffffff,#fffaf6);
  box-shadow:0 10px 26px rgba(42,30,21,.05);
}
.service.accent{
  background:linear-gradient(135deg,#f4e4d4,#fff8f2);
}
.icon{
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:var(--soft);
  color:var(--accent);
  font-size:1.3rem;
  font-weight:900;
  margin-bottom:18px;
}
.service h3,.step h3{margin:0 0 8px}

.highlight{
  background:linear-gradient(180deg,#fffaf5 0%,#ffffff 100%);
}
.highlight-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}
.highlight-wrap h2{
  margin:14px 0 10px;
  font-size:clamp(1.9rem,4vw,3rem);
  line-height:1.05;
}
.mini-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.mini-box{
  padding:22px;
  border-radius:22px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 10px 24px rgba(42,30,21,.05);
  font-weight:800;
}

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:30px;
}
.step{
  padding:30px;
  border-radius:24px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fff,#fff9f4);
  box-shadow:0 10px 26px rgba(42,30,21,.05);
}
.num{
  display:inline-block;
  margin-bottom:16px;
  color:var(--accent);
  font-weight:900;
  letter-spacing:.08em;
}

.contact{
  background:linear-gradient(180deg,#fffaf5 0%,#ffffff 100%);
}
.contact-card{
  text-align:center;
  padding:48px 24px;
  border-radius:32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.95)),
    linear-gradient(135deg, #ead5bc, #f8ede4);
  border:1px solid rgba(139,90,43,.15);
  box-shadow:var(--shadow);
}
.contact-card h2{
  margin:14px 0 6px;
  font-size:clamp(2rem,4vw,3.1rem);
}
.phone{
  display:inline-block;
  margin-top:6px;
  color:var(--accent);
  font-weight:900;
  font-size:1.2rem;
}
.center-actions{justify-content:center;margin-top:18px}

.footer{
  border-top:1px solid var(--line);
  background:#fff;
  padding:28px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}
.footer p{margin:.2rem 0 0}

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  min-height:54px;
  padding:0 18px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:800;
  background:linear-gradient(135deg,#25d366,#16b556);
  box-shadow:0 16px 28px rgba(16,105,53,.26);
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .55s ease, transform .55s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width:980px){
  .hero-grid,.grid,.steps,.highlight-wrap{grid-template-columns:1fr}
  .hero h1{max-width:100%}
  .mini-grid{grid-template-columns:1fr 1fr}
  .footer-inner{flex-direction:column;align-items:flex-start}
}

@media (max-width:640px){
  .topbar-inner{flex-direction:column;justify-content:center;padding:12px 0}
  .section{padding:72px 0}
  .mini-grid{grid-template-columns:1fr}
  .actions{flex-direction:column}
  .btn,.whatsapp-float{width:100%}
  .chips span{width:100%;text-align:center}
}
