/* =========================================================
   SEÇÕES / CARDS / LISTAS
   ========================================================= */
.section{padding:40px 0;background:#fff}
.section--light{background:#fff}

/* Central de Serviços — mesmo fundo da faixa .features */
.section-help{
  padding:40px 0;
  background:linear-gradient(180deg,#4B0053 0%,#2b0031 100%);
  border-top:1px solid #3b003f;
  border-bottom:1px solid #3b003f;
}

.section.alt,
.section--alt{background:var(--surface-alt)}

.plans{
  display:grid;
  grid-template-columns:repeat(3,minmax(220px,1fr));
  gap:20px;
}
.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:20px;
  padding:24px;
  position:relative;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow:var(--shadow);
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(16,24,40,.12);
}
.card h3{
  margin:0 0 .4rem;
  font-size:1.4rem;
  color:#0b0f19;
}

.price-wrap{
  display:flex;
  align-items:baseline;
  gap:.6rem;
  margin:.5rem 0 1rem;
}
.price{
  font-size:2rem;
  font-weight:800;
  color:#0b0f19;
}
.old{color:#9aa4b2;text-decoration:line-through}
.per{color:#64748b}

.benefits{
  display:grid;
  gap:.4rem;
  margin:1rem 0;
}
.benefits li{
  display:flex;
  align-items:center;
  gap:.5rem;
  list-style:none;
  color:#0f172a;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  font-size:.8rem;
  font-weight:700;
  padding:.35rem .6rem;
  border-radius:999px;
  background:rgba(107,75,255,.1);
  color:var(--accent);
}
.badge.off{
  position:absolute;
  top:16px;
  right:16px;
  background:rgba(53,182,255,.15);
  color:#0284c7;
}

/* ---- Perks / Apps ---- */
.perks{
  display:grid;
  grid-template-columns:repeat(3,minmax(200px,1fr));
  gap:16px;
}

/* CARD dos apps (Disney+, Deezer, Max...) */
.perk{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
  display:flex;
  align-items:center;
  gap:24px;
  box-shadow:var(--shadow);
  min-height:260px;
}

/* ÍCONE BEM GRANDE (~6x maior que o original visual) */
.perk img{
  width:180px;          /* tamanho padronizado dos logos */
  height:auto;
  flex:0 0 auto;
  border-radius:14px;
  object-fit:contain;   /* mantém logo certinho dentro */
}

/* Texto dos apps */
.perk .title{
  font-weight:700;
  color:#0b0f19;
  font-size:1.2rem;
}
.perk .desc{
  font-size:1rem;
  color:var(--muted);
}

/* =========================
   AVALIAÇÕES GOOGLE (CommonNinja)
   ========================= */

.section-reviews{
  background:#f9fafb;
  padding:56px 0 48px;
}

.section-reviews .reviews-inner{
  max-width:1040px;
  margin:0 auto;
}

.section-reviews .reviews-title{
  text-align:center;
  font-size:1.8rem;
  line-height:1.3;
  margin:0 0 .35rem;
  color:#111827;
}

.section-reviews .reviews-sub{
  text-align:center;
  max-width:520px;
  margin:0 auto 1.8rem;
  font-size:.98rem;
  color:var(--muted);
}

/* Card que envolve o widget */
.section-reviews .reviews-card{
  background:#ffffff;
  border-radius:24px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  padding:22px 22px 18px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* Badge "Avaliações do Google" */
.section-reviews .reviews-badge{
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.35rem .75rem;
  border-radius:999px;
  background:rgba(66,133,244,.08); /* azul Google transparente */
  color:#2563eb;
  font-size:.8rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.09em;
}

.section-reviews .reviews-badge::before{
  content:"★";
  font-size:.9rem;
  color:#fbbf24;
}

/* Área do widget em si */
.section-reviews .reviews-widget{
  margin-top:.3rem;
}

/* Tenta forçar o widget a ocupar 100% da largura do card */
.section-reviews .reviews-widget iframe,
.section-reviews .reviews-widget > div{
  width:100% !important;
  max-width:100% !important;
}

/* Só pra garantir um mínimo de altura pro bloco */
.section-reviews .reviews-widget{
  min-height:260px;
}

/* Mobile – um pouco mais de respiro lateral */
@media (max-width: 700px){
  .section-reviews{
    padding:40px 0 36px;
  }
  .section-reviews .reviews-card{
    border-radius:20px;
    padding:18px 14px 16px;
  }
  .section-reviews .reviews-title{
    font-size:1.5rem;
  }
}

/* ---- FAQ / Acordeão (versão antiga genérica) ---- */
.faq{max-width:900px;margin:0 auto}
.accordion{
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}
.ac-item{border-bottom:1px solid var(--border)}
.ac-item:last-child{border-bottom:0}
.ac-btn{
  width:100%;
  text-align:left;
  background:#fff;
  color:#0b0f19;
  padding:16px 18px;
  border:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}
.ac-panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease, padding .25s ease;
  background:#fff;
  padding:0 18px;
}
.ac-panel.open{padding:18px}
.ac-icon{font-weight:700}

/* =========================================
   PLANOS — ESTILO BRISNET
   ========================================= */

.section-planos-res {
  background: #f4f5fb;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  padding-left: 0;
  padding-right: 0;
}

/* CONTAINER dos planos centralizado e mais largo */
.section-planos-res .container {
  max-width: 1400px;
  margin: 0 auto !important;
  padding-left: 20px;
  padding-right: 20px;
}

/* Cabeçalho da seção */

.planos-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 3.2rem;
}

.planos-title {
  font-size: clamp(2.1rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.6rem;
}

.planos-sub {
  margin: 0;
  max-width: 560px;
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Pill de localização */

.planos-location {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.4rem;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.planos-location .loc-icon svg {
  width: 28px;
  height: 28px;
  fill: #4f46e5;
}

.loc-text {
  display: flex;
  flex-direction: column;
}

.loc-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
}

.loc-city {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Grid dos planos */

/* GRADE DE PLANOS — 5 CARDS EM LINHA NO DESKTOP, MAIS LARGOS */
.planos-grid {
  display: grid;
    grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 24px;
  justify-items: center;
  width: 100%;
}

/* Cada card de plano */
.plano-card{
  width: 100%;
}

/* Card base */

.plano-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #e5e7eb;
  padding: 2.6rem 2.3rem 2.3rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  min-width: 260px;
}
/* Card em destaque (700 mega) */
.plano-card--featured{
  border: 2px solid #7c3aed;
  box-shadow: 0 24px 60px rgba(124, 58, 237, .35);
  transform: translateY(-6px);
  padding-top: 3.4rem; /* espaço extra por causa da faixa */
}

/* Faixa "MAIS ESCOLHIDO" no topo do card */
.plano-card--featured .plano-badge{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, #7c3aed 0%, #ec4899 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
  color: #ffffff;
}

/* Em telas pequenas, sobe o card um pouco menos */
@media (max-width: 768px){
  .plano-card--featured{
    transform: translateY(-4px);
  }
}


/* Topo: ícone + velocidade */

.plano-top {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* Ícone Wi-Fi animado (maior) */

.wifi-icon {
  width: 64px;
  height: 64px;
  color: #fbbf24; /* amarelo */
  animation: wifi-bounce 1.8s ease-in-out infinite;
}

.wifi-icon .arc,
.wifi-icon .dot {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wifi-icon .dot {
  fill: currentColor;
  stroke: none;
}

@keyframes wifi-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* MEGA grande e azul */

.plano-speed {
  font-size: 2.6rem;       /* bem grande */
  font-weight: 800;
  color: #1f3b7b;          /* azul parecido com o da BrisNet */
  text-transform: lowercase;
}

/* Linha divisória entre Mega e preço */

.plano-price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid #e5e7eb;
}

.plano-currency {
  font-size: 1.1rem;
  color: #111827;
}

.plano-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111827;
}

.plano-per {
  font-size: 0.95rem;
  color: #6b7280;
}

/* Lista de benefícios com "ícone" à esquerda */

.plano-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.8rem;
  font-size: 0.98rem;
  color: #374151;
}

.plano-list li {
  position: relative;
  padding-left: 1.7rem;
}

.plano-list li + li {
  margin-top: 0.55rem;
}

/* bolinha azul simulando ícone */
.plano-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  border: 2px solid #2563eb;
}

/* Ações */

.plano-actions {
  margin-top: auto;
}

/* garante cursor de clique nos botões ASSINE AGORA (que são <button>) */
button.btn-square{
  cursor:pointer;
}

.plano-actions .btn {
  width: 100%;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Responsivo */

@media (max-width: 992px) {
  .planos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .planos-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .planos-grid {
    grid-template-columns: 1fr;
  }

  .plano-card {
    padding: 2.2rem 1.9rem;
  }

  .planos-location {
    margin-top: 0.75rem;
  }

  .plano-speed {
    font-size: 2.3rem;
  }

  .plano-value {
    font-size: 2.4rem;
  }
}

/* ====================
   FAQ — Acordeão PrimeNet
   ==================== */

.section-faq .faq-inner{
  max-width: 960px;
  margin: 0 auto;
}

.section-faq .faq-head{
  text-align: center;
  margin-bottom: 2rem;
}

.section-faq .faq-title{
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: .4rem;
  color: #111827;
}

.section-faq .faq-sub{
  max-width: 640px;
  margin: 0 auto;
  font-size: .98rem;
  color: var(--muted);
}

.section-faq .faq-list{
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

/* Card do item */
.section-faq .ac-item{
  border-radius: 16px;
  background: rgba(75,0,83,.10);
  border: 1px solid rgba(75,0,83,.22);
  box-shadow: 0 20px 45px rgba(75,0,83,.18);
  overflow: hidden;
}

/* Botão (pergunta) */
.section-faq .ac-btn{
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 1.15rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .98rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
}

.section-faq .ac-btn:hover{
  background: rgba(75,0,83,.09);
}

/* Ícone seta */
.section-faq .ac-icon{
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(75,0,83,.25);
  background: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background .15s ease,
    border-color .15s ease,
    transform .15s ease;
  font-size: 0;
}

.section-faq .ac-icon::before{
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #4B0053;
  border-bottom: 2px solid #4B0053;
  transform: rotate(45deg);
  transition: transform .15s ease, border-color .15s ease;
}

/* Quando aberto */
.section-faq .ac-btn[aria-expanded="true"] .ac-icon{
  background: #4B0053;
  border-color: #4B0053;
}

.section-faq .ac-btn[aria-expanded="true"] .ac-icon::before{
  border-color: #ffffff;
  transform: rotate(-135deg);
}

/* Conteúdo da resposta */
.section-faq .ac-panel{
  display: none;
  padding: 0 1.5rem 1.2rem 1.5rem;
  border-top: 1px solid rgba(249,250,251,.7);
  font-size: .94rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Mostra painel quando JS marcar aria-expanded=true */
.section-faq .ac-btn[aria-expanded="true"] + .ac-panel{
  display: block;
}

/* Responsivo */
@media (max-width: 700px){
  .section-faq .faq-inner{
    max-width: 100%;
  }
  .section-faq .faq-title{
    font-size: 1.6rem;
  }
  .section-faq .ac-btn{
    padding: 1rem 1.1rem;
  }
  .section-faq .ac-panel{
    padding: 0 1.1rem 1rem 1.1rem;
  }
}

/* ==========================
   CAD — MODAL ASSINE AGORA
   ========================== */
.cad-overlay{
  position:fixed;
  inset:0;
  padding:1.5rem;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(15,23,42,.78);
  z-index:9999;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
}

.cad-overlay.is-open{
  opacity:1;
  pointer-events:auto;
}

body.cad-open{
  overflow:hidden;
}

.cad-modal{
  position:relative;
  width:100%;
  max-width:480px;
  border-radius:24px;
  padding:2.2rem 2.1rem 2rem;
  background:
    radial-gradient(circle at top left, rgba(251,191,36,.18), transparent 55%),
    radial-gradient(circle at top right, rgba(59,130,246,.18), transparent 55%),
    linear-gradient(135deg,#4B0053 0%,#2b0031 50%,#050816 100%);
  box-shadow:0 24px 70px rgba(15,23,42,.85);
  color:#f9fafb;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}

/* Botão de fechar (X) */
.cad-close{
  position:absolute;
  top:14px;
  right:14px;
  width:32px;
  height:32px;
  border-radius:999px;
  border:0;
  background:rgba(15,23,42,.7);
  color:#e5e7eb;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1.3rem;
  line-height:1;
  cursor:pointer;
  transition:background .15s ease, transform .15s ease, color .15s ease;
}

.cad-close:hover{
  background:#f9fafb;
  color:#111827;
  transform:translateY(-1px);
}

/* Título e subtítulo */
.cad-title{
  margin:0 0 .2rem;
  font-size:1.45rem;
  font-weight:700;
  letter-spacing:.02em;
  text-align:center;
}

.cad-sub{
  margin:0 0 1.7rem;
  font-size:.9rem;
  color:rgba(226,232,240,.85);
  text-align:center;
}

/* Form */
.cad-form{
  display:flex;
  flex-direction:column;
  gap:.75rem;
}

/* Campo */
.cad-field{
  display:flex;
  flex-direction:column;
  gap:.28rem;
}

.cad-field label{
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:#e5e7eb;
}

.cad-field input,
.cad-field select{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(148,163,184,.75);
  background:rgba(15,23,42,.75);
  color:#f9fafb;
  padding:.7rem .85rem;
  font-size:.9rem;
  outline:none;
  transition:border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.cad-field input::placeholder{
  color:rgba(148,163,184,.9);
}

.cad-field select{
  appearance:none;
}

.cad-field input:focus,
.cad-field select:focus{
  border-color:#fbbf24;
  box-shadow:0 0 0 1px rgba(251,191,36,.45);
  background:rgba(15,23,42,.98);
}

/* Ações */
.cad-actions{
  margin-top:.6rem;
}

.cad-actions .cad-submit{
  width:100%;
}

/* Observação final */
.cad-obs{
  margin:.85rem 0 0;
  font-size:.8rem;
  color:rgba(209,213,219,.8);
}

/* Mobile */
@media(max-width:600px){
  .cad-modal{
    padding:1.8rem 1.4rem 1.6rem;
    border-radius:20px;
  }
  .cad-title{
    font-size:1.25rem;
  }
}

/* Centralizar o card do formulário */
.row--cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
}

/* Deixar ambos os cards com a mesma base */
.row--cards .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Botão do formulário completamente centralizado */
#contato .btn-primary {
  justify-content: center;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 14px 0;
  font-weight: 600;
  font-size: 1rem;
}

/* Overrides finais de largura do container e centralização dos planos */
.section-planos-res .container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
.planos-grid {
  width: 100%;
  justify-content: center; /* garante centralização REAL */
}
/* Remove completamente as fotos dos avaliadores */
.comm-reviews .cn-review-item-header img,
.comm-reviews .cn-review-item-avatar,
.comm-reviews .cn-avatar,
.comm-reviews img.cn-avatar,
.comm-reviews [class*="avatar"],
.comm-reviews img {
    display: none !important;
}
/* ============================
   SEÇÃO DE AVALIAÇÕES (REVIEWS)
   Centralizar título e subtítulo
   ============================ */

.section-reviews {
  text-align: center;            /* fallback geral */
}

.section-reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Cabeçalho da seção (título + subtítulo) */
.section-reviews-head {
  display: flex;
  flex-direction: column;
  align-items: center;           /* centraliza horizontalmente */
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Garante que NADA force alinhamento à esquerda */
.section-reviews-title,
.section-reviews-sub {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
