/* ============================= */
/*  RESET & BASE                 */
/* ============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #020617;
  --bg-soft: #02081a;
  --bg-card: #020617;
  --accent: #6366f1;
  --accent-soft: #4f46e5;
  --accent-strong: #a855f7;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --radius-lg: 18px;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #02081a 0, #020617 45%, #000 100%);
  color: var(--text);
  line-height: 1.5;
}

/* ============================= */
/*  ANIMAÇÕES MINIMALISTAS       */
/* ============================= */

@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================= */
/*  LAYOUT GERAL                 */
/* ============================= */

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 16px 64px;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 88px 16px 64px;
}

/* ============================= */
/*  NAVBAR                       */
/* ============================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

/* Marca */
.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.9))
    drop-shadow(0 0 14px rgba(59, 130, 246, 0.8));
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f9fafb;
}

/* MENU MOBILE (abre pra baixo, suave) */
.nav {
  position: absolute;
  top: 64px;
  left: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  padding: 10px 10px 12px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    max-height 0.22s ease,
    opacity 0.18s ease,
    transform 0.18s ease;
}

/* quando abre */
.nav.nav-open {
  max-height: 260px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: #f9fafb;
  background: rgba(148, 163, 184, 0.18);
}

.nav-link.active {
  color: #22d3ee;
}

/* Botão hambúrguer */
.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
}

