/* ========================================
   MOOVTUR - SISTEMA DE DESIGN PREMIUM
   Unificando Estilo e Responsividade
======================================== */

:root {
  --primary: #00BACE;
  --primary-dark: #008fa3;
  --secondary: #00ceac;
  --text-main: #1e293b;
  --text-sec: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --error: #ef4444;
  --success: #00ceac;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-premium: 0 10px 40px -10px rgba(0, 186, 206, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ========== HEADER MODERNO ========== */
header {
  position: sticky;
  top: 0;
  height: 70px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.logo h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1.5px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

/* ========== HEADER ========== */
header {
  height: 80px;
}

.left-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mochila-noti {
  display: flex;
  gap: 8px;
}

.user-account {
  position: relative;
}

#burgue-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px !important;
  width: auto !important;
  border-radius: 30px !important;
}

#burgue-menu i:first-child {
  font-size: 14px;
}

#burgue-menu i:last-child {
  font-size: 26px;
  color: var(--text-sec);
}

/* ========== POPUPS DE FILTRO (MOBILE & DESKTOP) ========== */
.filter-popup,
.datefilter,
.pessoas-filter {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: none;
  z-index: 1001;
  border: 1px solid #f0f0f0;
  animation: modalIn 0.3s ease;
}

.filter-popup.active,
.datefilter.active,
.pessoas-filter.active {
  display: block;
}

.filter-popup {
  width: 400px;
}

.datefilter {
  width: 450px;
}

.pessoas-filter {
  width: 320px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f7f7f7;
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  width: 100%;
}

.destination-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  cursor: pointer;
  border-radius: 12px;
  transition: 0.2s;
}

.destination-item:hover {
  background: #f7f7f7;
}

.destination-icon {
  width: 40px;
  height: 40px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--primary);
}

/* Calendário */
.dateday {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.dia {
  padding: 10px 5px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
  border: 1px solid transparent;
}

.dia:hover {
  background: #f0fbfc;
  color: var(--primary);
}

.dia.selecionado {
  background: var(--primary);
  color: white;
}

.dia-semana {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.6;
}

.numero-dia {
  font-size: 16px;
  font-weight: 800;
}

.mes {
  font-size: 10px;
  font-weight: 700;
}

/* Contador de Pessoas */
.contador-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contador-info span {
  display: block;
}

.contador-titulo {
  font-weight: 700;
  color: var(--text-main);
}

.contador-desc {
  font-size: 12px;
  color: var(--text-sec);
}

.contador-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contador-controls button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.contador-controls button:hover:not(:disabled) {
  border-color: var(--text-main);
}

.contador-valor {
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.btn-aplicar {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background: var(--text-main);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}


/* FILTRO DE BUSCA (HEADER) */
.filtro {
  display: flex;
  padding: 8px 12px;
  background: var(--white);
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.filtro:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.filtro button {
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.filtro button:hover:not(.seach-button):not(#filter-reset) {
  background: #f1f5f9;
}

.filtro span {
  color: #e2e8f0;
  user-select: none;
}

.seach-button {
  background: var(--primary) !important;
  color: white !important;
  width: 38px;
  height: 38px;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  margin-left: 8px;
}

/* AÇÕES DO USUÁRIO */
.left-action {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mochila-noti button,
.user-account button {
  background: var(--bg-light);
  border: 1px solid #e2e8f0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #475569;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.mochila-noti button:hover,
.user-account button:hover {
  background: var(--white);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* BADGES */
.backpack-count,
.notification-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--error);
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* ========== CATEGORIAS MODERNO ========== */
.category-all {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 60px;
  background: var(--white);
  gap: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: sticky;
  top: 70px;
  z-index: 999;
}

.category-all::-webkit-scrollbar {
  display: none;
}

.category-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--text-sec);
  cursor: pointer;
  transition: var(--transition);
  min-width: 80px;
  position: relative;
  padding-bottom: 10px;
}

.category-btn i {
  font-size: 22px;
  transition: var(--transition);
}

.category-btn span {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.category-btn:hover {
  color: var(--primary);
}

.category-btn:hover i {
  transform: translateY(-3px);
}

.category-btn.active {
  color: var(--primary);
}

.category-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 10px;
}

/* ========== VITRINE E GRID ========== */
.vitrine {
  padding: 30px 60px;
  max-width: 1600px;
  margin: 0 auto;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* TOUR CARD REESTILIZADO (Estilo Premium) */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(0, 186, 206, 0.1);
}

.tour-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.tour-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-image-container img {
  transform: scale(1.1);
}

/* Badge de desconto ou categoria no card */
.tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.tour-info {
  padding: 20px;
}

.tour-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.tour-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.tour-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--text-sec);
  margin-bottom: 15px;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}

.tour-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 11px;
  color: var(--text-sec);
  text-transform: uppercase;
  font-weight: 600;
}

.price-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

/* ========== MODAIS E CHECKOUT PREMIUM ========== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  position: relative;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.modal-header {
  padding: 30px 40px;
  border-bottom: 1px solid #f1f5f9;
}

.modal-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
}

.checkout-form {
  padding: 40px;
}

.checkout-summary {
  padding: 40px;
  background: #f8fafc;
  border-left: 1px solid #f1f5f9;
}

.input-group-modal {
  margin-bottom: 20px;
}

.input-group-modal label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.modal-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 15px;
  transition: var(--transition);
}

.modal-input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 186, 206, 0.1);
}

.form-row {
  display: flex;
  gap: 20px;
}

.price-breakdown {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px dashed #e2e8f0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 600;
}

.btn-pay {
  width: 100%;
  padding: 18px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 30px;
}

.btn-pay:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
}

@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    border-left: none;
    border-top: 1px solid #f1f5f9;
  }

  .modal-content {
    max-width: 100%;
    border-radius: var(--radius-md);
  }
}


/* ========== SKELETON LOADING PREMIUM ========== */
.skeleton-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}

