/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color .2s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

/* ── Hero do produto ── */
.prod-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), url('../hero-bg.jpg') center/cover no-repeat;
  padding: 100px 0 72px;
}

.prod-hero.telefone-satelital {
  background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), url('../img/telefone-satelital.jpg') center/cover no-repeat;
}

.prod-hero.starlink-mini {
  background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), url('../img/starlink-mini.jpg') center/cover no-repeat;
}

.prod-hero.rastreadores-spot {
  background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), url('../img/rastreadores-spot.jpg') center/cover no-repeat;
}

.prod-hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  margin-bottom: 20px;
}

.prod-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.prod-hero h1 .accent {
  color: #BA29A6;
}

.prod-hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 580px;
}

.prod-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Seções de conteúdo ── */
.content-sec {
  padding: 72px 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.content-sec-alt {
  padding: 72px 0;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

/* ── Cabeçalhos de seção light ── */
.sec-label-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #BA29A6;
  margin-bottom: 12px;
}

.sec-label-light::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: #BA29A6;
  flex-shrink: 0;
}

.sec-title-light {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0f1c2e;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.sec-sub-light {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.75;
  max-width: 560px;
}

.sec-hdr-light {
  margin-bottom: 44px;
}

.sec-hdr-light.center {
  text-align: center;
}

.sec-hdr-light.center .sec-sub-light {
  margin: 0 auto;
}

/* ── Specs ── */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.specs-table tr {
  border-bottom: 1px solid #e5e7eb;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 12px 8px;
  font-size: 0.875rem;
}

.specs-table td:first-child {
  color: #6b7280;
  width: 45%;
  font-weight: 500;
}

.specs-table td:last-child {
  color: #0f1c2e;
  font-weight: 500;
}

.why-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
}

.why-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.why-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: #374151;
}

.why-card ul li i {
  color: #BA29A6;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Diferenciais ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.diff-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.diff-card:hover {
  border-color: #BA29A6;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(186, 41, 166, .1);
}

.diff-card i {
  color: #BA29A6;
  font-size: 1.25rem;
}

.diff-card strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f1c2e;
}

.diff-card span {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ── Casos de uso ── */
.use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.use-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.use-card:hover {
  border-color: #BA29A6;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(186, 41, 166, .08);
}

.use-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(186, 41, 166, 0.08);
  border-radius: 10px;
  color: #BA29A6;
  font-size: 1.1rem;
}

.use-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f1c2e;
}

.use-card p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
}

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 32px 24px;
}

.step-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(186, 41, 166, .18);
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f1c2e;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
}

/* ── CTA ── */
.cta-box {
  background: #0f1c2e;
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  font-size: 1rem;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

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

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .cta-box {
    padding: 36px 20px;
  }
}