:root {
  --radius: 16px;
  --shadow: 0 20px 48px rgba(12, 16, 44, 0.08);
  --bg: #ffffff;
  --text: #1f1539;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-theme="purple"] {
  --brand: #3d0f75;
  --brand-2: #6b2bd9;
  --brand-3: #efe9ff;
  --brand-dark: #240a4a;
  --lav: #e6d6ff;
  --border: #e7e7f3;
  --brand-logo-h: 50px;

  /* Apple-inspired color system */
  --system-purple: #6b2bd9;
  --system-purple-light: #8555e2;
  --system-purple-dark: #4e1d9e;
  --system-gray: #8e8e93;
  --system-gray-2: #aeaeb2;
  --system-gray-3: #c7c7cc;
  --system-gray-4: #d1d1d6;
  --system-gray-5: #e5e5ea;
  --system-gray-6: #f7f7fa;

  /* Celular palette (moved here to avoid duplicate :root blocks) */
  --cel-green: var(--brand-2);
  --cel-green-2: #7a45e6;
  --cel-green-3: var(--brand-3);
  --cel-border: #e7e3f5;
}

html,
body {
  height: 100%;
}
body {
  background: linear-gradient(-90deg, #f7f7f7 49%, #fff 0);
  color: var(--text);
  font-family: "Nunito", ui-rounded, "SF Pro Rounded", system-ui, -apple-system,
    Segoe UI, Roboto, Helvetica, Arial;
}

.brand-grad {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.shadow-soft {
  box-shadow: none;
}
.rounded-xl {
  border-radius: var(--radius);
}

/* Layout 70/30: col-main (70%) e sidebar-col (30%) */
.col-main {
  box-sizing: border-box;
}
.sidebar-col {
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .col-main {
    max-width: 70%;
  }
  .sidebar-col {
    max-width: 30%;
  }
}
@media (max-width: 991px) {
  .col-main,
  .sidebar-col {
    max-width: 100%;
  }
}

/* Backgrounds for the two columns */
.col-main {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
}
.sidebar-col {
  padding: 1.25rem;
}

/* Ensure spacing between columns on large screens */
@media (min-width: 992px) {
  .row.g-4 > .col-main {
    margin-right: 2%;
  }
}
.display-6 {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

/* Layout refinements */
.sidebar-col {
  min-height: 100vh;
  height: 100%;
}
@media (max-width: 992px) {
  .sidebar-col {
    background: transparent;
    border: 0;
    min-height: auto;
  }
}
.sticky-aside {
  position: sticky;
  top: 1.25rem;
}
.mini {
  font-size: 0.92rem;
}
.h6,
.h5,
.h4 {
  margin: 0;
}

/* Section header */
.section-card .card-header {
  background: #fff;
  border-bottom: none !important;
  padding: 1rem 1.25rem;
}
.section-card {
  margin-bottom: 1rem;
}
.section-card .btn.btn-pill {
  padding: 0.45rem 1rem;
}
/* icon-circle defined below with full styles */
.section-header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand-3);
  color: var(--brand-2);
}
.section-title {
  font-weight: 800;
}

/* Buttons */
.btn-pill {
  border-radius: 999px;
}
.btn-cta {
  background: var(--system-purple);
  border: 0;
  color: #fff;
  transition: var(--transition);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.btn-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: var(--transition);
}
.btn-cta:hover,
.btn-cta:active {
  color: #fff !important;
  background: var(--system-purple-light);
  transform: translateY(-1px);
}
.btn-cta:hover:before {
  opacity: 1;
}
.btn-cta:disabled {
  background: #ece9fb !important;
  color: #a99be8 !important;
  box-shadow: none;
  transform: none;
}
.btn-toggle-open {
  background: #fff;
  border: 1px solid #d7d7ec;
  color: #3d0f75;
}
.btn-toggle-open:hover {
  background: #f7f5ff;
  border-color: #cfc7f6;
  color: var(--brand-2);
}

/* (Removed mobile overrides to keep padrão) */

/* Chips de features (geral) */
.included-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

/* Mobile UX refinements */
@media (max-width: 576px) {
  /* 1) Ocultar stepper no mobile para reduzir ruído visual */
  .stepper { display: none !important; }

  /* 2) Botão de ação no cabeçalho em formato somente ícone */
  .section-card .btn-icon-only {
    width: 40px;
    height: 40px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
  }
  .section-card .btn-icon-only i {
    font-size: 18px;
    line-height: 1;
  }

  /* 3) Ícone circular menor para harmonizar a linha do cabeçalho */
  .icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    padding: 7px 5px;
    display: grid;
    place-items: center;
  }
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #e6edf6;
  font-size: 0.82rem;
  color: #304659;
}