.skeleton-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ========== RESPONSIVIDADE (MOBILE) ========== */
@media (max-width: 1024px) {
  header {
    padding: 12px 30px;
  }

  .category-all {
    padding: 15px 30px;
  }

  .vitrine {
    padding: 20px 30px;
  }
}

@media (max-width: 768px) {
  .logo h1 {
    font-size: 24px;
  }

  header {
    height: auto;
    padding: 15px 20px !important;
  }

  .filtro,
  .filter-popup,
  .datefilter,
  .pessoas-filter {
    display: none !important;
  }

  .category-all {
    padding: 10px 15px;
    gap: 20px;
    justify-content: flex-start;
  }

  .category-btn {
    min-width: 70px;
  }

  .vitrine {
    padding: 20px 15px;
    padding-bottom: 100px;
  }

  .dropdown-menu,
  .mochila-dropdown,
  .notification-dropdown {
    right: 15px !important;
    width: 280px !important;
  }
}

/* RODAPÉ PREMIUM REESTILIZADO */
footer {
  background: #0f172a;
  padding: 80px 60px 40px;
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 350px;
  margin-bottom: 25px;
  color: #94a3b8;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
  color: white;
}

.footer-links span {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
  display: block;
}

.footer-links a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.copry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

.privacy-links {
  display: flex;
  gap: 20px;
}

.privacy-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.privacy-links a:hover {
  color: white;
}

/* ========== POPUPS E DROPDOWNS REESTILIZADOS (LATÊNCIA ZERO) ========== */
.dropdown-menu,
.mochila-dropdown,
.notification-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  right: 15px;
  background: var(--white);
  width: 360px;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.25);
  padding: 0;
  display: none;
  flex-direction: column;
  z-index: 2000;
  border: 1px solid rgba(0, 186, 206, 0.1);
  animation: dropdownIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

@keyframes dropdownIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mochila-dropdown.active,
.notification-dropdown.active,
.dropdown-menu.active {
  display: flex !important;
}

/* MENU DE USUÁRIO (PERFIL) - ESPECÍFICO */
.dropdown-menu {
  padding: 10px !important;
  /* Menu de perfil prefere padding interno direto */
}

.user-header {
  padding: 15px 12px 10px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 8px;
}

