/* ═══════════════════════════════════════════════════════
   COMBOS — Design Moderno (Internet + TV)
═══════════════════════════════════════════════════════ */

/* ── Seção ── */
.combos-section {
  position: relative;
  padding: 72px 0 100px;
  background: #f4f7fb;
  overflow: hidden;
}

/* Orbs decorativos */
.combos-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  animation: combos-orb-float 16s ease-in-out infinite;
}
.combos-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(90,60,160,0.08) 0%, transparent 65%);
  top: -150px; left: -80px;
}
.combos-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(4,110,162,0.07) 0%, transparent 65%);
  bottom: -120px; right: -60px;
  animation-delay: -8s;
}
@keyframes combos-orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-18px) scale(1.05); }
}

/* ── Header ── */
.combos-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
}
.combos-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: 50px;
  background: rgba(90,60,160,0.09);
  border: 1px solid rgba(90,60,160,0.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #5a3ca0;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.combos-titulo {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.combos-titulo span {
  background: linear-gradient(135deg, #E6903F 20%, #ff9f52 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.combos-sub {
  font-size: 16px;
  color: rgba(26,26,46,0.5);
  margin: 0;
}

/* ── Swiper ── */
.combos-swiper {
  position: relative;
  z-index: 2;
}
.combos-section .swiper-container {
  overflow: visible;
}

/* ── Card ── */
.combo-card {
  background: linear-gradient(160deg, #4a2d8a 0%, #2d1b5e 100%);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(74,45,138,0.28);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
}
.combo-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 28px 60px rgba(74,45,138,0.40);
}

/* Brilho diagonal */
.combo-card::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}
.combo-card:hover::after { left: 130%; }

/* Card destaque */
.combo-card--destaque {
  background: linear-gradient(160deg, #E6903F 0%, #c4741e 100%);
  box-shadow: 0 8px 32px rgba(230,144,63,0.30);
}
.combo-card--destaque:hover {
  box-shadow: 0 28px 60px rgba(230,144,63,0.42);
}

/* Badge Popular */
.combo-popular-tag {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* ── Corpo ── */
.combo-corpo {
  padding: 28px 22px 26px;
  position: relative;
  z-index: 2;
}

/* ── Ícones WiFi + TV ── */
.combo-icones-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}
.combo-icone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.combo-icone-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}
.combo-icone-wifi {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
}
.combo-icone-tv {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
}
.combo-plus {
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  margin-bottom: 22px;
}

/* ── Nome ── */
.combo-nome {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  text-align: center;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

/* ── Badges canais / streaming ── */
.combo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}
.combo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.combo-badge--canais {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
}
.combo-badge--streaming {
  background: rgba(229,9,20,0.25);
  border: 1px solid rgba(229,9,20,0.5);
  color: #ff6b6b;
}
.combo-card--destaque .combo-badge--streaming {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

/* ── Preço ── */
.combo-preco-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 12px 18px;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}
.combo-rs {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  line-height: 1;
}
.combo-valor {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-family: 'Rubik', 'Inter', sans-serif;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.combo-mes {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-left: 2px;
}

/* ── Features ── */
.combo-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.combo-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  line-height: 1.3;
}
.combo-features li:last-child { border-bottom: none; }
.combo-features li::before {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  min-width: 18px;
  background: rgba(255,255,255,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23ffffff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

/* ── CTA ── */
.combo-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 12px;
  text-decoration: none !important;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.combo-cta:hover {
  background: rgba(255,255,255,0.95);
  color: #4a2d8a !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.combo-card--destaque .combo-cta:hover {
  color: #E6903F !important;
}
.combo-cta .fa {
  transition: transform 0.3s;
  font-size: 13px;
}
.combo-cta:hover .fa { transform: translateX(5px); }

/* ── Responsivo ── */
@media (max-width: 767px) {
  .combos-section  { padding: 52px 0 72px; }
  .combos-titulo   { font-size: 1.8rem; }
  .combo-valor     { font-size: 2.2rem; }
  .combo-corpo     { padding: 22px 18px 22px; }
  .combo-icone-circle { width: 44px; height: 44px; font-size: 17px; }
}
