/* ============ FLASHNET - CSS (simples e limpo) ============ */
:root{
  /* cores do logo (aproximadas) */
  --blue: #0b163d;      /* azul escuro */
  --blue-2: #162a63;    /* azul apoio */
  --orange: #ff7a00;    /* laranja */
  --bg: #070b16;        /* fundo */
  --card: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
}

*{ box-sizing: border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(255,122,0,.22), transparent 60%),
    radial-gradient(900px 520px at 78% 18%, rgba(25,72,255,.18), transparent 60%),
    var(--bg);
}

a{ color:inherit; text-decoration:none; }
.container{
  width:min(1120px, 92vw);
  margin:0 auto;
}

/* ============ TOPBAR / MENU ============ */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(7,11,22,.55);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 140px;
}

/* ======= LOGO (ficar pequeno e bonito no canto) ======= */
.logo{
  height: 40px;          /* ajuste principal */
  width: auto;
  display:block;
  object-fit: contain;
  /* se ainda ficar "apagado", descomente a linha abaixo:
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
  */
}

/* Caso você ainda esteja usando JPG com fundo branco:
   isso cria uma “plaquinha” discreta pra ficar apresentável */
.brand--badge .logo{
  height: 34px;
  padding: 6px 10px;
  background: rgba(255,255,255,.95);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.06);
}

.menu{
  display:flex;
  align-items:center;
  gap: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.86);
}

.menu a{
  padding: 10px 10px;
  border-radius: 10px;
}
.menu a:hover{
  background: rgba(255,255,255,.06);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 700;
}

.btn-primary{
  background: linear-gradient(90deg, var(--orange), #ff9b2f);
  color: #111;
  border: 0;
}
.btn-primary:hover{
  filter: brightness(1.05);
}

.btn-ghost{
  background: transparent;
  color: rgba(255,255,255,.92);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.06);
}

/* ============ HERO (se você já tiver) ============ */
.hero{
  padding: 64px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 26px;
  align-items:center;
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}
.hero p{
  margin:0 0 18px;
  color: var(--muted);
  font-weight: 600;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.note{
  margin-top: 10px;
  color: rgba(255,255,255,.70);
  font-size: 14px;
}

/* ============ CARDS / SEÇÕES ============ */
.section{
  padding: 40px 0 64px;
}
.section h2{
  margin:0 0 8px;
  font-size: 28px;
}
.section p{
  margin:0 0 18px;
  color: var(--muted);
}

.card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 50px rgba(0,0,0,.28);
}

.badge{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,122,0,.35);
  color: #ffb073;
  background: rgba(255,122,0,.10);
  font-weight: 800;
  font-size: 12px;
}

/* grid de planos */
.plans{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.plan{
  position: relative;
  padding: 18px;
}
.plan .title{
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}
.plan .speed{
  font-weight: 800;
  margin-bottom: 14px;
}
.plan .price{
  color: rgba(255,255,255,.86);
  font-weight: 800;
  margin-bottom: 14px;
}
.plan .btn{
  width: 100%;
  margin-top: 6px;
}

.plan.featured{
  border-color: rgba(255,122,0,.45);
  box-shadow: 0 18px 60px rgba(255,122,0,.12);
}
.plan .tag{
  position:absolute;
  top: 12px;
  right: 12px;
}

/* ============ RESPONSIVO ============ */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .plans{ grid-template-columns: repeat(2, 1fr); }
  .menu{ gap: 10px; }
}

@media (max-width: 520px){
  .plans{ grid-template-columns: 1fr; }
  .logo{ height: 34px; }
  .menu a{ padding: 10px 8px; }
}
/* ==== CORREÇÃO HEADER / LOGO ==== */

.header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,15,23,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.header__wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand{
  display: flex;
  align-items: center;
}

.logo{
  height: 36px;   /* tamanho certo */
  width: auto;
  display: block;
}

/* remove qualquer herança estranha */
.brand img{
  max-width: none;
}

/* mobile */
@media (max-width:600px){
  .logo{
    height: 30px;
  }
}
