/* VARIABLES DE COLOR */
:root {
  --primary-color: #1a2a6c;
  --accent-color: #b21f1f;
  --bg-light: #f4f7f6;
  --white: #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: #333;
}

/* HEADER */
#header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* BURBUJA CONVERSACIONAL */
.welcome-section {
  padding-top: 120px;
  margin-bottom: 30px;
}

.chat-bubble {
  background: var(--white);
  padding: 20px 25px;
  border-radius: 25px 25px 25px 5px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid #eef0f2;
  display: inline-block;
  max-width: 90%;
}

/* TARJETAS DE NOVEDADES */
.section-label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--accent-color);
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.featured-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
  border-left: 5px solid var(--primary-color);
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.featured-content {
  padding: 20px;
}

.badge-status {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  background: #e9ecef;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

/* ITEMS DE MATERIAL (FEED) */
.material-item {
  background: var(--white);
  border-radius: 15px;
  padding: 15px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  color: inherit;
  transition: 0.3s;
  border: 1px solid transparent;
}

.material-item:hover {
  border-color: #d1d9e6;
  transform: translateX(8px);
  background: #fdfdfd;
}

.material-icon {
  width: 55px;
  height: 55px;
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  flex-shrink: 0;
}

.material-info h3 {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}

.material-info p {
  font-size: 0.85rem;
  margin: 2px 0 0 0;
  color: #636e72;
}

/* REDES SOCIALES */
.social-pill {
  background: var(--white);
  padding: 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
  margin-bottom: 15px;
  text-decoration: none !important;
  color: #444;
  font-weight: 600;
}

.social-pill i { font-size: 1.2rem; margin-right: 10px; }
.social-pill:hover { transform: scale(1.05); }

.breadcrumb-item a {
  color: var(--primary-color);
  font-weight: 600;
}
.breadcrumb-item.active {
  color: var(--text-muted);
}

.social-pill i {
  font-size: 1.4rem; /* Un poquito más grandes los iconos */
  margin-right: 12px;
}

.social-pill {
  justify-content: flex-start; /* Alinea el texto a la izquierda del botón */
  padding-left: 20px;
  border: 1px solid #eee; /* Un borde suave para que resalten */
}