/* === INTERNET === */
.plan-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--system-gray-5);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  transition: var(--transition);
}
.plan-card:hover {
  background: var(--system-gray-6);
  border-color: var(--system-purple);
}

/* ribbon removida */
.ribbon {
  display: none !important;
}

/* Título central em 2 linhas */
.mega-stack {
  text-align: center;
  margin-bottom: 0.5rem;
}
.mega-num {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  line-height: 1;
  color: var(--brand-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-sub {
  margin-top: 0.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.875rem;
  color: var(--system-gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Lista de features */
.feature-list {
  list-style: none;
  margin: 12px 0 18px;
  padding: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #2f2b45;
  margin: 0.45rem 0;
  font-size: 0.95rem;
}
.feature-item i {
  color: var(--brand-2);
}

/* PREÇO — “apenas / R$ 134,99 / por mês” */
.price-block {
  margin-top: 8px;
  text-align: center;
}
.price-eyebrow {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 2px;
}
.price-one {
  display: inline-block;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.6rem, 4.4vw, 2.2rem);
  color: var(--brand-dark);
}
.price-one .price-cur {
  font-size: 0.6em;
  font-weight: 800;
}
.price-one .price-major {
  font-size: 1.25em;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.price-one .price-sep {
  font-size: 0.8em;
  font-weight: 800;
}
.price-one .price-cents {
  font-size: 1.25em;
  font-weight: 900;
}
.price-foot {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 2px;
}

/* Logo parceria */
.cta-area {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brand-chip {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px dashed #d9cdfa;
  border-radius: 12px;
  padding: 0.35rem 0.55rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  max-width: 180px;
}
.brand-chip img {
  display: block;
  height: var(--brand-logo-h);
  width: auto;
  object-fit: contain;
}

/* CTA */
.btn-ghost {
  border-radius: 12px;
  padding: 0.6rem 1rem;
  font-weight: 700;
  border: 1px solid #d9cdfa;
  background: #f4edff;
  width: 100%;
  display: block;
  text-align: center;
  white-space: nowrap;
}
.btn-ghost:hover {
  background: #efe3ff;
}

/* Cart */
.sticky-aside {
  position: sticky;
  top: 1rem;
}
.cart-card {
  border-radius: 12px;
  background: var(--system-gray-6);
  border: 1px solid var(--system-gray-5);
  transition: var(--transition);
}
.cart-card:hover {
  border-color: var(--system-gray-4);
}
.cart-card .card-header {
  border-bottom: 1px solid var(--system-gray-5);
  padding: 16px 20px;
  background: transparent;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.cart-card .list-group-item {
  border: 0;
  padding: 10px 0px 10px 0px;
  background: transparent;
  transition: var(--transition);
}
.cart-card .list-group-item:hover {
  background: var(--system-gray-6);
}
.cart-card .list-group-item + .list-group-item {
  border-top: 1px solid var(--system-gray-5);
}

button.btn.btn-sm.btn-outline-danger {
  width: 25px;
  height: 25px;
}

/* Slightly tighter list padding for cart items */
.cart-list .list-group-item {
  padding-left: 12px;
  padding-right: 12px;
}

/* Remove (X) button refinement */
.cart-price .btn {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 8px;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}
.cart-price .btn i {
  font-size: 0.95rem;
}
.cart-price .btn.btn-outline-danger {
  border-color: rgba(220, 53, 69, 0.18);
  color: #d23a4a;
  background: transparent;
}
.cart-price .btn.btn-outline-danger:hover {
  background: rgba(220, 53, 69, 0.06);
}
.cart-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.cart-left {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.cart-ico {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--system-gray-5);
  color: var(--system-purple);
  font-size: 0.875rem;
}
.cart-title {
  font-weight: 600;
  line-height: 1.2;
  font-size: 0.95rem;
  color: var(--text);
  max-width: 240px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-price {
  white-space: nowrap;
  font-weight: 700;
  color: var(--system-purple);
  font-size: 0.95rem;
}
.btn-brand {
  background: var(--brand-2);
  color: #fff;
  border: 1px solid var(--brand-2);
}
.btn-brand:hover {
  background: #7a45e6;
  border-color: #7a45e6;
  color: #fff;
}
.text-brand {
  color: var(--brand-2);
}
.btn-checkout {
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-weight: 800;
}

/* Summary box (checkout) */
.summary-box {
  border: 1px solid var(--system-gray-5);
  background: #fbfdfd;
  border-radius: 12px;
  padding: 1rem;
}
.summary-grid .text-muted {
  font-weight: 700;
  opacity: 0.7;
}

/* Brand outline button (used in confirm modal) */
.btn-outline-brand {
  background: #fff;
  border: 1px solid var(--brand-2);
  color: var(--brand-2);
}
.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: var(--brand-3);
  border-color: var(--brand-2);
  color: var(--brand-2);
}

/* Confirm modal styles */
.confirm-modal {
  border: 0;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.confirm-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  color: var(--system-gray) !important;
  display: grid;
  place-items: center;
  opacity: 1;
  font-size: 10px;
}

/* Tamanho e cores dos botões na modal */
.confirm-modal .btn {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  border-radius: 10px;
}
.confirm-modal .btn-brand {
  background: var(--brand-2) !important;
  border-color: var(--brand-2) !important;
  color: #fff !important;
}

/* Stepper */
.stepper {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0;
  position: relative;
  margin: 24px 0;
}
.stepper:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--system-gray-4);
  transition: var(--transition);
}
.stepper:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 16px;
  height: 2px;
  background: var(--system-purple);
  border-radius: 999px;
  transition: var(--transition);
  width: var(--progress, 0%);
}
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.step .dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid var(--system-gray-4);
  background: #fff;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step .dot:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--system-gray-4);
  transition: var(--transition);
}
.step.is-active .dot {
  border-color: var(--system-purple);
  box-shadow: 0 0 0 3px rgba(107, 43, 217, 0.06);
}
.step.is-active .dot:before {
  background: var(--system-purple);
}
.step .label {
  font-size: 13px;
  color: var(--system-gray);
  margin-top: 6px;
  transition: var(--transition);
  font-weight: 400;
}
.step.is-active .label {
  color: var(--system-purple);
  font-weight: 500;
}
@media (max-width: 768px) {
  .stepper {
    gap: 1.2rem;
  }
  .step .label {
    font-size: 0.8rem;
  }
  .step .dot {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }
}
.list-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.cart-empty {
  opacity: 0.85;
}

/* ====== CELULAR (sem carrossel) — 3 por linha inclusive no celular ====== */
.chip-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Carousel styles */
.carousel-container {
  position: relative;
  padding: 0 3.3rem;
}
.carousel-track {
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
  gap: 1rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track .plan-card,
.carousel-track .app-card {
  flex: 0 0 calc(33.333% - 0.75rem);
  max-width: calc(33.333% - 0.75rem);
}
#entretenimentoBody .app-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  left: -0.25rem;
  right: -0.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
  padding: 0;
  z-index: 5;
  pointer-events: none;
}
.carousel-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(107, 43, 217, 0.12);
  color: var(--cel-green);
  border: 1px solid rgba(107, 43, 217, 0.35);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(10px) saturate(150%);
  box-shadow: none;
  pointer-events: auto;
}
.carousel-btn:hover {
  background: rgba(107, 43, 217, 0.2);
}
.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Lock state for cards that depend on Internet */
.plan-card.is-disabled,
.app-card.is-disabled {
  opacity: 0.7;
}
.section-card.is-disabled {
  opacity: 0.7;
}
.lock-hint {
  display: none;
}
.section-card.is-disabled .lock-hint {
  display: block;
}
.plan-card.is-disabled [data-action="add"],
.app-card.is-disabled [data-action="add"] {
  cursor: not-allowed;
}

@media (max-width: 992px) {
  .carousel-track .plan-card,
  .carousel-track .app-card {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}
@media (max-width: 576px) {
  .carousel-track .plan-card,
  .carousel-track .app-card {
    flex: 0 0 calc(100% - 0.75rem);
    max-width: calc(100% - 0.75rem);
  }
  .carousel-container {
    padding: 0 1.5rem;
  }
}

.mini.text-muted.mt-2 {
  text-align: center;
}

/* Cards de celular – estilo conforme layout do design */
#celularBody .plan-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--system-gray-5);
  background: #fff;
  transition: var(--transition);
}
#celularBody .plan-card:hover {
  background: var(--system-gray-6);
  border-color: var(--system-purple);
}
#celularBody .plan-card.is-selected {
  border-color: var(--system-purple);
}

