:root {
  --red: #e00016;
  --red-bright: #ff1a2f;
  --red-dark: #69000b;
  --black: #050505;
  --white: #fff;
  --muted: #d6d6d6;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--black);
  color: var(--white);
}

a { color: inherit; }

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.78) 43%, rgba(0,0,0,.36) 68%, rgba(0,0,0,.62) 100%),
    url("assets/background.png") center/cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 28%, rgba(135, 0, 14, .26), transparent 32%),
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.62));
}

.glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  z-index: -1;
  pointer-events: none;
}

.glow-left { left: -16rem; bottom: -14rem; background: var(--red); }
.glow-right { right: -18rem; top: -16rem; background: var(--red-bright); }

.content {
  width: min(920px, calc(100% - 36px));
  text-align: center;
  padding: 42px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: min(610px, 80vw);
  max-height: 190px;
  object-fit: contain;
  margin-bottom: 8px;
}

.eyebrow {
  margin: 4px 0 62px;
  font-size: clamp(.72rem, 1.1vw, .92rem);
  letter-spacing: .72em;
  font-weight: 500;
  color: #eeeeee;
}

h1 {
  margin: 0;
  line-height: .96;
  text-transform: uppercase;
}

h1 span {
  display: block;
  font-size: clamp(1.45rem, 3.6vw, 3.4rem);
  letter-spacing: .30em;
  font-weight: 500;
  margin-left: .3em;
}

h1 strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(2.8rem, 7.1vw, 6.1rem);
  font-weight: 900;
  letter-spacing: .015em;
  color: var(--red-bright);
  text-shadow: 0 0 38px rgba(255, 0, 31, .22);
}

.progress {
  width: min(330px, 58vw);
  height: 10px;
  margin: 46px 0 34px;
  background: rgba(255,255,255,.16);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 0 12px rgba(0,0,0,.45);
}

.progress span {
  display: block;
  width: 52%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c10011, var(--red-bright));
  box-shadow: 0 0 16px rgba(255,0,31,.55);
}

.intro {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.55;
  letter-spacing: .03em;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 38px;
}

.btn {
  min-width: 180px;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: .22s ease;
}

.btn svg { width: 20px; height: 20px; fill: currentColor; }

.btn-whatsapp {
  background: linear-gradient(135deg, #ff1730, #c30013);
  color: #fff;
  box-shadow: 0 10px 32px rgba(214,0,22,.24);
}

.btn-email {
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(0,0,0,.42);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.contact-text {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  font-size: .88rem;
  color: #bdbdbd;
}

.contact-text a {
  text-decoration: none;
  transition: color .2s ease;
}

.contact-text a:hover { color: var(--red-bright); }

@media (max-width: 700px) {
  .hero {
    background-position: 66% center;
  }

  .content {
    min-height: 100vh;
    justify-content: center;
    padding: 30px 18px;
  }

  .logo {
    width: min(520px, 92vw);
  }

  .eyebrow {
    margin-bottom: 42px;
    letter-spacing: .4em;
  }

  h1 span {
    letter-spacing: .16em;
    margin-left: .16em;
  }

  .progress { margin: 36px 0 28px; }

  .actions { width: 100%; }
  .btn { flex: 1 1 220px; max-width: 330px; }
}

@media (max-width: 420px) {
  .eyebrow { letter-spacing: .27em; }
  h1 strong { font-size: clamp(2.35rem, 13vw, 3.4rem); }
  .contact-text { flex-direction: column; gap: 7px; }
  .contact-text span { display: none; }
}
