:root{
  --bg:#050508;
  --text:#ffffff;
  --muted:rgba(255,255,255,.68);
  --muted2:rgba(255,255,255,.50);
  --stroke:rgba(255,255,255,.10);
  --panel:rgba(255,255,255,.04);
  --orange:#ff8c00;
  --orange2:#ff6b00;
  --cyan:#00d9ff;
  --r:18px;
  --shadow:0 18px 60px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

.wrap{max-width:1100px;margin:0 auto;padding:0 18px}

.header{padding:18px 0}
.brand{display:inline-flex;align-items:center;text-decoration:none}
.logo{height:34px;width:auto;display:block}

/* Background */
.bg{position:fixed;inset:0;z-index:-1;pointer-events:none}
.grid{
  position:absolute;inset:-2px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:70px 70px;
  opacity:.22;
  transform:translateZ(0);
}
.glow{
  position:absolute;width:820px;height:820px;border-radius:999px;
  filter:blur(80px);opacity:.25;
}
.glow-a{left:-240px;top:-260px;background:radial-gradient(circle at 30% 30%, var(--orange), transparent 60%)}
.glow-b{right:-280px;bottom:-320px;background:radial-gradient(circle at 30% 30%, var(--cyan), transparent 60%)}
.noise{
  position:absolute;inset:0;opacity:.07;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

/* Hero */
.hero{padding:54px 0 40px}
.h1{
  margin:0 0 14px;
  font-weight:900;
  letter-spacing:-.03em;
  line-height:.95;
  font-size:clamp(40px, 6vw, 78px);
}
.h1-line{display:block;margin-top:4px}
.word{
  display:inline-block;
  padding:.08em .22em;
  border-radius:14px;
  background:linear-gradient(90deg, rgba(255,140,0,.18), rgba(0,217,255,.12));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 10px 40px rgba(0,0,0,.35);
  transform:translateZ(0);
  transition:opacity .16s ease, transform .16s ease;
}
.sub{
  margin:0 0 22px;
  max-width:820px;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
}
.actions{display:flex;gap:12px;flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 18px;
  border-radius:14px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
  border:1px solid transparent;
  text-decoration:none;
  cursor:pointer;
  user-select:none;
}
.btn.primary{
  background:linear-gradient(90deg, var(--orange), var(--orange2));
  color:#fff;
  box-shadow:0 16px 40px rgba(255,140,0,.22);
}
.btn.primary:hover{filter:brightness(1.07)}
.btn.ghost{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.10);
}
.btn.ghost:hover{background:rgba(255,255,255,.04)}

/* Contact */
.contact{padding:26px 0 52px}
.contact-head{margin-bottom:14px}
.h2{margin:0 0 6px;font-size:24px;letter-spacing:-.02em}
.sub2{margin:0;color:var(--muted2);font-size:14px}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.35fr;
  gap:12px;
  align-items:start;
}
.info{display:grid;gap:10px}
.card{
  display:flex;gap:12px;align-items:flex-start;
  padding:14px;
  background:var(--panel);
  border:1px solid var(--stroke);
  border-radius:var(--r);
  box-shadow:var(--shadow);
}
.icon{
  width:34px;height:34px;display:grid;place-items:center;
  border-radius:12px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
.label{font-weight:900;margin-bottom:2px}
.value{color:#fff;text-decoration:none}
.value:hover{text-decoration:underline}
.form-card{
  background:var(--panel);
  border:1px solid var(--stroke);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:14px;
}
.form{display:flex;flex-direction:column;gap:12px}
.row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
label span{
  display:block;color:var(--muted2);font-size:12px;margin-bottom:6px;
  letter-spacing:.08em;text-transform:uppercase;
}
input,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
  color:#fff;
  outline:none;
}
input:focus,textarea:focus{border-color:rgba(0,217,255,.35);box-shadow:0 0 0 3px rgba(0,217,255,.10)}
textarea{resize:vertical;min-height:140px}
.form-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.note{color:var(--muted2);font-size:13px}
.hp{display:none!important}

@media (max-width: 900px){
  .contact-grid{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
}

@media (prefers-reduced-motion: reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}


/* --- WOW centered layout overrides --- */
.wrap{display:flex;flex-direction:column;align-items:center}
.hero{padding:64px 0 34px;text-align:center;display:flex;flex-direction:column;align-items:center}
.hero-brand{margin-top:6px;margin-bottom:22px}
.hero-logo{height:auto;max-width:min(320px, 78vw);filter:drop-shadow(0 18px 40px rgba(0,0,0,.55))}
.pill{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.75);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.h1{max-width:980px}
.sub{margin-left:auto;margin-right:auto}
.actions{justify-content:center}

/* make hero feel like a premium card */
.hero::before{
  content:"";
  position:absolute;
  inset:-14px -18px -18px -18px;
  border-radius:26px;
  background:linear-gradient(180deg, rgba(255,140,0,.10), rgba(0,217,255,.06), transparent 70%);
  border:1px solid rgba(255,255,255,.06);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  z-index:-1;
}
.hero{position:relative}
.grid{opacity:.18}
.glow{opacity:.22}

/* Contact centered */
.contact{width:100%;max-width:980px}
.contact-grid{grid-template-columns:1fr;justify-items:center}
.info{grid-template-columns:1fr;max-width:560px;width:100%}
.form-card{max-width:720px;width:100%}

/* Bigger, cleaner cards */
.card, .form-card{
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.10);
}
.icon{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.10)}