.nav-toggle .bar {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* ============================= */
/*  HERO                         */
/* ============================= */

.hero {
  padding-top: 32px;
  animation: fadeUpSoft 0.7s ease-out;
  animation-fill-mode: both;
}

.hero-inner {
  max-width: 768px;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw + 1.2rem, 3.1rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.highlight {
  background: linear-gradient(90deg, #a855f7, #06b6d4);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 540px;
  margin-bottom: 22px;
}

/* Busca */
.hero-search {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.input-search {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.92);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
}

.input-search::placeholder {
  color: rgba(148, 163, 184, 0.85);
}

.input-search:focus {
  border-color: var(--accent);
}

/* ============================= */
/*  BOTÕES & CHIPS               */
/* ============================= */

.btn-primary {
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: #f9fafb;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.08s ease;
}

.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

/* outline usado nos planos da HOME */
.btn-outline {
  width: auto;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    transform 0.08s ease;
}

/* barra grande ocupando a largura do card */
.btn-outline.full {
  width: 100%;
  height: 44px;
  border-radius: 12px;
}

.btn-outline:hover {
  background: rgba(99, 102, 241, 0.12);
  color: #f9fafb;
  transform: translateY(-1px);
}

/* Chips */
.chip-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 6px 12px;
  font-size: 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.95);
  color: var(--muted);
  cursor: pointer;
}

.chip:hover {
  border-color: var(--accent);
  color: #f9fafb;
}

/* ============================= */
/*  SEÇÕES / CARDS               */
/* ============================= */

.section {
  margin-top: 40px;
  animation: fadeUpSoft 0.7s ease-out;
  animation-fill-mode: both;
}

.section.center {
  text-align: center;
}

.section-header h2,
.section h1 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.section-header p,
.section > p {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-header-sm {
  margin-top: 24px;
}

.section-header-sm h2 {
  font-size: 1.3rem;
}

/* Como funciona */
.grid-steps {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.card-info {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 16px 18px;
}

.card-info h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.card-info p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* PLANOS DA HOME – TODAS AS BORDAS ROXAS */
.section-plans {
  margin-top: 40px;
}

.grid-cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card-plan {
  background: radial-gradient(circle at top, #02081a 0, #020617 65%);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(99, 102, 241, 0.95);
  padding: 18px 16px 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card-plan-featured {
  border-width: 2px;
}

.card-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
}

.card-plan h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.card-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #22d3ee;
  margin-bottom: 6px;
}

.card-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.card-list li {
  margin-bottom: 4px;
}

/* ============================= */
/*  PREMIUM / ASSINATURA         */
/* ============================= */

.premium-search {
  margin-top: 22px;
}

.premium-search-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.label-inline {
  font-size: 0.9rem;
  color: var(--muted);
}

.premium-summary {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.premium-results {
  margin-top: 20px;
}

/* planos da página de assinatura (bordas roxas também) */
.plans-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.plan-card {
  background: radial-gradient(circle at top, #02081a 0, #020617 65%);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(99, 102, 241, 0.95);
  padding: 20px 18px 18px;
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
}

.plan-card h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.plan-price {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}

.plan-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 10px 0 16px;
}

.plan-list li {
  margin-bottom: 4px;
}

.plan-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================= */
/*  DASHBOARD – RESULTADOS BUSCA */
/* ============================= */

.search-results {
  margin-top: 1.5rem;
}

.results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.results-list li {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.7);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.results-list li strong {
  display: block;
  margin-bottom: 0.2rem;
}

.results-list li span {
  opacity: 0.9;
  font-size: 0.9rem;
}

/* ============================= */
/*  DASHBOARD – LAYOUT & VISUAL  */
/* ============================= */

.section-dashboard-hero {
  margin-bottom: 10px;
}

.section-dashboard-hero .section-header h1 {
  font-size: 1.7rem;
}

.section-dashboard-hero .section-header p {
  font-size: 0.96rem;
}

/* separadores suaves entre blocos do dashboard */
.section-dashboard-summary,
.section-dashboard-cart,
.section-dashboard-history,
.section-dashboard-settings,
.section-dashboard-info {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding-top: 20px;
  margin-top: 28px;
}

/* cards do dashboard um pouco mais “painel” */
.dashboard-card,
.cart-card {
  background: radial-gradient(circle at top, #02081a 0, #020617 75%);
}

/* Mais espaço entre o conteúdo e o botão no card do dashboard */
.dashboard-card .btn-outline.full {
  margin-top: 10px;
}

/* ícones via CSS */
.section-dashboard-summary .section-header h2::before {
  content: "👤 ";
}

.section-dashboard-cart .section-header h2::before {
  content: "🛒 ";
}

.section-dashboard-history .section-header h2::before {
  content: "📜 ";
}

.section-dashboard-settings .section-header h2::before {
  content: "⚙️ ";
}

.section-dashboard-info .section-header h2::before {
  content: "✨ ";
}

/* listas do histórico/config */
.section-dashboard-history .plan-list,
.section-dashboard-settings .plan-list {
  margin-top: 10px;
  padding-left: 0;
}

.section-dashboard-history .plan-list li,
.section-dashboard-settings .plan-list li {
  margin-bottom: 4px;
}

/* ============================= */
/*  DASHBOARD – ATALHOS BONITOS  */
/* ============================= */

.shortcut-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.shortcut-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.85);
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.15s ease;
}

.shortcut-card:hover {
  background: rgba(30, 41, 59, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.shortcut-icon {
  font-size: 1.5rem;
}

.shortcut-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: #f9fafb;
}

.shortcut-info p {
  font-size: 0.82rem;
  margin: 0;
  color: var(--muted);
}

/* desktop: três colunas certinhas */
@media (min-width: 768px) {
  .shortcut-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ============================= */
/*  BUSCAR – GRID DE PRODUTOS    */
/* ============================= */

.search-page {
  max-width: 1120px;
}

.search-hero .search-meta,
.search-meta {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.results-toolbar {
  margin-top: 10px;
}

.toolbar-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.toolbar-info {
  font-size: 0.9rem;
}

.toolbar-actions {
  display: flex;
  justify-content: flex-start;
}

.toolbar-label {
  font-size: 0.85rem;
}

.toolbar-select {
  margin-left: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text);
  font-size: 0.85rem;
}

/* GRID DE RESULTADOS (layout C + A) */
.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 12px;
}

.result-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.8);
}

.result-thumb img {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
  background: #020617;
}

.thumb-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
  background: #020617;
}

.result-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.result-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-header h2 {
  font-size: 0.95rem;
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
  border: 1px solid rgba(56, 189, 248, 0.6);
  color: #e0f2fe;
}

.badge-best {
  background: rgba(56, 189, 248, 0.12);
}

.badge-frete {
  margin-left: 6px;
  border-color: rgba(52, 211, 153, 0.6);
  color: #bbf7d0;
  background: rgba(22, 163, 74, 0.15);
}

.result-store {
  font-size: 0.82rem;
  color: var(--muted);
}

.result-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.price-current {
  font-size: 1.1rem;
  font-weight: 700;
  color: #22d3ee;
}

.price-original {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: line-through;
}

.result-actions {
  margin-top: 8px;
}

/* Desktop ajustes */
@media (min-width: 768px) {
  .toolbar-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .results-grid {
    gap: 16px;
  }

  .result-card {
    grid-template-columns: 112px 1fr;
    padding: 14px 16px;
  }

  .result-thumb img,
  .thumb-placeholder {
    width: 112px;
    height: 112px;
  }

  .result-header h2 {
    font-size: 1rem;
  }
}
/* ============================= */
/*  PÁGINA DE PRODUTO (DETALHES) */
/* ============================= */

.product-page {
  max-width: 1120px;
}

/* Cabeçalho / breadcrumb */
.product-hero .product-breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.breadcrumb-link {
  color: var(--accent-strong);
  text-decoration: none;
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

.product-hero h1 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.product-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Layout principal: coluna do conteúdo + lateral */
.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* Card base da página de produto */
.product-card,
.product-main-card {
  background: radial-gradient(circle at top, #02081a 0, #020617 70%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 16px 14px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.9);
}

.product-main-card {
  margin-bottom: 16px;
}

/* Topo principal: imagem + info */
.product-main-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.product-image-area {
  display: flex;
  justify-content: center;
}

.product-image-wrapper img {
  width: 180px;
  height: 180px;
  border-radius: 18px;
  object-fit: cover;
  background: #020617;
}

.product-thumb-placeholder {
  width: 180px;
  height: 180px;
}

.product-main-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-brand {
  font-size: 0.9rem;
  color: var(--muted);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #22d3ee;
}

.product-price-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.product-main-actions {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Especificações */
.product-specs {
  margin-top: 10px;
}

.product-specs-table {
  margin: 0;
}

.product-spec-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 0.88rem;
}

.product-spec-row dt {
  color: var(--muted);
}

.product-spec-row dd {
  margin: 0;
}

/* Texto de seções da página de produto */
.product-section-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.product-description {
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Ofertas por loja */
.product-offers {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.product-offer-card {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.88rem;
}

.product-offer-store {
  font-weight: 500;
}

.product-offer-price {
  font-size: 1rem;
  color: #22d3ee;
}

.product-offer-shipping,
.product-offer-note {
  font-size: 0.83rem;
  color: var(--muted);
}

/* Frete */
.frete-form {
  margin-top: 10px;
  font-size: 0.9rem;
}

.frete-form label {
  display: block;
  margin-bottom: 4px;
}

.frete-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 6px;
}

.product-frete-resultado {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Desktop: deixa 2 colunas (conteúdo + lateral) e organiza melhor */
@media (min-width: 768px) {
  .product-layout {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    align-items: flex-start;
  }

  .product-main-top {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: center;
  }

  .product-image-wrapper img,
  .product-thumb-placeholder {
    width: 220px;
    height: 220px;
  }

  .product-main-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .frete-row {
    flex-direction: row;
    align-items: center;
  }

  .frete-row .input-search {
    flex: 1;
  }
}
/* ============================= */
/*  FORM LOGIN                   */
/* ============================= */

.form-card {
  margin: 24px auto 0;
  max-width: 380px;
  padding: 20px 18px;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
  text-align: left;
}

.form-card label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.form-card input {
  width: 100%;
  margin-top: 4px;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #020617;
  color: var(--text);
  outline: none;
}

.form-card input:focus {
  border-color: var(--accent);
}

/* ============================= */
/*  TEXTOS AUXILIARES / FOOTER   */
/* ============================= */

.small-text {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.small-text a {
  color: var(--accent-strong);
  text-decoration: none;
}

.small-text a:hover {
  text-decoration: underline;
}

.footer {
  text-align: center;
  padding: 32px 16px 24px;
  color: var(--muted);
  font-size: 0.86rem;
}

/* ============================= */
/*  RESPONSIVO (DESKTOP)         */
/* ============================= */

@media (min-width: 768px) {/* ============================= */
/*  RESPONSIVO (DESKTOP)         */
/* ============================= */

@media (min-width: 768px) {

  .topbar {
    padding: 10px 32px;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  /* menu sempre visível no desktop */
  .nav {
    position: static;
    flex-direction: row;
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding: 0;
    box-shadow: none;
    background: transparent;
    gap: 18px;
  }

  .nav.nav-open {
    max-height: none;
  }

  .nav-toggle {
    display: none;
  }

  .nav-link {
    padding: 6px 12px;
    border-radius: 999px;
  }

  .hero-search {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .input-search {
    width: 380px;
  }

  .btn-primary {
    width: auto;
    padding-inline: 20px;
  }

  /* grid padrão de cards (home, assinatura, etc.) */
  .grid-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-search-row {
    flex-direction: row;
    align-items: center;
  }

  /* ===== AJUSTES ESPECÍFICOS DA PÁGINA "MINHA ÁREA" ===== */

  /* 1) Visão geral da conta: só 1 card larguinho (Seu plano atual) */
  .section-dashboard-summary .plans-grid {
    grid-template-columns: minmax(0, 440px);
    justify-content: flex-start;
    gap: 28px;
  }

  /* 2) Carrinho: dois cards lado a lado, bonitinhos */
  .section-dashboard-cart .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
  }

  .section-dashboard-cart .plan-card {
    height: 100%;
  }
}
}
/* Ajuste de espaçamento entre cards do dashboard */
.section-dashboard-summary .plans-grid {
  gap: 28px;
}

/* atalhos bem menores e mais compactos */
.shortcut-card {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 12px;               /* diminui tamanho */
  border-radius: 14px;

  background: rgba(20, 25, 40, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.25);
  backdrop-filter: blur(6px);

  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease;
}

.shortcut-card:hover {
  background: rgba(30, 40, 60, 0.9);
  transform: translateY(-2px);
}

/* ícone menor */
.shortcut-icon {
  font-size: 1.3rem;   /* antes 1.5rem */
}

/* textos mais organizados */
.shortcut-info h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
  color: #f9fafb;
}

.shortcut-info p {
  font-size: 0.75rem;
  line-height: 1.2;
  color: var(--muted);
}

/* diminuir espaço entre itens */
.shortcut-grid {
  gap: 8px;
  margin-top: 10px;
}

/* no desktop fica 3 por linha, mas menor */
@media (min-width: 768px) {
  .shortcut-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* ============================= */
/*  PRODUTO – HERO               */
/* ============================= */

.product-hero .product-store {
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--muted);
}

.product-hero .product-store span {
  color: #e5e7eb;
}

.product-hero-body {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.product-hero-image {
  max-width: 240px;
}

.product-hero-info .product-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #22d3ee;
  margin-bottom: 6px;
}

.product-hero-info .product-tagline {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ============================= */
/*  PRODUTO – ESPECIFICAÇÕES     */
/* ============================= */

.product-specs .specs-list {
  list-style: none;
  margin-top: 12px;
  padding-left: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.product-specs .specs-list li {
  margin-bottom: 4px;
}

.product-specs .specs-list span {
  color: #e5e7eb;
}

/* ============================= */
/*  PRODUTO – FRETE DEMO         */
/* ============================= */

.frete-form {
  margin-top: 10px;
}

.frete-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--muted);
}

.frete-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.frete-row .input-search {
  flex: 1;
  height: 40px;
}

.frete-status {
  margin-top: 10px;
  font-size: 0.9rem;
}

.frete-status-ok {
  color: #4ade80;
}

.frete-status-error {
  color: #fecaca;
}

/* Ajuste do hero do produto em desktop */
@media (min-width: 768px) {
  .product-hero-body {
    grid-template-columns: 260px 1fr;
    align-items: center;
  }
}
/* ============================= */
/*  PÁGINA DE PRODUTO            */
/* ============================= */

.product-hero .product-store {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.product-image-wrapper {
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.product-image-wrapper img {
  width: 100%;
  display: block;
}

.product-id {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-price-block {
  padding: 14px 16px;
  border-radius: 16px;
  background: radial-gradient(circle at top, #02081a 0, #020617 65%);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.product-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #22d3ee;
}

.product-old-price {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-top: 4px;
}

.product-extra {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

.product-frete h2 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.frete-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.product-frete-result {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Especificações */
.product-specs-section {
  margin-top: 24px;
}

.product-specs-list {
  list-style: none;
  margin-top: 10px;
  padding-left: 0;
  font-size: 0.9rem;
}

.product-specs-list li {
  margin-bottom: 4px;
}

.product-specs-list strong {
  color: #e5e7eb;
}

.product-raw {
  margin-top: 10px;
  padding: 12px;
  border-radius: 12px;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.78rem;
  overflow-x: auto;
}

/* Desktop: 2 colunas para layout do produto */
@media (min-width: 768px) {
  .product-layout {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    align-items: flex-start;
  }

  .frete-row {
    flex-direction: row;
    align-items: center;
  }

  .frete-row .input-search {
    flex: 1;
  }

  .product-actions {
    flex-direction: row;
  }

  .product-actions .btn-outline.full {
    width: auto;
    flex: 1;
  }
}
