* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #07070c;
  --card: rgba(18, 18, 28, .78);
  --card-solid: #151521;
  --text: #ffffff;
  --muted: #b9b9c9;
  --primary: #ff3d00;
  --secondary: #ff006e;
  --purple: #8b5cf6;
  --border: rgba(255,255,255,.12);
  --shadow: 0 30px 90px rgba(0,0,0,.55);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 61, 0, .22), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(255, 0, 110, .18), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(139, 92, 246, .18), transparent 36%),
    var(--bg);
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.online-status{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:900;
    color:#fff;
}

.online-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#00ff66;
    box-shadow:0 0 10px #00ff66;
    animation: onlinePulse 1s infinite;
    flex-shrink:0;
}

@keyframes onlinePulse{
    0%{
        transform:scale(1);
        opacity:1;
        box-shadow:0 0 5px #00ff66;
    }

    50%{
        transform:scale(1.35);
        opacity:.35;
        box-shadow:0 0 18px #00ff66;
    }

    100%{
        transform:scale(1);
        opacity:1;
        box-shadow:0 0 5px #00ff66;
    }
}

.topbar {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.8px;
  text-shadow: 0 0 28px rgba(255, 61, 0, .45);
}

.logo span {
  color: #ff7a45;
}

.top-link {
  color: var(--muted);
  font-size: 14px;
}

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 35px auto 0;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  color: #ff7a45;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: .95;
  letter-spacing: -3px;
  max-width: 760px;
  background: linear-gradient(135deg, #fff, #ffbd9b, #ff4d6d);
  -webkit-background-clip: text;
  color: transparent;
}

.subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-top: 22px;
  max-width: 600px;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  cursor: pointer;
  font-weight: 900;
  transition: .22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--purple));
  box-shadow: 0 18px 45px rgba(255, 0, 110, .28);
}

.btn-secondary,
.btn-outline {
  color: var(--text);
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.hero-preview {
  position: relative;
  min-height: 480px;
}

.blur-card {
  min-height: 480px;
  height: 100%;
  border-radius: 38px;
  background:
    linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.62)),
    url("../img/4.jpg") center/cover no-repeat;
  filter: blur(14px);
  transform: scale(1.04);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow), 0 0 90px rgba(255, 0, 110, .20);
}

.floating-card {
  position: absolute;
  left: -18px;
  bottom: 34px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(12, 12, 20, .78);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.floating-card span {
  display: block;
  color: var(--muted);
  margin-top: 5px;
  font-size: 14px;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 85px auto;
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 34px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -1.4px;
}

.section-title p {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.content-card {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border-radius: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: .25s ease;
}

.content-card:hover,
.content-card.featured {
  transform: translateY(-7px);
  border-color: rgba(255, 107, 53, .48);
}

.fake-image {
  height: 255px;
  border-radius: 24px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
  filter: blur(13px);
  transform: scale(1.04);
  border: 1px solid rgba(255,255,255,.14);
}

.fake-image::after {
  content: "BLOQUEADO +18";
  position: absolute;
}

.img-1 {
  background-image: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url("../img/1.jpg");
}

.img-2 {
  background-image: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url("../img/2.jpg");
}

.img-3 {
  background-image: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url("../img/3.jpg");
}

.content-card h3 {
  font-size: 24px;
  margin-bottom: 9px;
}

.content-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.content-card .btn {
  width: 100%;
}

footer {
  width: min(1160px, calc(100% - 32px));
  margin: 45px auto;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(18px);
}

.popup-overlay.hidden {
  display: none;
}

.popup-card {
  width: min(470px, 100%);
  padding: 32px;
  text-align: center;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent),
    var(--card-solid);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
}

.badge {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 23px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 40px rgba(255,0,110,.35);
}

.popup-card h1 {
  font-size: 30px;
  margin-bottom: 10px;
}

.popup-card p {
  color: var(--muted);
  line-height: 1.6;
}

.popup-actions {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .hero-preview,
  .blur-card {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .topbar,
  .hero,
  .section,
  footer {
    width: calc(100% - 24px);
  }

  .hero h1 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }

  .hero-buttons,
  .popup-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .fake-image {
    height: 250px;
  }

  .floating-card {
    left: 12px;
    right: 12px;
    bottom: 18px;
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}
