body{margin:0;font-family:Arial;background:#0b0b2e;color:#fff}
header{display:flex;justify-content:space-between;align-items:center;padding:20px;background:#120a3a}
.logo{height:50px}
nav a{margin:0 10px;color:#fff;text-decoration:none}
.hero{text-align:center;padding:60px}
.planos{display:flex;flex-wrap:wrap;justify-content:center;padding:40px}
.plano{background:#1b1450;margin:15px;padding:25px;border-radius:15px;width:250px;text-align:center}
.plano.destaque{border:2px solid #b46bff}
.plano.premium{border:2px solid #ff9f43}
.titulo{text-align:center;margin-top:40px}
.player-box{text-align:center}
/* --- WhatsApp flutuante --- */
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  background:#25D366;
  color:#0b0b2e;
  text-decoration:none;
  border-radius:999px;
  font-weight:700;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
  z-index:9999;
}
.whatsapp-float__icon{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#ffffff;
  border-radius:50%;
  font-size:16px;
}
.whatsapp-float:hover{filter:brightness(1.05)}
@media (max-width:520px){
  .whatsapp-float__text{display:none}
  .whatsapp-float{padding:12px}
}

/* --- Planos Web Rádio --- */
.titulo{ text-align:center; margin:30px 0 10px; }
.subtitulo{ text-align:center; max-width:900px; margin:0 auto 20px; opacity:.9; padding:0 16px; }
.player-box{ max-width:520px; margin:0 auto 20px; padding:20px; background:#1b1450; border-radius:15px; text-align:center; }
.player-box audio{ width:100%; margin-top:10px; }
.plano ul{ list-style: none; padding:0; margin:16px 0 0; text-align:left; }
.plano ul li{ padding:6px 0; border-bottom:1px solid rgba(255,255,255,.12); font-size:14px; }
.plano .preco{ font-size:22px; margin:10px 0 6px; font-weight:800; }
.descricao-plano{ font-size:14px; opacity:.9; margin:0 0 10px; }
.btn-assinar{
  display:inline-block;
  margin-top:16px;
  padding:10px 14px;
  border-radius:12px;
  background:#b46bff;
  color:#fff;
  text-decoration:none;
  font-weight:800;
}
.btn-assinar:hover{filter:brightness(1.05)}

/* --- Players de Programas e Programetes --- */
.programas-box{ max-width:1100px; margin:20px auto 10px; padding:0 16px; }
.programas-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:16px;
}
.programa-card{
  background:#1b1450;
  border-radius:15px;
  padding:16px;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
}
.programa-card h3{ margin:0 0 10px; font-size:16px; }
.programa-card audio{ width:100%; }
.programa-meta{ margin:10px 0 0; font-size:12px; opacity:.85; }
@media (max-width:900px){
  .programas-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width:520px){
  .programas-grid{ grid-template-columns: 1fr; }
}

/* --- Rodapé (Termos/Privacidade) --- */
.site-footer{ margin-top:30px; padding:18px 16px; background:rgba(0,0,0,.18); border-top:1px solid rgba(255,255,255,.10); }
.site-footer__inner{ max-width:1100px; margin:0 auto; text-align:center; }
.site-footer__links{ margin:0; font-weight:700; }
.site-footer__links a{ color:#fff; text-decoration:none; opacity:.92; }
.site-footer__links a:hover{ opacity:1; text-decoration:underline; }
.site-footer__links .sep{ margin:0 8px; opacity:.7; }
.site-footer__copy{ margin:8px 0 0; font-size:12px; opacity:.85; }



/* --- Layout base --- */
.site-main{ max-width:1100px; margin:0 auto; padding:0 16px; }

/* --- Cabeçalho com navegação --- */
.site-header{ position:sticky; top:0; z-index:9998; padding:12px 16px; background:#1b1450; border-bottom:1px solid rgba(255,255,255,.12); }
.site-header__inner{ max-width:1100px; margin:0 auto; display:flex; align-items:center; gap:14px; }
.logo img{ max-height:54px; display:block; }
.site-nav{ margin-left:auto; display:flex; align-items:center; gap:12px; }
.site-nav a{ color:#fff; text-decoration:none; font-weight:800; opacity:.92; padding:8px 10px; border-radius:10px; }
.site-nav a:hover{ opacity:1; background:rgba(255,255,255,.08); }
.site-nav .nav-cta{ background:#25D366; color:#0b0b2e; opacity:1; }
.site-nav .nav-cta:hover{ filter:brightness(1.05); background:#25D366; }
.nav-toggle{ display:none; margin-left:auto; background:transparent; border:1px solid rgba(255,255,255,.25); color:#fff; border-radius:10px; padding:8px 10px; font-weight:900; }

@media (max-width:900px){
  .site-nav{ display:none; }
  .nav-toggle{ display:inline-flex; }
  body.nav-open .site-nav{
    display:flex;
    position:fixed;
    left:16px; right:16px; top:70px;
    background:#1b1450;
    border:1px solid rgba(255,255,255,.14);
    border-radius:16px;
    padding:12px;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    box-shadow:0 18px 40px rgba(0,0,0,.45);
    z-index:9999;
  }
  body.nav-open .site-nav a{ text-align:center; }
}

/* --- Contato --- */
.contato-grid{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; margin:18px 0; }
.contato-card{ background:#1b1450; border-radius:15px; padding:16px; box-shadow:0 8px 20px rgba(0,0,0,.25); }
.contato-card h2{ margin:0 0 8px; }
.contato-form{ background:rgba(0,0,0,.14); border:1px solid rgba(255,255,255,.10); border-radius:15px; padding:16px; margin:18px 0 10px; }
.contato-form form{ display:grid; gap:12px; margin-top:12px; }
.contato-form label{ display:grid; gap:6px; font-weight:700; }
.contato-form input, .contato-form textarea{
  padding:10px 12px; border-radius:12px; border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06); color:#fff;
}
.contato-form textarea{ resize:vertical; }
.alert{ padding:12px; border-radius:12px; margin-top:10px; font-weight:800; }
.alert.ok{ background:rgba(37,211,102,.18); border:1px solid rgba(37,211,102,.35); }
.alert.err{ background:rgba(255,77,77,.18); border:1px solid rgba(255,77,77,.35); }
.contato-hint{ margin:12px 0 0; font-size:13px; opacity:.9; }
@media (max-width:900px){ .contato-grid{ grid-template-columns: 1fr; } }

/* --- Banner de cookies/LGPD --- */
.cookie-banner{
  position:fixed;
  left:16px; right:16px; bottom:16px;
  z-index:9997;
}
.cookie-banner__inner{
  max-width:1100px; margin:0 auto;
  background:#1b1450;
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  padding:14px 14px;
  box-shadow:0 18px 40px rgba(0,0,0,.45);
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
}
.cookie-banner__inner p{ margin:0; font-size:13px; opacity:.95; }
.cookie-banner__inner a{ color:#fff; text-decoration:underline; }
.cookie-banner__actions{ display:flex; gap:10px; }
.cookie-btn{
  border:1px solid rgba(255,255,255,.22);
  background:transparent;
  color:#fff;
  padding:8px 10px;
  border-radius:12px;
  font-weight:900;
  cursor:pointer;
}
.cookie-btn--ok{
  background:#b46bff;
  border-color:#b46bff;
}
.cookie-btn:hover{ filter:brightness(1.05); }
@media (max-width:700px){
  .cookie-banner__inner{ flex-direction:column; align-items:stretch; }
  .cookie-banner__actions{ justify-content:stretch; }
  .cookie-btn{ width:100%; }
}


/* --- Logo responsiva --- */
.site-header .logo img{
  width:auto;
  height:auto;
  max-width:180px;
  max-height:60px;
}

@media (max-width:900px){
  .site-header .logo img{
    max-width:150px;
    max-height:50px;
  }
}

@media (max-width:520px){
  .site-header .logo img{
    max-width:120px;
    max-height:42px;
  }
}


@media (max-width:520px){
  .site-header__inner{ justify-content:center; }
  .site-nav, .nav-toggle{ display:none !important; }
}

.logo img{
  transition: transform .25s ease, opacity .25s ease;
}
.logo img:hover{
  transform: scale(1.03);
  opacity: .95;
}


.site-header .logo picture,
.site-header .logo img{
  display:block;
  max-width:140px !important;
  max-height:44px !important;
  width:auto !important;
  height:auto !important;
}

@media (max-width:768px){
  .site-header .logo picture,
  .site-header .logo img{
    max-width:120px !important;
    max-height:38px !important;
  }
}

@media (max-width:480px){
  .site-header .logo picture,
  .site-header .logo img{
    max-width:105px !important;
    max-height:34px !important;
  }
}


.site-header{
  position:sticky;
  top:0;
  backdrop-filter:saturate(120%) blur(6px);
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}

/* --- Alinhamento desktop: logo + menu bem distribuídos --- */
.site-header__inner{
  justify-content:space-between;
}

/* --- Logo compacta (mobile) --- */
.logo-compact{ display:none; }
.logo-full{ display:block; }

@media (max-width:520px){
  .site-header__inner{ justify-content:center; }
  .site-nav{ display:none !important; }
  .nav-toggle{ display:none !important; }

  .logo-full{ display:none; }
  .logo-compact{ display:block; }
  .site-header .logo picture,
  .site-header .logo img{
    max-width:56px !important;
    max-height:56px !important;
  }
}

/* --- Logo simples e pequena (sem destaque) --- */
.site-header{
  position:sticky;
  top:0;
  box-shadow:none;
}

.site-header .logo picture,
.site-header .logo img{
  max-width:110px;
  max-height:36px;
  width:auto;
  height:auto;
}

@media (max-width:768px){
  .site-header .logo picture,
  .site-header .logo img{
    max-width:100px;
    max-height:32px;
  }
}

@media (max-width:480px){
  .site-header .logo picture,
  .site-header .logo img{
    max-width:90px;
    max-height:28px;
  }
}

/* remove animações/hover */
.logo img{ transition:none; }

/* --- Logo discreta (mantém cabeçalho como está) --- */
.site-header .logo picture,
.site-header .logo img{
  max-width:100px;
  max-height:32px;
  width:auto;
  height:auto;
}

/* Mobile */
@media (max-width:520px){
  .site-header .logo picture,
  .site-header .logo img{
    max-width:88px;
    max-height:28px;
  }
}

/* Sem efeitos visuais na logo */
.logo img{ box-shadow:none; filter:none; transition:none; }

/* --- Header estilo SaaS (mais baixo e limpo) --- */
.site-header{
  padding:8px 14px; /* menor altura */
}

.site-header__inner{
  gap:10px;
}

.site-nav a{
  padding:6px 8px;
  border-radius:10px;
  font-size:14px;
}

.site-nav .nav-cta{
  padding:7px 10px;
}

/* Ganhar mais área de conteúdo no topo */
.site-main{
  padding-top:6px;
}


/* =========================
   THEME: Dark Tech (AB Host)
   ========================= */
:root{
  --bg0:#070A12;
  --bg1:#0B1020;
  --card:#0F1730;
  --card2:#101B3A;
  --stroke:rgba(255,255,255,.10);
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.72);
  --brand:#B46BFF;
  --brand2:#4AD6FF;
  --ok:#25D366;
}

html,body{ font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
body{
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(180,107,255,.22), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, rgba(74,214,255,.18), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color:var(--text);
}

/* Containers */
.site-main{ max-width:1100px; margin:0 auto; padding:0 16px; }

/* Headings */
h1,h2,h3{ letter-spacing:-.02em; }
.titulo{ font-size: clamp(28px, 3.2vw, 40px); margin-top:18px; }
.subtitulo{ color:var(--muted); max-width:860px; margin:10px auto 0; }

/* Cards */
.tech-card{
  background: linear-gradient(180deg, var(--card), var(--card2));
  border:1px solid var(--stroke);
  border-radius:18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

.tech-card.pad{ padding:18px; }

.tech-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin:18px 0 10px;
}
@media (max-width:900px){ .tech-grid{ grid-template-columns:1fr; } }

.tech-item{
  position:relative;
  padding:16px 16px 16px 16px;
}
.tech-item:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  padding:1px;
  background: linear-gradient(90deg, rgba(180,107,255,.45), rgba(74,214,255,.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}
.tech-item h3{ margin:0 0 6px; font-size:16px; }
.tech-item p{ margin:0; color:var(--muted); font-size:13.5px; line-height:1.55; }

.badges{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:center;
  margin:14px 0 6px;
}
.badge{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  padding:8px 10px; border-radius:999px;
  font-size:12.5px; color:var(--muted);
}

/* Buttons */
.btn-assinar, .nav-cta{
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color:#071019 !important;
  border:none;
  border-radius:14px;
  font-weight:900;
  box-shadow:0 12px 28px rgba(180,107,255,.18);
}
.btn-assinar:hover, .nav-cta:hover{ filter:brightness(1.05); transform: translateY(-1px); }
.btn-assinar{ display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:12px 14px; }

/* Plan cards (se existirem classes) */
.plano, .plano-card, .card-plano{
  background: linear-gradient(180deg, var(--card), var(--card2));
  border:1px solid var(--stroke);
  border-radius:18px;
}
.plano:hover, .plano-card:hover, .card-plano:hover{
  transform: translateY(-2px);
  transition: transform .18s ease, filter .18s ease;
}

/* Header: dark tech */
.site-header{
  background: rgba(11,16,32,.72);
  border-bottom:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px) saturate(140%);
}
.site-nav a{ color:var(--text); opacity:.9; }
.site-nav a:hover{ background:rgba(255,255,255,.06); opacity:1; }

/* Footer */
.site-footer{ background:rgba(255,255,255,.03); border-top:1px solid rgba(255,255,255,.10); }
.site-footer__links a{ color:var(--text); }

/* WhatsApp button (keep green but tech style) */
.whatsapp-float{
  background: linear-gradient(180deg, rgba(37,211,102,1), rgba(24,170,78,1));
  color:#071019;
  border:1px solid rgba(255,255,255,.18);
}

/* Section */
.section{
  margin:22px 0;
}
.section h2{ margin:0 0 10px; font-size:20px; }
.section p{ color:var(--muted); }

/* --- Hero Tech --- */
.hero-tech{
  margin:18px 0 26px;
  padding:28px 18px;
  border-radius:22px;
  background:
    radial-gradient(600px 300px at 10% 0%, rgba(180,107,255,.35), transparent 55%),
    radial-gradient(600px 300px at 90% 0%, rgba(74,214,255,.28), transparent 55%),
    linear-gradient(180deg, rgba(15,23,48,.9), rgba(8,12,28,.9));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 22px 60px rgba(0,0,0,.45);
}
.hero-inner{ max-width:980px; margin:0 auto; text-align:center; }
.hero-tech h1{ font-size:clamp(30px,4vw,44px); margin:0 0 10px; }
.hero-tech p{ color:var(--muted); font-size:16px; margin:0 0 18px; }
.hero-actions{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* Outline button */
.btn-outline{
  border:1px solid rgba(255,255,255,.25);
  color:var(--text);
  padding:12px 14px;
  border-radius:14px;
  font-weight:900;
}
.btn-outline:hover{ background:rgba(255,255,255,.06); }

/* --- Tech table --- */
.table-wrap{ overflow-x:auto; }
.tech-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  margin-top:12px;
  background: linear-gradient(180deg, var(--card), var(--card2));
  border:1px solid var(--stroke);
  border-radius:16px;
  overflow:hidden;
}
.tech-table th, .tech-table td{
  padding:12px 10px;
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.tech-table th{ background:rgba(255,255,255,.05); font-size:13.5px; }
.tech-table td:first-child, .tech-table th:first-child{ text-align:left; padding-left:14px; }
.tech-table tr:last-child td{ border-bottom:none; }

/* --- Recursos (grid) --- */
.resources-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}
@media (max-width:900px){
  .resources-grid{ grid-template-columns:1fr; }
}
.muted{ color: var(--muted); }

/* --- Grid de planos --- */
.planos-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
  margin:18px 0;
}
@media (max-width:1100px){ .planos-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width:700px){ .planos-grid{ grid-template-columns: 1fr; } }

.plano{ padding:16px; }
.plano .preco{ margin:8px 0 10px; color: var(--muted); }
.plano ul{ margin:0; padding-left:18px; line-height:1.9; color: var(--muted); }

/* --- FIX PLANOS MOBILE (garante que todos apareçam) --- */
.planos-grid{ align-items:stretch; }
.plano{ display:block; }
@media (max-width:700px){
  .planos-grid{ grid-template-columns: 1fr !important; }
}

/* --- FIX PLANOS CONTAINER (Light + demais juntos e responsivos) --- */
.planos{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
  margin:18px 0;
}
@media (max-width:1100px){ .planos{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width:700px){ .planos{ grid-template-columns: 1fr; } }

.planos .plano{ display:block; height:auto; }