/* Inputs */
input,textarea{
  background:rgba(0,0,0,.28);
  border-color:rgba(255,255,255,.12);
}
input::placeholder, textarea::placeholder{color:rgba(255,255,255,.35)}
.note{min-height:18px}

/* Smooth micro animation (very light) */
@media (prefers-reduced-motion: no-preference){
  .hero-logo{animation: floaty 7s ease-in-out infinite}
  @keyframes floaty{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-6px)}
  }
}

@media (max-width: 520px){
  .hero::before{inset:-10px -10px -14px -10px}
}


/* =========================
   SaaS layout polish
   ========================= */
.wrap{
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px 70px;
}

.hero-card{
  width: 100%;
  max-width: 980px;
  margin: 34px auto 22px;
  padding: 36px 26px 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  position: relative;
  overflow: hidden;
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(700px 420px at 20% 15%, rgba(255,140,0,.18), transparent 55%),
    radial-gradient(700px 420px at 85% 75%, rgba(0,217,255,.14), transparent 55%);
  pointer-events:none;
}

.hero-top{
  display:flex;
  justify-content:center;
  position:relative;
  z-index:1;
  margin-bottom: 18px;
}

.hero-logo{
  max-width:min(320px, 76vw);
  height:auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.55));
}

.hero-copy{
  text-align:center;
  position:relative;
  z-index:1;
}

.h1{
  margin: 0 0 10px;
  font-size: clamp(38px, 5.6vw, 68px);
}

.h1-line{
  display:block;
  margin-top: 6px;
}

.pill{
  margin: 0 auto 14px;
}

.sub{
  margin: 0 auto 18px;
  font-size: 15.5px;
  max-width: 820px;
}

.actions{
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.btn.ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
}

.trust{
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap:wrap;
  padding-top: 10px;
}

.trust-item{
  display:flex;
  gap: 10px;
  align-items:baseline;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
}

.trust-num{
  font-weight: 900;
  letter-spacing: .02em;
}

.trust-txt{
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

.contact-wrap{
  width:100%;
  max-width: 980px;
  margin: 0 auto;
  padding-top: 8px;
}

.contact-head{
  margin: 14px 0 12px;
  text-align:left;
}

.contact-card{
  display:grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
}

.contact-left,.contact-right{min-width:0}

.info{
  display:grid;
  gap: 10px;
}

.card{
  padding: 14px 14px;
}

.mini-note{
  margin-top: 6px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  line-height: 1.45;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
}

.form-card{ /* legacy */
  width:100%;
}

.form{
  gap: 10px;
}

input, textarea{
  border-radius: 14px;
}

@media (max-width: 920px){
  .hero-card{padding: 30px 18px 22px}
  .contact-card{grid-template-columns: 1fr}
  .contact-head{text-align:center}
}

@media (max-width: 520px){
  .hero-card{margin-top: 22px}
  .trust-item{width:100%;justify-content:space-between}
}

/* Keep backgrounds subtle */
.grid{opacity:.14}
.glow{opacity:.18}


/* reCAPTCHA */
.recaptcha{
  margin-top: 8px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.08);
}
.recaptcha-note{
  margin-top: 8px;
  color: rgba(255,255,255,.45);
  font-size: 12px;
}