/* Título GB Giga */
#celularBody .plan-title {
  font-weight: 800;
  font-size: 1.8rem;
  color: #1b2430;
  margin-bottom: 0.25rem;
}

/* Serviços inclusos + mais informações */
#celularBody .services {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.35rem 0 0.25rem;
}
#celularBody .pill-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand-3);
  color: var(--cel-green);
  border: 1px solid #d9cdfa;
}
#internetBody .more-info,
#conectBody .more-info,
#entretenimentoBody .more-info {
  color: var(--brand-2);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
#celularBody .more-info {
  color: var(--cel-green);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
#celularBody .divider {
  height: 1px;
  background: #eaeaea;
  margin: 0.55rem 0 0.6rem;
}

/* Quantidade (pill) */
#celularBody .qty-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
#celularBody .qty-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--system-gray-4);
  background: var(--system-gray-6);
  border-radius: 16px;
  padding: 4px;
  transition: var(--transition);
}
#celularBody .qty-pill:focus-within {
  border-color: var(--system-purple);
  box-shadow: 0 0 0 4px var(--brand-3);
}
#celularBody .qty-pill .btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: none;
  background: #fff;
  color: var(--system-purple);
  padding: 0;
  line-height: 1;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
#celularBody .qty-pill .btn:hover {
  background: #f6fbff;
  color: #273443;
}
#celularBody .qty-input {
  width: 48px !important;
  height: 34px;
  border: 0;
  box-shadow: none;
  padding: 0;
  font-weight: 700;
}
#celularBody .qty-input:focus {
  outline: 0;
  box-shadow: none;
}

