/* ==========================================================================
   HARDUKA — Página padrão de alojamento (default parking / promo page)
   Mostrada automaticamente em domínios de clientes de hosting sem site publicado.
   ========================================================================== */

@font-face {
  font-family: "Quicksand";
  src: url("../assets/fonts/quicksand-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("../assets/fonts/quicksand-medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("../assets/fonts/quicksand-bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root{
  --red: #FF0004;
  --red-dark: #CC0003;
  --red-darker: #6e0002;
  --black: #000000;
  --ink: #0b0b0c;
  --white: #FFFFFF;
  --grey-200: #E5E5E7;
  --grey-400: #A6A7AB;
  --grey-600: #cfd0d3;
  --font-display: "Quicksand", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(255,0,4,.45), transparent 60%),
    radial-gradient(900px 700px at -10% 110%, rgba(255,0,4,.22), transparent 60%),
    var(--ink);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; }
:focus-visible{ outline: 3px solid var(--red); outline-offset: 3px; }

.wrap{
  width: min(100% - 2.5rem, 980px);
  margin-inline: auto;
}

.page{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.logo{ height: 46px; width: auto; margin-bottom: 2.25rem; }

.badge{
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,0,4,.16);
  border: 1px solid rgba(255,0,4,.4);
  padding: .45rem 1rem; border-radius: 999px;
  margin-bottom: 1.5rem;
}
.badge .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(255,0,4,.25); }

h1{
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 1.4rem + 2.4vw, 3.1rem);
  line-height: 1.15; margin: 0 0 .75rem;
}
h1 .domain{
  color: var(--red);
  word-break: break-word;
}

.lead{
  font-size: clamp(1rem, .95rem + .3vw, 1.2rem);
  color: var(--grey-600);
  max-width: 56ch;
  margin: 0 auto 2.25rem;
}

.cta-row{ display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3.5rem; }
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.75rem; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background-color .15s var(--ease), border-color .15s var(--ease);
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--red); color: var(--white); }
.btn-primary:hover{ background: var(--red-dark); box-shadow: 0 10px 30px rgba(255,0,4,.35); }
.btn-outline{ background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-outline:hover{ border-color: var(--white); }

.services{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  width: 100%;
  max-width: 920px;
}
@media (min-width: 640px){ .services{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 520px){ .cta-row{ flex-direction:column; } .btn{ width:100%; } .footer-row{ align-items:flex-start; } }

.service-pill{
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  padding: 1.1rem .75rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--grey-600);
  transition: border-color .15s var(--ease), background .15s var(--ease), transform .15s var(--ease);
}
.service-pill:hover{ border-color: var(--red); background: rgba(255,0,4,.08); transform: translateY(-3px); color: var(--white); }
.service-pill svg{ width: 22px; height: 22px; color: var(--red); }

footer{
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.75rem;
}
.footer-row{
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
  font-size: .82rem; color: var(--grey-400);
}
.footer-row a{ text-decoration: none; }
.footer-row a:hover{ color: var(--white); }
.footer-links{ display: flex; gap: 1.5rem; flex-wrap: wrap; }

.security-note{
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; color: var(--grey-400);
}
.security-note svg{ width: 13px; height: 13px; color: var(--red); }

.whatsapp-float{
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 950;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.4);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}
.whatsapp-float:hover{ transform: translateY(-3px) scale(1.04); }
.whatsapp-float svg{ width: 30px; height: 30px; fill: var(--white); }
