/* Commercial PRO v3 */
:root{
  --bg:#ffffff;
  --muted:#f6f7fb;
  --text:#0f172a;
  --sub:#334155;
  --line:#e5e7eb;
  --blue:#1e4ed8;
  --red:#dc2626;
  --shadow: 0 12px 30px rgba(15,23,42,.08);
  --radius: 18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.hidden{display:none}

.container{width:min(1120px, 92vw); margin:0 auto;}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; gap:16px;
}
.brand__logo{height:44px; width:auto;}

.nav{display:flex; gap:14px; align-items:center; flex-wrap:wrap; justify-content:center;}
.nav__link{
  color:var(--sub); font-weight:750;
  padding:8px 10px; border-radius:12px;
}
.nav__link:hover{background:var(--muted); color:var(--text);}

.header__actions{display:flex; align-items:center; gap:12px;}
.lang{
  display:flex; gap:6px; padding:6px;
  border:1px solid var(--line); border-radius:999px; background:#fff;
}
.lang__btn{
  border:0; background:transparent;
  padding:6px 9px; border-radius:999px; cursor:pointer;
  font-weight:900; color:var(--sub);
}
.lang__btn.isActive{background:var(--muted); color:var(--text);}

.menuBtn{
  display:none;
  border:1px solid var(--line);
  background:#fff; border-radius:12px;
  padding:8px 10px; cursor:pointer;
}
.mobileNav{border-top:1px solid var(--line); background:#fff;}
.mobileNav__inner{display:flex; flex-direction:column; padding:10px 0 16px; gap:8px;}
.mobileNav__link{
  padding:12px 10px; border-radius:12px;
  font-weight:800; color:var(--sub);
}
.mobileNav__link:hover{background:var(--muted); color:var(--text);}

.hero{padding:44px 0 28px;}
.hero__inner{
  display:grid; grid-template-columns: 1.05fr .95fr;
  gap:22px; align-items:center;
}
.hero__title{
  margin:0 0 10px;
  font-size: clamp(30px, 4vw, 50px);
  line-height:1.06; letter-spacing:-.02em;
}
.accent{color:var(--red);}
.hero__subtitle{
  margin:0 0 14px; color:var(--sub);
  font-size:17px; line-height:1.6; max-width:60ch;
}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin:12px 0 12px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  border:1px solid var(--line); font-weight:950; cursor:pointer;
}
.btn--primary{
  background:linear-gradient(135deg, var(--red), #ef4444);
  border-color:transparent; color:#fff;
  box-shadow: 0 10px 22px rgba(220,38,38,.18);
}
.btn--primary:hover{filter:saturate(1.05) brightness(.98);}
.btn--ghost{background:#fff; color:var(--text);}
.btn--ghost:hover{background:var(--muted);}
.btn--outline{background:#fff; color:var(--text);}
.btn--outline:hover{background:var(--muted);}

.badges{display:flex; flex-wrap:wrap; gap:10px;}
.badge{
  padding:8px 10px; border:1px solid var(--line);
  border-radius:999px; color:var(--sub);
  font-weight:800; background:#fff;
}

.hero__visual{display:flex; justify-content:flex-end;}
.heroImg{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius: var(--radius);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

.section{padding:44px 0;}
.section--muted{
  background:var(--muted);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.h2{margin:0 0 10px; font-size: clamp(24px, 2.6vw, 34px); letter-spacing:-.02em;}
.h2--small{font-size: clamp(20px, 2.2vw, 28px);}
.h3{margin:0 0 10px; font-size:20px;}
.p{margin:0 0 10px; color:var(--sub); line-height:1.7; font-size:16px;}
.center{text-align:center;}
.max{max-width:70ch; margin-left:auto; margin-right:auto;}

.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:26px;}
.grid2--center{align-items:center;}
.aboutText{max-width:62ch;}

.cardImage{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
}
.cardImage--fixed img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.ticks{margin-top:14px; display:flex; flex-direction:column; gap:10px;}
.tick{display:flex; align-items:flex-start; gap:10px; color:var(--sub); font-weight:800;}
.check{color:var(--blue); font-weight:1000;}

.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin-top:18px;}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.list{margin:12px 0 0 18px; color:var(--sub); line-height:1.65;}

.strip{
  padding:22px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
}
.strip__inner{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;}

.contactBox{
  margin-top:12px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
  background:#fff;
  box-shadow: var(--shadow);
}
.contactRow{
  display:flex; justify-content:space-between;
  gap:12px; padding:10px 6px;
  border-bottom:1px solid var(--line);
}
.contactRow:last-child{border-bottom:0;}
.contactLabel{color:var(--sub); font-weight:950;}
.contactValue{color:var(--text); font-weight:850;}

.contactActions{display:flex; gap:10px; flex-wrap:wrap; margin:12px 0 0;}

.mapCard{
  margin-top:12px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#fff;
}
.mapCard iframe{width:100%; height:240px; border:0; display:block;}

.form{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  background:#fff;
  box-shadow: var(--shadow);
}
.label{display:flex; flex-direction:column; gap:8px; margin-bottom:12px; font-weight:950; color:var(--sub);}
.input,.textarea{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 12px;
  font:inherit;
  outline:none;
  background:#fff;
}
.input:focus,.textarea:focus{
  border-color: rgba(30,78,216,.35);
  box-shadow: 0 0 0 4px rgba(30,78,216,.12);
}

.refCard{
  margin-top:16px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:14px;
  overflow:hidden;
}
.refImage{width:100%; height:auto; display:block; border-radius:12px;}

.fine{color:#64748b; font-size:13px; line-height:1.6; margin-top:10px;}
.ok{color:#16a34a;}
.err{color:#dc2626;}

.footer{border-top:1px solid var(--line); padding:18px 0; background:#fff;}
.footer__inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; color:var(--sub);}
.footer__link{font-weight:950;}
.footer__link:hover{text-decoration:underline;}
.footer__sep{margin:0 8px;}

.whatsapp{
  position:fixed;
  right:18px; bottom:18px;
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
  z-index:60;
}
.whatsapp:hover{background:var(--muted);}
.whatsapp__dot{
  width:10px; height:10px; border-radius:50%;
  background:#22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.15);
}
.whatsapp__text{font-weight:950; color:var(--text);}

@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr;}
  .hero__visual{justify-content:flex-start;}
  .heroImg{height:260px;}
  .grid2{grid-template-columns:1fr;}
  .cards{grid-template-columns:1fr;}
  .nav{display:none;}
  .menuBtn{display:inline-flex;}
  .cardImage--fixed img{height:240px;}
}