/* Preço (alinhado à esquerda) */
#celularBody .price-block {
  text-align: left;
  margin-top: 0.4rem;
}
#celularBody .price-eyebrow {
  font-size: 0.88rem;
  color: #6a6f7a;
  margin-bottom: 0.1rem;
}
#celularBody .price-one {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: #0f1222;
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
}
#celularBody .price-one .price-cur {
  font-size: 1.1rem;
  font-weight: 800;
  opacity: 0.95;
}
#celularBody .price-one .price-major {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
#celularBody .price-one .price-sep {
  font-size: 1.2rem;
  font-weight: 800;
}
#celularBody .price-one .price-cents {
  font-size: 2.1rem;
  font-weight: 900;
}
#celularBody .price-foot {
  font-size: 0.92rem;
  color: #6a6f7a;
  display: inline;
  margin-left: 0.35rem;
}

/* CTAs verde */
#celularBody .btn-outline-primary {
  border: 1px solid var(--cel-green);
  background: var(--cel-green);
  color: #fff;
}
#celularBody .btn-outline-primary:hover {
  background: var(--cel-green-2);
  border-color: var(--cel-green-2);
  color: #fff;
}
#celularBody .btn-outline-danger {
  border: 1px solid var(--cel-green);
  color: var(--cel-green);
  background: #fff;
}
#celularBody .btn-ghost {
  border: 1px solid var(--cel-green);
  background: #fff;
  color: var(--cel-green);
}
#celularBody .btn-ghost:hover {
  background: var(--cel-green-3);
}

