
:root{
  --orange:#E49A37;
  --orange-dark:#c77d1f;
  --black:#1D1B20;
  --muted:#6b6b6b;
  --light:#F7F7F7;
  --white:#ffffff;
  --purple:#9B3BB4;
  --border:#e9e9e9;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, Arial, Helvetica, sans-serif;
  color:var(--black);
  background:var(--white);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1160px,92%);margin:auto}
.topbar{
  background:var(--black);
  color:#fff;
  font-size:14px;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:8px 0;
  flex-wrap:wrap;
}
.nav{
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:50;
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}
.brand img{
  width:115px;
  height:auto;
  max-height:62px;
  object-fit:contain;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:20px;
  font-size:15px;
  font-weight:700;
}
.nav-links a:hover{color:var(--orange)}
.nav-actions{display:flex;gap:10px;align-items:center}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:999px;
  padding:12px 18px;
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
  white-space:nowrap;
}
.btn-orange{background:var(--orange);color:#fff}
.btn-orange:hover{background:var(--orange-dark);transform:translateY(-1px)}
.btn-dark{background:var(--black);color:#fff}
.btn-dark:hover{background:#000;transform:translateY(-1px)}
.btn-outline{border:1px solid var(--black);color:var(--black);background:#fff}
.btn-outline:hover{background:var(--black);color:#fff}
.mobile-toggle{display:none;background:none;border:none;font-size:28px;cursor:pointer}
.hero{
  padding:72px 0 42px;
  background:
    radial-gradient(circle at 85% 20%, rgba(228,154,55,.18), transparent 30%),
    linear-gradient(180deg,#fff 0%,#fff 72%,#f8f8f8 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:center;
}
.eyebrow{
  color:var(--orange);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:13px;
}
h1{
  font-size:clamp(38px,5vw,66px);
  line-height:1.02;
  margin:12px 0 18px;
  letter-spacing:-.04em;
}
.lead{
  font-size:19px;
  color:#444;
  max-width:650px;
}
.hero-card{
  background:var(--black);
  border-radius:30px;
  padding:28px;
  color:#fff;
  box-shadow:0 22px 60px rgba(0,0,0,.16);
}
.hero-card img{
  background:#fff;
  border-radius:22px;
  padding:12px;
  max-height:155px;
  width:auto;
  margin-bottom:20px;
}
.hero-card h2{font-size:32px;line-height:1.1;margin:0 0 8px}
.hero-card .tagline{color:var(--orange);font-weight:900}
.hero-buttons{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
.stats{
  padding:26px 0;
  background:var(--black);
  color:#fff;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.stat{
  padding:20px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  background:rgba(255,255,255,.04);
}
.stat strong{
  color:var(--orange);
  font-size:34px;
  display:block;
  line-height:1;
}
.section{padding:72px 0}
.section-light{background:var(--light)}
.section-title{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:30px;
}
.section-title h2{
  font-size:clamp(28px,4vw,44px);
  line-height:1.08;
  margin:0;
  letter-spacing:-.03em;
}
.section-title p{margin:0;color:var(--muted);max-width:560px}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:0 12px 35px rgba(0,0,0,.05);
}
.card h3{margin:0 0 8px;font-size:22px}
.card p{color:var(--muted);margin:0 0 16px}
.brand-feature{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:26px;
  align-items:center;
  background:var(--black);
  color:#fff;
  border-radius:34px;
  padding:32px;
  overflow:hidden;
}
.brand-feature h2{font-size:48px;margin:0;line-height:1}
.brand-feature .slogan{color:var(--orange);font-weight:900;font-size:22px;margin:10px 0 18px}
.pill-list{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.pill{
  background:#fff;
  color:var(--black);
  border-radius:999px;
  padding:9px 14px;
  font-weight:800;
  font-size:14px;
}
.brand-image{
  border-radius:28px;
  overflow:hidden;
  background:#fff;
}
.brand-image img{width:100%;height:460px;object-fit:cover}
.products{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.product{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:22px;
  min-height:150px;
}
.icon{
  width:46px;height:46px;border-radius:14px;background:#fff3e4;
  display:flex;align-items:center;justify-content:center;
  font-size:24px;margin-bottom:14px;
}
.branches{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.branch{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:22px;
}
.branch h3{margin:0 0 10px}
.branch ul{padding-left:20px;margin:0 0 16px;color:#555}
.tools-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.tool-card{
  background:#fff;
  border:1px solid var(--border);
  border-left:6px solid var(--orange);
  border-radius:20px;
  padding:22px;
}
.tool-card h3{margin:0 0 8px}
.order-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  background:#fff;
  border-radius:28px;
  padding:28px;
  border:1px solid var(--border);
}
.form input,.form textarea,.form select{
  width:100%;
  padding:14px 15px;
  border:1px solid #ddd;
  border-radius:14px;
  margin-bottom:12px;
  font:inherit;
}
.form textarea{min-height:115px;resize:vertical}
.footer{
  background:var(--black);
  color:#fff;
  padding:44px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:28px;
}
.footer img{width:130px;background:#fff;border-radius:14px;padding:8px;margin-bottom:12px}
.footer h4{color:var(--orange);margin:0 0 12px}
.footer a{display:block;color:#ddd;margin:7px 0}
.copy{border-top:1px solid rgba(255,255,255,.12);margin-top:28px;padding-top:18px;color:#aaa;font-size:14px}
.floating{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:80;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.floating a{
  color:#fff;
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
  box-shadow:0 8px 24px rgba(0,0,0,.22);
}
.float-whatsapp{background:#22c55e}
.float-mail{background:var(--orange)}
.lang{
  display:inline-flex;
  gap:7px;
  flex-wrap:wrap;
}
.lang button{
  border:1px solid #ddd;
  background:#fff;
  padding:7px 10px;
  border-radius:999px;
  cursor:pointer;
  font-weight:800;
}
.lang button.active{background:var(--orange);color:#fff;border-color:var(--orange)}
.page-hero{
  background:var(--black);
  color:#fff;
  padding:70px 0;
}
.page-hero h1{margin:0 0 12px}
.offer-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:30px;
  padding:28px;
}
.offer-card img{border-radius:24px;width:100%;max-height:620px;object-fit:cover}
.small-note{color:var(--muted);font-size:14px}
@media(max-width:980px){
  .hero-grid,.brand-feature,.order-box,.offer-card{grid-template-columns:1fr}
  .cards,.tools-grid{grid-template-columns:repeat(2,1fr)}
  .products,.branches{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:760px){
  .topbar{display:none}
  .nav-inner{padding:10px 0}
  .brand img{width:92px;max-height:50px}
  .mobile-toggle{display:block}
  .nav-links{
    position:absolute;
    top:72px;
    left:0;
    right:0;
    background:#fff;
    border-bottom:1px solid var(--border);
    padding:18px 4%;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }
  .nav-links.open{display:flex}
  .nav-actions{display:none}
  .mobile-staff-link{display:inline-flex!important}
  .hero{padding:42px 0 26px}
  .hero-card{padding:22px}
  .hero-card img{max-height:115px}
  .brand-image img{height:auto}
  .cards,.tools-grid,.products,.branches,.stats-grid,.footer-grid{grid-template-columns:1fr}
  .section{padding:50px 0}
  .section-title{display:block}
  .floating{right:12px;bottom:12px}
  .floating a{padding:10px 13px;font-size:13px}
}
.mobile-staff-link{display:none}
