:root{
  --bg0:#061426;
  --bg1:#071c33;
  --card: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.10);
  --text:#ecf4ff;
  --muted:#b8c8df;
  --accent:#2fd2ff;
  --accent2:#2b6cff;
  --good:#38d18b;
  --shadow: 0 22px 60px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 70% 10%, rgba(47,210,255,.14), transparent 55%),
    radial-gradient(900px 500px at 15% 20%, rgba(43,108,255,.18), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:1120px;margin:0 auto;padding:0 18px}

header{
  position:sticky; top:0; z-index:50;
  background: rgba(6,20,38,.62);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}

.nav{
  height:72px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}

.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:900; letter-spacing:.6px;
}
.brand .mark{
  width:40px; height:40px; border-radius:12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  overflow:hidden;
}
.brand .name{display:flex;flex-direction:column;line-height:1}
.brand .name b{font-size:14px}
.brand .name span{font-size:12px;color:var(--muted);font-weight:700;letter-spacing:.2px}

.navlinks{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.link{
  padding:10px 12px;border-radius:999px;
  border:1px solid transparent;
  color:var(--muted);
  font-weight:750;font-size:13px;
}
.link:hover{border-color:var(--stroke); color:var(--text); background: rgba(255,255,255,.04)}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px; border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  font-weight:850;
}
.btn.primary{
  border:none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#05101d;
}
.btn.whatsapp{
  border:none;
  background: linear-gradient(135deg, #25D366, #1fbf5a);
  color:#04110b;
}

.hero{padding:56px 0 22px}
.heroGrid{
  display:grid; gap:18px;
  grid-template-columns: 1.1fr .9fr;
  align-items:stretch;
}
@media (max-width:920px){
  .heroGrid{grid-template-columns:1fr}
  .navlinks .hide-sm{display:none}
}
h1{
  font-size: clamp(34px, 3.4vw, 54px);
  line-height:1.05;
  margin:0 0 12px;
}
.lead{color:var(--muted);font-size:18px;line-height:1.6;margin:0 0 18px}

.panel{
  background: var(--card);
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.heroCard{padding:22px}
.pills{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 12px;border-radius:999px;
  background: rgba(47,210,255,.10);
  border:1px solid rgba(47,210,255,.18);
  color:#dff6ff;
  font-weight:800;font-size:13px;
}

.heroVisual{
  position:relative;
  min-height:380px;
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.heroVisual .grad{
  position:absolute; inset:0;
  background:
    radial-gradient(700px 500px at 70% 20%, rgba(47,210,255,.32), transparent 50%),
    radial-gradient(600px 500px at 20% 40%, rgba(43,108,255,.28), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.heroVisual .frame{
  position:absolute; inset:0;
  display:grid; grid-template-columns:1fr 1fr;
  gap:12px;
  padding:14px;
}
.heroVisual .shot{
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:#081a30;
  transform: translateZ(0);
}
.heroVisual .shot img{width:100%;height:100%;object-fit:cover}
.heroVisual .shot:nth-child(1){grid-column:1 / 3; height:56%}
.heroVisual .shot:nth-child(2){height:44%}
.heroVisual .shot:nth-child(3){height:44%}
.heroVisual .badge{
  position:absolute; left:16px; bottom:16px;
  display:flex; align-items:center; gap:10px;
  padding:12px 14px; border-radius:14px;
  background: rgba(6,20,38,.72);
  border:1px solid rgba(255,255,255,.14);
}
.heroVisual .badge b{font-size:14px}
.heroVisual .badge span{font-size:12px;color:var(--muted);font-weight:700}

.section{padding:26px 0}
.section h2{margin:0 0 12px;font-size:28px}
.section .sub{margin:0 0 16px;color:var(--muted);line-height:1.6}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media (max-width:900px){.grid3{grid-template-columns:1fr}}
.card{padding:18px;border-radius:var(--radius);background:var(--card);border:1px solid var(--stroke)}
.card h3{margin:0 0 8px}
.card p{margin:0;color:var(--muted);line-height:1.6}
.icon{
  width:40px;height:40px;border-radius:14px;
  display:grid;place-items:center;
  background: rgba(47,210,255,.10);
  border:1px solid rgba(47,210,255,.16);
  margin-bottom:10px;
}

.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
@media (max-width:980px){.steps{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.steps{grid-template-columns:1fr}}

.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
@media (max-width:900px){.gallery{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.gallery{grid-template-columns:1fr}}
.thumb{
  border-radius:18px; overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:#081a30;
  cursor:pointer;
}
.thumb img{width:100%;height:260px;object-fit:cover;transition:transform .35s ease}
.thumb:hover img{transform:scale(1.04)}

.quote{
  display:flex;flex-direction:column;gap:10px
}
.quote .stars{letter-spacing:2px;color:#ffd56a}
.quote p{margin:0;color:var(--muted);line-height:1.7}
.quote b{font-size:14px}

.contactGrid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media (max-width:900px){.contactGrid{grid-template-columns:1fr}}
.field{display:flex;flex-direction:column;gap:8px}
input,textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px;resize:vertical}
.small{font-size:12px;color:var(--muted);line-height:1.5}

footer{
  padding:22px 0 34px;
  border-top:1px solid rgba(255,255,255,.10);
  margin-top:18px;
}

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index:100;
  background: rgba(0,0,0,.72);
  display:none; align-items:center; justify-content:center;
  padding:18px;
}
.lightbox.open{display:flex}
.lightbox .inner{
  max-width:min(1100px, 100%);
  max-height:min(86vh, 100%);
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
  background:#000;
}
.lightbox img{width:100%;height:100%;object-fit:contain;background:#000}
.lightbox .close{
  position:absolute; top:18px; right:18px;
  padding:10px 12px;border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  font-weight:900;
  cursor:pointer;
}


/* ===== Mobile sticky action buttons ===== */
.mobile-actions{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: none;
  grid-template-columns: 1fr 1fr;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,.12);
}

.mobile-actions a{
  padding: 16px;
  font-weight: 900;
  text-align: center;
  color: #fff;
}

.mobile-call{
  background: linear-gradient(135deg, #2b6cff, #2fd2ff);
}

.mobile-whatsapp{
  background: linear-gradient(135deg, #25D366, #1fbf5a);
  color: #04110b;
}

@media (max-width: 768px){
  .mobile-actions{display:grid;}
  footer{padding-bottom:90px;}
}