/* Badge antiga mantida para outras seções; não usada em Celular novo */
.gb-badge {
  display: block;
  align-items: baseline;
  gap: 0.2rem;
  text-align: center !important;
  padding: 0.25rem 0.5rem;
  color: var(--brand-dark);
}
.gb-badge .gb-int {
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  font-size: 45px;
}
.gb-badge .gb-suffix {
  font-weight: 800;
  font-size: 16px;
}

/* Internet Fibra — seguir o padrão Celular */
#internetBody .plan-card {
  padding: 18px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--cel-border);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
#internetBody .plan-card:hover {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: saturate(180%) blur(12px);
  transform: none;
  box-shadow: none;
  border-color: #dde6ea;
}
#internetBody .plan-card.is-selected {
  border-color: var(--brand-2);
}
#internetBody .plan-title {
  font-weight: 800;
  font-size: 1.8rem;
  color: #1b2430;
  margin-bottom: 0.25rem;
}
#internetBody .services {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.35rem 0 0.25rem;
}
#internetBody .pill-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand-3);
  color: var(--brand-2);
  border: 1px solid #d9cdfa;
}
#internetBody .pill-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}
#internetBody .divider {
  height: 1px;
  background: #ece7f9;
  margin: 0.55rem 0 0.6rem;
}
#internetBody .price-block {
  text-align: left;
  margin-top: 0.25rem;
}
#internetBody .price-eyebrow {
  font-size: 0.88rem;
  color: #6a6f7a;
  margin-bottom: 0.1rem;
}
#internetBody .price-one {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: #0f1222;
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
}
#internetBody .price-one .price-cur {
  font-size: 1.1rem;
  font-weight: 800;
}
#internetBody .price-one .price-major {
  font-size: 2.1rem;
  font-weight: 900;
}
#internetBody .price-one .price-sep {
  font-size: 1.2rem;
  font-weight: 800;
}
#internetBody .price-one .price-cents {
  font-size: 2.1rem;
  font-weight: 900;
}
#internetBody .price-foot {
  font-size: 0.92rem;
  color: #6a6f7a;
  display: inline;
  margin-left: 0.35rem;
}
#internetBody .btn-outline-primary {
  border: 1px solid var(--brand-2);
  background: var(--brand-2);
  color: #fff;
}
#internetBody .btn-outline-primary:hover {
  background: #7a45e6;
  border-color: #7a45e6;
}
#internetBody .btn-outline-danger {
  border: 1px solid var(--brand-2);
  color: var(--brand-2);
  background: #fff;
}

/* Estilos para o carrinho */
.cart-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.cart-item:last-child {
  border-bottom: none;
}

/* Entretenimento — cards de apps no padrão dos planos */
.app-card {
  text-align: left;
  padding: 18px 16px;
  border: 1.5px solid var(--cel-border);
  border-radius: 20px;
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.app-card:hover {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: saturate(180%) blur(12px);
  transform: none;
  box-shadow: none;
  border-color: #dde6ea;
}
.app-card .app-image {
  display: none;
}
.app-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: #1b2430;
  line-height: 1.1;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
.app-card .btn {
  border-radius: 12px;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  width: 100%;
  display: block;
  text-align: center;
  white-space: nowrap;
}
#entretenimentoBody .app-card .btn-outline-primary {
  border: 1px solid var(--brand-2);
  background: var(--brand-2);
  color: #fff;
}
#entretenimentoBody .app-card .btn-outline-primary:hover {
  background: #7a45e6;
  border-color: #7a45e6;
}
#entretenimentoBody .divider {
  height: 1px;
  background: #ece7f9;
  margin: 0.55rem 0 0.6rem;
}
#entretenimentoBody .price-block {
  text-align: left;
  margin-top: 0.25rem;
}
#entretenimentoBody .price-eyebrow {
  font-size: 0.88rem;
  color: #6a6f7a;
  margin-bottom: 0.1rem;
}
#entretenimentoBody .price-one {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: #0f1222;
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
}
#entretenimentoBody .price-one .price-cur {
  font-size: 1rem;
  font-weight: 800;
}
#entretenimentoBody .price-one .price-major {
  font-size: 1.8rem;
  font-weight: 900;
}
#entretenimentoBody .price-one .price-sep {
  font-size: 1.05rem;
  font-weight: 800;
}
#entretenimentoBody .price-one .price-cents {
  font-size: 1.8rem;
  font-weight: 900;
}
#entretenimentoBody .price-foot {
  font-size: 0.9rem;
  color: #6a6f7a;
  display: inline;
  margin-left: 0.35rem;
}

