:root{
  --bg0:#07090f;
  --bg1:#0b1020;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.58);
  --accent:#63d98c;
  --accent2:#2fb8ff;
  --shadow: 0 24px 70px rgba(0,0,0,.55);
  --radius: 22px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 70% 15%, rgba(99,217,140,.16), transparent 60%),
    radial-gradient(1100px 800px at 20% 0%, rgba(47,184,255,.12), transparent 55%),
    radial-gradient(900px 700px at 30% 85%, rgba(140,99,255,.10), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}
.bg-noise::before{
  content:"";
  position:fixed; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity:.35;
  pointer-events:none;
}
.bg-stars::after{
  content:"";
  position:fixed; inset:-20%;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.55) 30%, transparent 60%),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,.45) 35%, transparent 60%),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,.35) 35%, transparent 60%),
    radial-gradient(2px 2px at 85% 75%, rgba(255,255,255,.40) 30%, transparent 60%),
    radial-gradient(1px 1px at 10% 85%, rgba(255,255,255,.30) 35%, transparent 60%),
    radial-gradient(1px 1px at 55% 50%, rgba(255,255,255,.22) 35%, transparent 60%);
  filter: blur(.2px);
  opacity:.55;
  pointer-events:none;
  transform: translateZ(0);
  animation: drift 20s ease-in-out infinite alternate;
}
@keyframes drift{
  from{ transform: translate3d(-1%, -1%, 0) scale(1.02) }
  to{ transform: translate3d(1%, 1%, 0) scale(1.04) }
}

.wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:42px 18px;
}
.card{
  width:min(980px, 100%);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.045));
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(500px 220px at 50% 0%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(600px 260px at 90% 20%, rgba(99,217,140,.16), transparent 60%),
    radial-gradient(600px 260px at 10% 20%, rgba(47,184,255,.12), transparent 60%);
  opacity:.55;
  pointer-events:none;
}
.inner{
  position:relative;
  padding:34px 34px 22px;
}
.top{
  display:flex;
  gap:22px;
  align-items:center;
}
.logo-box{
  width:112px; height:112px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.16);
  display:grid; place-items:center;
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.logo-box img{
  width:84px; height:auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
}
.hgroup h1{
  margin:0;
  letter-spacing:.2px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.06;
}
.hgroup .tagline{
  margin-top:6px;
  color: var(--muted);
  font-weight:600;
  letter-spacing:.2px;
}
.badge{
  margin-top:16px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.24);
  border:1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.86);
  font-weight:700;
  font-size: 14px;
}
.badge .dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(47,184,255,.15);
}
.copy{
  margin-top:18px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height:1.55;
  color: rgba(255,255,255,.86);
}
.copy b{color:rgba(255,255,255,.95)}
.actions{
  margin-top:20px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border-radius: 14px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22) }
.btn:active{ transform: translateY(0px) scale(.99) }
.btn .ico{width:18px;height:18px;opacity:.92}
.btn.email{
  background: rgba(47,184,255,.18);
  border-color: rgba(47,184,255,.35);
}
.btn.whatsapp{
  background: rgba(99,217,140,.20);
  border-color: rgba(99,217,140,.40);
  color: rgba(255,255,255,.96);
}
.meta{
  margin-top:16px;
  color: var(--muted2);
  font-weight:600;
}
.footer{
  position:relative;
  padding:14px 34px 20px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
}
.footer a{
  color: rgba(255,255,255,.82);
  text-decoration:none;
  font-weight:700;
}
.footer a:hover{ text-decoration:underline }
.small{
  font-size: 13px;
  color: rgba(255,255,255,.62);
}
.fab{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:50;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 999px;
  background: rgba(99,217,140,.22);
  border: 1px solid rgba(99,217,140,.42);
  color: rgba(255,255,255,.95);
  text-decoration:none;
  font-weight:900;
  box-shadow: 0 18px 38px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}
.fab:hover{ transform: translateY(-1px) }
.cookie{
  position:fixed;
  left:16px;
  bottom:16px;
  z-index:60;
  width:min(520px, calc(100% - 32px));
  background: rgba(15,18,28,.86);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding:14px 14px 12px;
  box-shadow: 0 18px 46px rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
}
.cookie p{margin:0;color:rgba(255,255,255,.80);font-size:13px;line-height:1.45}
.cookie .row{margin-top:10px;display:flex;gap:10px;flex-wrap:wrap}
.cookie button{
  border:0;
  border-radius: 12px;
  padding:10px 12px;
  font-weight:900;
  cursor:pointer;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
}
.cookie button.primary{
  background: rgba(255,255,255,.18);
}
@media (max-width: 640px){
  .inner{padding:26px 18px 18px}
  .footer{padding:12px 18px 16px}
  .logo-box{width:92px;height:92px;border-radius:22px}
  .logo-box img{width:68px}
}