/* ============================================================
   MASTER INTERNET – master-esportes.css
   Página do benefício Master Esportes (complementa servico.css)
   ============================================================ */

.esp-hero {
  position: relative;
  margin-top: 32px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%) var(--blue-dk);
  background-size: cover;
  background-position: center;
  padding: 44px 40px;
  color: #fff;
  box-shadow: var(--shadow-card);
}
.esp-hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,26,128,.4) 0%, rgba(0,26,128,.15) 100%);
  pointer-events: none;
}
.esp-hero > *:not(.esp-hero-overlay) { position: relative; z-index: 2; }
.esp-hero .svc-kicker { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.28); }
.esp-hero h1 { margin: 16px 0 6px; font-size: clamp(28px, 4vw, 44px); font-weight: 900; line-height: 1.1; }
.esp-hero .esp-tagline { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.esp-hero p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.92); max-width: 640px; }
.esp-hero .svc-btn.wa { margin-top: 22px; width: fit-content; }

@media (max-width: 680px) {
  .esp-hero { padding: 32px 22px; }
}

.esp-section {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  margin-top: 24px;
}
.esp-section h2 { font-size: 24px; font-weight: 900; margin-bottom: 12px; color: var(--gray-900); }
.esp-section > p { color: var(--gray-500); font-size: 15px; max-width: 760px; }

.esp-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.esp-benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--gray-700);
  background: var(--gray-50);
  border-radius: var(--r-sm);
  padding: 12px 14px;
}
.esp-benefits li svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; color: var(--blue); }

.esp-community {
  margin-top: 22px;
  background: var(--blue-lt);
  border: 1.5px dashed var(--blue-md);
  border-radius: var(--r-md);
  padding: 24px;
}
.esp-community h3 { font-size: 19px; font-weight: 900; color: var(--gray-900); font-family: var(--font-heading); margin-bottom: 8px; }
.esp-community p { font-size: 14px; color: var(--gray-700); }

.esp-plan-card--highlight { border-color: var(--blue); box-shadow: 0 8px 28px -14px rgba(0,51,204,.35); }
.esp-plan-card--highlight .svc-plan-flag { background: var(--blue); color: #fff; }

.esp-channel-count { display: flex; align-items: baseline; gap: 6px; color: var(--gray-900); }
.esp-channel-count .val { font-size: 34px; font-weight: 900; line-height: 1; font-family: var(--font-heading); color: var(--blue); }
.esp-channel-count .label { font-size: 14px; color: var(--gray-500); font-weight: 700; }

.esp-plans-cta { margin-top: 22px; text-align: center; }
.esp-plans-cta .svc-btn.wa { display: inline-flex; }

.esp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.esp-stat-card { background: var(--gray-50); border-radius: var(--r-md); padding: 22px; }
.esp-stat-num { font-size: 28px; font-weight: 900; color: var(--blue); font-family: var(--font-heading); line-height: 1; }
.esp-stat-card p { font-size: 14px; color: var(--gray-700); margin-top: 8px; }

.esp-faq { display: grid; gap: 12px; margin-top: 20px; }
.esp-faq details {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 16px 18px;
  background: #fff;
  transition: border-color var(--dur) var(--ease);
}
.esp-faq details[open] { border-color: var(--blue-md); }
.esp-faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  color: var(--gray-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.esp-faq summary::-webkit-details-marker { display: none; }
.esp-faq summary::after { content: "+"; color: var(--blue); font-size: 20px; font-weight: 400; flex-shrink: 0; }
.esp-faq details[open] summary::after { content: "−"; }
.esp-faq p { margin-top: 12px; color: var(--gray-500); font-size: 14.5px; line-height: 1.6; }

.esp-cta {
  margin-top: 28px;
  background: var(--blue-dk);
  border-radius: var(--r-xl);
  padding: 44px 32px;
  text-align: center;
  color: #fff;
}
.esp-cta h2 { font-size: 26px; font-weight: 900; margin-bottom: 18px; }
.esp-cta .svc-btn.wa { display: inline-flex; margin: 0 auto; }