.app-card .btn-outline-danger {
  border: 1px solid #dc3545;
  background: #f8d7da;
  color: #dc3545;
}

.app-card .btn-outline-danger:hover {
  background: #f5c6cb;
  border-color: #dc3545;
}

.carousel-container {
  /* defined earlier with padding and layout; keep single authoritative block */
  position: relative;
}
.carousel-container .d-flex {
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.carousel-container .d-flex::-webkit-scrollbar {
  height: 6px;
}

.carousel-container .d-flex::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.carousel-container .d-flex::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.carousel-container .d-flex::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Botões das seções Celular e Conectividade seguindo padrão Internet Fibra */
#celularBody .btn,
#conectBody .btn {
  border-radius: 12px;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  width: 100%;
  display: block;
  text-align: center;
  white-space: nowrap;
}

button.btn.btn-link.p-0.more-info.mini {
  text-align: left !important;
}

#celularBody .btn-ghost,
#conectBody .btn-ghost {
  border: 1px solid #d9cdfa;
  background: #f4edff;
  color: var(--brand-2);
}

#celularBody .btn-ghost:hover,
#conectBody .btn-ghost:hover {
  background: #efe3ff;
  border-color: var(--brand-2);
}

#celularBody .btn-outline-danger,
#conectBody .btn-outline-danger {
  border: 1px solid #dc3545;
  background: #f8d7da;
  color: #dc3545;
}

#celularBody .btn-outline-danger:hover,
#conectBody .btn-outline-danger:hover {
  background: #f5c6cb;
  border-color: #dc3545;
}

/* Super Wi‑Fi — seguir padrão Internet/Celular */
#conectBody .plan-card {
  padding: 18px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--cel-border);
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
#conectBody .plan-card:hover {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: saturate(180%) blur(12px);
  transform: none;
  box-shadow: none;
  border-color: #dde6ea;
}
#conectBody .plan-card.is-selected {
  border-color: var(--brand-2);
}
#conectBody .plan-title {
  font-weight: 800;
  font-size: 1.6rem;
  color: #1b2430;
  margin-bottom: 0.25rem;
}
#conectBody .services {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.35rem 0 0.25rem;
}
#conectBody .pill-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand-3);
  color: var(--brand-2);
  border: 1px solid #d9cdfa;
}
#conectBody .divider {
  height: 1px;
  background: #ece7f9;
  margin: 0.55rem 0 0.6rem;
}
#conectBody .price-block {
  text-align: left;
  margin-top: 0.25rem;
}
#conectBody .price-eyebrow {
  font-size: 0.88rem;
  color: #6a6f7a;
  margin-bottom: 0.1rem;
}
#conectBody .price-one {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: #0f1222;
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
}
#conectBody .price-one .price-cur {
  font-size: 1rem;
  font-weight: 800;
}
#conectBody .price-one .price-major {
  font-size: 1.9rem;
  font-weight: 900;
}
#conectBody .price-one .price-sep {
  font-size: 1.05rem;
  font-weight: 800;
}
#conectBody .price-one .price-cents {
  font-size: 1.9rem;
  font-weight: 900;
}
#conectBody .price-foot {
  font-size: 0.9rem;
  color: #6a6f7a;
  display: inline;
  margin-left: 0.35rem;
}
#conectBody .btn-outline-primary {
  border: 1px solid var(--brand-2);
  background: var(--brand-2);
  color: #fff;
}
#conectBody .btn-outline-primary:hover {
  background: #7a45e6;
  border-color: #7a45e6;
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
@media (min-width: 1200px) {
  :root {
    --brand-logo-h: 50px;
  }
}
