* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #050505;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
}

/* fundo */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 340px;
  height: 340px;
  background: rgba(255, 0, 0, 0.16);
  top: 40px;
  left: -60px;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(123, 72, 255, 0.10);
  right: -120px;
  top: 180px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.35;
}

/* header */
.hosts-header {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-area h1 {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo-area h1 span {
  color: #ff0000;
}

.logo-area p {
  margin-top: 4px;
  color: #9b9b9b;
  font-size: 14px;
}

.hosts-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hosts-nav a {
  color: #d5d5d5;
  text-decoration: none;
  font-size: 14px;
  transition: .25s ease;
}

.hosts-nav a:hover {
  color: #fff;
}

.header-btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ff1a1a 0%, #b80000 100%);
  box-shadow: 0 10px 28px rgba(255, 0, 0, 0.20);
  transition: .25s ease;
}

.header-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* main */
.hosts-main {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px 80px;
}

/* hero */
.hero-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 26px;
}

.hero-left,
.hero-right {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
}

.hero-left {
  padding: 34px;
}

.hero-right {
  padding: 24px;
}

.mini-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.10);
  color: #ff7070;
  border: 1px solid rgba(255, 0, 0, 0.18);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.hero-left h2 {
  font-size: 56px;
  line-height: 0.98;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.hero-left h2 span {
  color: #ff0000;
}

.hero-left p {
  color: #b0b0b0;
  line-height: 1.8;
  font-size: 16px;
  max-width: 700px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
}

.hero-btn.primary {
  color: #fff;
  background: linear-gradient(180deg, #ff1a1a 0%, #b80000 100%);
}

.hero-btn.secondary {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-mini-cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-info-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.mini-info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.mini-info-card span {
  color: #b0b0b0;
  font-size: 13px;
  line-height: 1.6;
}

.red { border-color: rgba(255,0,0,0.18); }
.purple { border-color: rgba(123,72,255,0.22); }
.green { border-color: rgba(0,255,170,0.16); }

.hero-panel {
  padding: 10px;
}

.hero-panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #dcdcdc;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #12d87b;
  box-shadow: 0 0 18px rgba(18,216,123,0.65);
}

.hero-panel-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.server-card {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}

.server-card span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  color: #cfcfcf;
}

.server-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.server-card p {
  color: #b0b0b0;
  line-height: 1.7;
  font-size: 14px;
}

.server-card.red {
  background: linear-gradient(180deg, rgba(255,0,0,0.12), rgba(255,255,255,0.02));
  border-color: rgba(255,0,0,0.18);
}

.server-card.dark {
  background: linear-gradient(180deg, rgba(123,72,255,0.10), rgba(255,255,255,0.02));
  border-color: rgba(123,72,255,0.18);
}

.server-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.server-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.server-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.server-stats span {
  color: #a9a9a9;
  font-size: 13px;
  line-height: 1.5;
}

/* destaque */
.highlight-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.highlight-item {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
}

.highlight-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.highlight-item span {
  color: #adadad;
  font-size: 14px;
  line-height: 1.6;
}

/* seções */
.section-title {
  margin-bottom: 20px;
}

.section-title h2 {
  font-size: 40px;
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.section-title h2 span {
  color: #ff0000;
}

.section-title p {
  color: #a4a4a4;
  font-size: 15px;
  line-height: 1.7;
}

/* planos */
.plans-section,
.features-section,
.datacenter-section,
.comparison-section,
.faq-section,
.final-cta {
  margin-bottom: 34px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(255,0,0,0.12), rgba(255,255,255,0.03));
  border-color: rgba(255,0,0,0.20);
  transform: translateY(-8px);
}

.purple-card {
  background: linear-gradient(180deg, rgba(123,72,255,0.12), rgba(255,255,255,0.03));
  border-color: rgba(123,72,255,0.20);
}

.plan-tag {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.featured-tag {
  background: rgba(255,0,0,0.16);
  color: #ff7575;
}

.purple-tag {
  background: rgba(123,72,255,0.18);
  color: #bea5ff;
}

.plan-card h3 {
  font-size: 30px;
  margin-bottom: 16px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.price-line span,
.price-line small {
  color: #a8a8a8;
}

.price-line strong {
  font-size: 42px;
  line-height: 1;
  color: #fff;
}

.plan-desc {
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 18px;
}

.plan-card ul {
  list-style: none;
  margin-bottom: 22px;
}

.plan-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: #d5d5d5;
  line-height: 1.6;
}

.plan-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff0000;
  box-shadow: 0 0 14px rgba(255,0,0,0.5);
}

.plan-card a {
  margin-top: auto;
  min-height: 52px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ff1a1a 0%, #b80000 100%);
  transition: .25s ease;
}

.plan-card a:hover {
  transform: translateY(-2px);
}

/* features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-box {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
}

.feature-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature-box p {
  color: #b0b0b0;
  line-height: 1.8;
  font-size: 15px;
}

.red-box { border-color: rgba(255,0,0,0.18); }
.purple-box { border-color: rgba(123,72,255,0.20); }
.green-box { border-color: rgba(0,255,170,0.16); }
.orange-box { border-color: rgba(255,157,0,0.20); }
.dark-box { border-color: rgba(255,255,255,0.10); }

/* datacenter */
.datacenter-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.main-dc,
.side-dc {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
}

.main-dc {
  min-height: 280px;
  background: linear-gradient(180deg, rgba(255,0,0,0.12), rgba(255,255,255,0.03));
  border-color: rgba(255,0,0,0.18);
}

.dc-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,0,0,0.14);
  color: #ff7474;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.dc-label.purple {
  background: rgba(123,72,255,0.18);
  color: #c9b2ff;
}