.user-header h4 {
  color: var(--primary);
  font-size: 16px;
  font-weight: 800;
  margin: 0;
}

.user-header p {
  font-size: 11px;
  color: var(--text-sec);
  margin-top: 2px;
}

.dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  text-decoration: none !important;
  /* REMOVE UNDERLINE DEFINITIVAMENTE */
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-item i {
  font-size: 16px;
  color: var(--primary);
  width: 20px;
  text-align: center;
}

.dropdown-item:hover {
  background: #f8fafc;
  color: var(--primary);
  text-decoration: none !important;
}

.dropdown-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 8px 0;
}

.mochila-header,
.notification-header {
  padding: 16px 20px;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
  gap: 15px;
}

.mochila-header h4,
.notification-header h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
  line-height: 1;
}

.limpar-btn,
.mark-read-btn {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  color: var(--text-sec) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  padding: 6px 14px !important;
  border-radius: 50px !important;
  transition: all 0.2s ease !important;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.limpar-btn:hover,
.mark-read-btn:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  background: rgba(0, 186, 206, 0.05) !important;
  transform: translateY(-1px);
}

/* LISTAS INTERNAS (LIMPAS) */
.mochila-items,
.notification-list {
  padding: 15px;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  list-style: none !important;
  margin: 0 !important;
}

.notification-list {
  padding: 0 !important;
}

/* ITEM DA MOCHILA */
.mochila-item-container {
  margin-bottom: 15px;
  border: 1px solid #f1f5f9;
  border-radius: var(--radius-md);
  padding: 12px;
  background: white;
}

.mochila-item {
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
  margin-bottom: 12px;
}

.mochila-item img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.mochila-item-info {
  flex: 1;
}

.mochila-item-info h5 {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  color: var(--text-main);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
}

.mochila-item-info p {
  font-size: 10px;
  color: var(--text-sec);
  margin: 2px 0;
}

.mochila-price {
  font-weight: 800;
  color: var(--primary);
  font-size: 13px;
}

.remover-btn {
  width: 30px;
  height: 30px;
  background: #f8fafc;
  border: none;
  border-radius: 50%;
  color: #94a3b8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.remover-btn:hover {
  background: #fee2e2;
  color: var(--error);
}

/* CONFIGURAÇÃO INTERNA */
.mochila-config {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px dotted #f1f5f9;
}

.config-group label {
  font-size: 9px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.backpack-input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 11px;
}

/* NOTIFICAÇÕES (STYLING) */
.notification-item {
  display: flex;
  gap: 15px;
  padding: 18px 25px;
  border-bottom: 1px solid #f1f5f9;
  transition: 0.2s;
  list-style-type: none !important;
}

.notification-item:hover {
  background: #f8fafc;
}

.notification-item.unread {
  background: rgba(0, 186, 206, 0.03);
  border-left: 4px solid var(--primary);
}

.notification-icon {
  width: 38px;
  height: 38px;
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.notification-content h5 {
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 700;
}

.notification-content p {
  font-size: 12px;
  color: var(--text-sec);
  line-height: 1.5;
  margin: 0;
}

.notification-time {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 6px;
  display: block;
}

/* FOOTER MOCHILA */
.mochila-footer {
  padding: 20px 24px;
  background: white;
  border-top: 1px solid #f1f5f9;
  z-index: 10;
}

.mochila-footer .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.mochila-footer .total span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sec);
}

.mochila-footer .total strong {
  font-size: 18px;
  color: var(--text-main);
  font-weight: 900;
}

.finalizar-btn {
  width: 100% !important;
  display: block !important;
  padding: 14px !important;
  background: var(--primary) !important;
  color: white !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 20px rgba(0, 186, 206, 0.3) !important;
}

.finalizar-btn:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 25px rgba(0, 186, 206, 0.4) !important;
}




.premium-clear-btn {
  background: var(--white);
  border: 1.5px solid #e2e8f0;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  color: var(--text-sec);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.premium-clear-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 186, 206, 0.05);
}

/* Responsividade Mobile Extra (Hero) */
@media (max-width: 768px) {


  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .copry {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}