/* Footer */
.footer{
  padding: 26px 0 34px;
  color: rgba(255,255,255,.45);
  font-size: 13px;
}
.footer-inner{
  display:flex;
  justify-content:center;
}

/* WhatsApp button + icon */
.btn.primary.whatsapp{
  background: linear-gradient(90deg, #25D366, #128C7E);
  box-shadow: 0 16px 40px rgba(37, 211, 102, .18);
}
.btn.primary.whatsapp:hover{filter:brightness(1.06)}

.btn.primary.whatsapp{
  gap:10px;
}
.wa-ico{
  width:18px;height:18px;display:inline-block;flex:0 0 18px;
  background-color: rgba(255,255,255,.95);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='white' d='M19.11 17.21c-.28-.14-1.64-.81-1.89-.9-.25-.09-.43-.14-.61.14-.18.28-.7.9-.86 1.08-.16.18-.32.21-.6.07-.28-.14-1.18-.44-2.25-1.4-.83-.74-1.39-1.66-1.55-1.94-.16-.28-.02-.43.12-.57.12-.12.28-.32.42-.48.14-.16.18-.28.28-.46.09-.18.05-.35-.02-.49-.07-.14-.61-1.47-.84-2.01-.22-.53-.44-.46-.61-.46h-.52c-.18 0-.46.07-.7.35-.25.28-.95.93-.95 2.27s.97 2.63 1.11 2.82c.14.18 1.91 2.92 4.63 4.09.65.28 1.16.45 1.55.57.65.21 1.24.18 1.71.11.52-.08 1.64-.67 1.87-1.32.23-.65.23-1.2.16-1.32-.07-.12-.25-.18-.52-.32zM16.02 3.2c-7.01 0-12.72 5.7-12.72 12.72 0 2.24.59 4.42 1.71 6.34L3 29.2l7.15-1.88c1.86 1.01 3.94 1.54 6.01 1.54h.01c7.01 0 12.72-5.7 12.72-12.72 0-3.4-1.33-6.59-3.73-8.99-2.4-2.4-5.59-3.73-8.99-3.73zm0 23.49h-.01c-1.9 0-3.76-.51-5.39-1.48l-.39-.23-4.24 1.12 1.13-4.13-.25-.42a10.51 10.51 0 0 1-1.62-5.63c0-5.8 4.72-10.52 10.53-10.52 2.81 0 5.46 1.1 7.45 3.09 1.99 1.99 3.09 4.64 3.09 7.45 0 5.8-4.72 10.52-10.52 10.52z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='white' d='M19.11 17.21c-.28-.14-1.64-.81-1.89-.9-.25-.09-.43-.14-.61.14-.18.28-.7.9-.86 1.08-.16.18-.32.21-.6.07-.28-.14-1.18-.44-2.25-1.4-.83-.74-1.39-1.66-1.55-1.94-.16-.28-.02-.43.12-.57.12-.12.28-.32.42-.48.14-.16.18-.28.28-.46.09-.18.05-.35-.02-.49-.07-.14-.61-1.47-.84-2.01-.22-.53-.44-.46-.61-.46h-.52c-.18 0-.46.07-.7.35-.25.28-.95.93-.95 2.27s.97 2.63 1.11 2.82c.14.18 1.91 2.92 4.63 4.09.65.28 1.16.45 1.55.57.65.21 1.24.18 1.71.11.52-.08 1.64-.67 1.87-1.32.23-.65.23-1.2.16-1.32-.07-.12-.25-.18-.52-.32zM16.02 3.2c-7.01 0-12.72 5.7-12.72 12.72 0 2.24.59 4.42 1.71 6.34L3 29.2l7.15-1.88c1.86 1.01 3.94 1.54 6.01 1.54h.01c7.01 0 12.72-5.7 12.72-12.72 0-3.4-1.33-6.59-3.73-8.99-2.4-2.4-5.59-3.73-8.99-3.73zm0 23.49h-.01c-1.9 0-3.76-.51-5.39-1.48l-.39-.23-4.24 1.12 1.13-4.13-.25-.42a10.51 10.51 0 0 1-1.62-5.63c0-5.8 4.72-10.52 10.53-10.52 2.81 0 5.46 1.1 7.45 3.09 1.99 1.99 3.09 4.64 3.09 7.45 0 5.8-4.72 10.52-10.52 10.52z'/%3E%3C/svg%3E") no-repeat center / contain;
}