.dc-label.green {
  background: rgba(0,255,170,0.12);
  color: #8bffd1;
}

.datacenter-card h3 {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1.05;
}

.datacenter-card p {
  color: #b0b0b0;
  line-height: 1.8;
  font-size: 15px;
}

.dc-points {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dc-points div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  color: #e7e7e7;
  font-weight: 700;
}

/* comparison */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.comparison-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
}

.comparison-card.left {
  border-color: rgba(255,255,255,0.08);
}

.comparison-card.right {
  background: linear-gradient(180deg, rgba(255,0,0,0.12), rgba(123,72,255,0.06));
  border-color: rgba(255,0,0,0.18);
}

.comparison-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.comparison-card ul {
  list-style: none;
}

.comparison-card ul li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
  color: #d4d4d4;
  line-height: 1.7;
}

.comparison-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff0000;
}

/* faq */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-item {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
}

.faq-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #b0b0b0;
  line-height: 1.8;
  font-size: 15px;
}

/* final */
.final-cta {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,0,0,0.12), rgba(123,72,255,0.08));
  border: 1px solid rgba(255,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.final-cta span {
  display: inline-block;
  margin-bottom: 10px;
  color: #ff7a7a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.final-cta h2 {
  font-size: 38px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.final-cta p {
  color: #d3d3d3;
  max-width: 760px;
  line-height: 1.8;
}

.final-cta a {
  min-width: 220px;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.08);
  transition: .25s ease;
}

.final-cta a:hover {
  transform: translateY(-2px);
  border-color: rgba(255,0,0,0.20);
}

/* responsivo */
@media (max-width: 1150px) {
  .hero-section,
  .datacenter-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid,
  .features-grid,
  .highlight-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-card.featured {
    transform: none;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .hosts-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hosts-nav {
    flex-wrap: wrap;
  }

  .hero-left h2 {
    font-size: 42px;
  }

  .hero-mini-cards,
  .server-stats,
  .comparison-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .plans-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .highlight-bar,
  .dc-points {
    grid-template-columns: 1fr;
  }

  .hero-left,
  .hero-right,
  .plan-card,
  .feature-box,
  .faq-item,
  .comparison-card,
  .main-dc,
  .side-dc {
    padding: 20px;
  }

  .hero-left h2,
  .section-title h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .price-line strong {
    font-size: 34px;
  }

  .final-cta a,
  .header-btn,
  .hero-btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}

/* =========================
   FOOTER HOSTS
========================= */
.footer-hosts {
  margin-top: 70px;
  padding: 45px 20px 20px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 0, 0, 0.22);
  box-shadow: 0 -16px 50px rgba(255, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.footer-hosts::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.16) 0%, rgba(255, 0, 0, 0.05) 35%, rgba(255, 0, 0, 0) 75%);
  filter: blur(30px);
  pointer-events: none;
}

.footer-hosts-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
}

.footer-hosts-left h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.footer-hosts-left h2 span {
  color: #ff0000;
}

.footer-hosts-left p {
  color: #a9a9a9;
  line-height: 1.7;
  max-width: 420px;
}

.footer-hosts-center h3,
.footer-hosts-right h3 {
  font-size: 18px;
  margin-bottom: 14px;
  color: #fff;
}

.footer-hosts-center ul {
  list-style: none;
}

.footer-hosts-center ul li {
  margin-bottom: 10px;
}

.footer-hosts-center ul li a {
  color: #cfcfcf;
  text-decoration: none;
  transition: .25s ease;
}

.footer-hosts-center ul li a:hover {
  color: #ff0000;
}

/* pagamentos */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.payment-card {
  min-height: 82px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: .25s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}

.payment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.20);
  box-shadow:
    0 0 20px rgba(255, 0, 0, 0.12),
    0 10px 24px rgba(0,0,0,0.28);
}

.payment-card img {
  max-width: 100%;
  max-height: 34px;
  object-fit: contain;
  display: block;
}

/* bottom */
.footer-hosts-bottom {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer-hosts-bottom p {
  color: #777;
  font-size: 13px;
}

/* responsivo */
@media (max-width: 950px) {
  .footer-hosts-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-hosts-left p {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .payments-grid {
    grid-template-columns: 1fr;
  }

  .footer-hosts {
    padding: 38px 16px 18px;
  }

  .footer-hosts-left h2 {
    font-size: 26px;
  }
}