:root{
  --bg:#0b1220;
  --panel:#0f1a2b;
  --panel2:#0c1626;
  --text:#e5e7eb;
  --muted:#9aa4b2;
  --accent:#f59e0b;
  --accent2:#fbbf24;
  --ok:#22c55e;
  --danger:#ef4444;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 22px;
  --max: 1160px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(245,158,11,.18), transparent 60%),
              radial-gradient(1000px 500px at 90% 10%, rgba(59,130,246,.14), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{max-width:var(--max);margin:0 auto;padding:0 18px}
.section{padding:72px 0}
.section.sm{padding:44px 0}
.kicker{letter-spacing:.18em;text-transform:uppercase;color:var(--muted);font-size:12px}
h1,h2,h3{line-height:1.15;margin:0 0 12px}
h1{font-size:46px;letter-spacing:-.02em}
h2{font-size:32px}
h3{font-size:20px}
p{margin:0 0 14px;color:rgba(229,231,235,.92)}
small,.muted{color:var(--muted)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:999px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#0b1220;font-weight:800;
  box-shadow:0 10px 28px rgba(245,158,11,.22);
  border:1px solid rgba(255,255,255,.12);
  cursor:pointer;
  min-height:44px;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn.ghost{
  background:transparent;color:var(--text);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:none;
}
.btn.dark{
  background:#0b1220;color:var(--text);
  border:1px solid rgba(255,255,255,.12);
}

.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(15,26,43,.62);
  color:rgba(229,231,235,.95);
  font-size:12px;
}

.topbar{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(16px);
  background: rgba(11,18,32,.62);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navwrap{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px}
.brand img{width:186px;height:auto;display:block}
.nav{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px;
  border-radius:999px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 10px 30px rgba(0,0,0,.25);
}
.nav a{
  position:relative;
  padding:10px 14px;
  border-radius:999px;
  color:rgba(229,231,235,.92);
  border:1px solid transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  line-height:1.15;
  min-height:44px;
  white-space:normal;
  font-weight:700;
  letter-spacing:.01em;
  transition:background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}
.nav a::after{
  content:"";
  position:absolute;
  left:14px; right:14px; bottom:6px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  opacity:0;
  transform:scaleX(.6);
  transition:opacity .2s ease, transform .2s ease;
}
.nav a:hover{
  background:rgba(15,26,43,.55);
  border-color:rgba(255,255,255,.12);
  transform:translateY(-1px);
}
.nav a.active{
  background:rgba(245,158,11,.10);
  border-color:rgba(245,158,11,.30);
  color:rgba(255,255,255,.98);
  box-shadow:0 10px 22px rgba(245,158,11,.12);
}
.nav a.active::after{
  opacity:1;
  transform:scaleX(1);
}
.nav-actions{display:flex;align-items:center;gap:10px}
.menu-btn{
  display:none;
  width:42px;height:42px;border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(15,26,43,.55);
  color:var(--text);
}

.hero{
  position:relative;overflow:hidden;border-bottom:1px solid rgba(255,255,255,.06);
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:url("../img/hero.jpg") center/cover no-repeat;
  opacity:.18;
}
.hero::after{
  content:"";position:absolute;inset:0;
  background: radial-gradient(800px 380px at 20% 10%, rgba(245,158,11,.32), transparent 60%),
              linear-gradient(to bottom, rgba(11,18,32,.15), rgba(11,18,32,.95));
}
.hero .content{
  position:relative;z-index:2;
  padding:74px 0 52px;
  display:grid;grid-template-columns: 1.2fr .8fr;gap:24px;
}
.hero .card{
  background:rgba(15,26,43,.55);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero .card-inner{padding:18px}
.hero .stats{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.stat{
  background:rgba(12,22,38,.6);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;padding:14px;
}
.stat b{font-size:22px}
.hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}
.hero-subtitle{font-size:16px;color:rgba(229,231,235,.92);max-width:58ch}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.card{
  background:rgba(17, 30, 50, .62); /* slightly brighter for separation */
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 10px 34px rgba(0,0,0,.18);
}
.card.soft{background:rgba(13, 23, 40, .58)}
.icon{
  width:44px;height:44px;border-radius:16px;
  display:grid;place-items:center;
  background:rgba(245,158,11,.12);
  border:1px solid rgba(245,158,11,.25);
  color:var(--accent2);
}

.split{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:center}
.split .media{
  border-radius:var(--radius);
  overflow:hidden;border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.split .media img{height:100%;width:100%;object-fit:cover;opacity:.92}
.list{margin:12px 0 0;padding:0;list-style:none;display:grid;gap:10px}
.list li{
  display:flex;gap:10px;align-items:flex-start;
  padding:10px 12px;border-radius:18px;
  background:rgba(12,22,38,.5);
  border:1px solid rgba(255,255,255,.08);
}
.list i{margin-top:2px;color:var(--accent2)}

.page-hero{padding:54px 0 20px;border-bottom:1px solid rgba(255,255,255,.06)}
.page-hero .wrap{display:flex;justify-content:space-between;gap:12px;align-items:flex-end;flex-wrap:wrap}
.breadcrumb{margin-top:10px;font-size:13px;color:var(--muted)}

.table{width:100%;border-collapse:separate;border-spacing:0 10px}
.table td,.table th{
  text-align:left;padding:14px 14px;
  background:rgba(15,26,43,.55);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.table th{color:rgba(229,231,235,.92);font-weight:800}
.table td:first-child,.table th:first-child{border-left:1px solid rgba(255,255,255,.08);border-radius:16px 0 0 16px}
.table td:last-child,.table th:last-child{border-right:1px solid rgba(255,255,255,.08);border-radius:0 16px 16px 0}

.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.gallery a{border-radius:18px;overflow:hidden;border:1px solid rgba(255,255,255,.10);background:rgba(15,26,43,.4)}
.gallery img{width:100%;height:180px;object-fit:cover;opacity:.92}
.gallery a:hover img{opacity:1;transform:scale(1.02)}

.form{display:grid;gap:12px}
.input{display:grid;gap:6px}
.input label{font-size:13px;color:rgba(229,231,235,.92)}
.input input,.input select,.input textarea{
  width:100%;padding:12px 12px;border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(12,22,38,.55);
  color:var(--text);
  outline:none;
}
.input textarea{min-height:110px;resize:vertical}
.input input:focus,.input textarea:focus,.input select:focus{
  border-color:rgba(245,158,11,.45);
  box-shadow:0 0 0 4px rgba(245,158,11,.12);
}

.alert{padding:12px 14px;border-radius:18px;border:1px solid rgba(255,255,255,.12);background:rgba(15,26,43,.55)}
.alert.ok{border-color:rgba(34,197,94,.35);background:rgba(34,197,94,.10)}
.alert.err{border-color:rgba(239,68,68,.35);background:rgba(239,68,68,.10)}

.footer{border-top:1px solid rgba(255,255,255,.08);background:rgba(8,13,24,.65)}
.footer .cols{display:grid;grid-template-columns: 1.4fr 1fr 1fr;gap:16px;padding:40px 0}
.footer a{color:rgba(229,231,235,.88)}
.footer a:hover{color:var(--accent2)}
.footer .bottom{
  padding:16px 0;border-top:1px solid rgba(255,255,255,.06);
  color:var(--muted);font-size:13px;
  display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;
}

.fab{position:fixed;right:16px;bottom:16px;z-index:80;display:grid;gap:10px}
.fab a{
  width:max-content;
  max-width:56px;                 /* collapsed state = icon only */
  display:flex;align-items:center;gap:10px;
  padding:10px;                   /* keeps a perfect pill around the icon */
  border-radius:999px;
  background:rgba(15,26,43,.82);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  overflow:hidden;
  transition:max-width .25s ease, transform .2s ease, padding .25s ease;
  font-family: inherit;           /* same as site */
}
.fab a:hover{
  max-width:260px;
  transform:translateY(-1px);
  padding:10px 14px;              /* add room for label on hover */
}
.fab i{
  width:36px;height:36px;          /* circle fully covered */
  border-radius:999px;
  display:grid;place-items:center;
  flex:0 0 36px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:var(--accent2);
}
.fab span{
  white-space:nowrap;
  color:rgba(229,231,235,.92);
  font-weight:700;
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing:0;
  text-transform:none;
  font-size:14px;
  opacity:0;
  transform:translateX(-6px);
  transition:opacity .2s ease, transform .2s ease;
}
.fab a:hover span{
  opacity:1;
  transform:translateX(0);
}
/* FAB icon accents */
.fab a:nth-child(1) i{ background:rgba(245,158,11,.14); border-color:rgba(245,158,11,.25); color:var(--accent2); }
.fab a:nth-child(2) i{ background:rgba(34,197,94,.14); border-color:rgba(34,197,94,.28); color:#22c55e; }
.fab a:nth-child(3) i{ background:rgba(59,130,246,.14); border-color:rgba(59,130,246,.28); color:#60a5fa; }

@media (max-width: 980px){
  h1{font-size:38px}
  .hero .content{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .nav{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px;
  border-radius:999px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 10px 30px rgba(0,0,0,.25);
}
  .nav.open{display:grid;gap:8px}
  .menu-btn{display:inline-grid;place-items:center}
  .footer .cols{grid-template-columns:1fr}
}

.fab-link i{
  width:20px;height:20px;display:grid;place-items:center;
  font-size:18px;
}
.fab-link{
  gap:12px;
}
.fab-link i{
  width:28px;height:28px;border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.fab-service i{ color: var(--accent2); border-color: rgba(245,158,11,.30); background: rgba(245,158,11,.10); }
.fab-phone i{ color: #93c5fd; border-color: rgba(147,197,253,.25); background: rgba(147,197,253,.08); }
.fab-whatsapp i{ color: #25D366; border-color: rgba(37,211,102,.25); background: rgba(37,211,102,.08); }

/* Top slider (index) */
.top-slider{padding:18px 0 6px}
.slider{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(15,26,43,.45);
  box-shadow: var(--shadow);
}
.slider .slides{position:relative;height:360px}
.slider .slide{
  position:absolute;inset:0;
  opacity:0;
  transform:scale(1.01);
  transition:opacity .55s ease, transform .75s ease;
}
.slider .slide.is-active{opacity:1;transform:scale(1)}
.slider img{width:100%;height:100%;object-fit:cover}
.slider::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(to bottom, rgba(11,18,32,.10), rgba(11,18,32,.55));
  pointer-events:none;
}
.slider-btn{
  position:absolute;top:50%;transform:translateY(-50%);
  width:44px;height:44px;border-radius:16px;
  display:grid;place-items:center;
  background:rgba(11,18,32,.55);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(229,231,235,.92);
  cursor:pointer;
  z-index:3;
}
.slider-btn:hover{background:rgba(15,26,43,.72)}
.slider-btn.prev{left:12px}
.slider-btn.next{right:12px}
.slider .dots{
  position:absolute;left:0;right:0;bottom:12px;
  display:flex;justify-content:center;gap:8px;
  z-index:3;
}
.slider .dot{
  width:10px;height:10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.10);
  cursor:pointer;
}
.slider .dot.is-active{
  width:22px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  border-color:rgba(245,158,11,.45);
}
@media (max-width: 980px){
  .slider .slides{height:240px}
  .slider-btn{display:none}
}


/* Card icon spacing improvements */
.card .icon{
  margin-bottom:14px; /* breathing room above titles */
}
.card .icon + h3{
  margin-top:2px;
}
