/* =====================================================
   MUJERES.CSS – Salud Femenina V2 (Modal Detalle del Día)
   ===================================================== */
:root {
  --mujer-primary: #FF4D94;
  --mujer-primary-hover: #E84382;
  --mujer-primary-light: #FFE4F0;

  --mujer-secondary: #7065F0;
  --mujer-secondary-light: #E8E5FF;

  --mujer-bg: #F8F9FF;
  --mujer-text: #2D2A3E;
  --mujer-text-soft: #8A8499;
}

/* ---------- OVERLAY PRINCIPAL ---------- */
.mujeres-overlay {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #F8F9FF;
  z-index: 3000;
  display: flex; flex-direction: column;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

/* ---------- HEADER ---------- */
.mujeres-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(112,101,240,0.08);
  flex-shrink: 0;
}
.mujeres-btn-volver {
  width: 40px; height: 40px; border-radius: 50%; border: none;
  color: var(--theme-primary);
  background: var(--theme-soft);
  font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 8px rgba(255,77,148,0.15);
}
.mujeres-btn-volver:hover { background: var(--color-primary); color: white; transform: scale(1.08); }
.mujeres-titulo {
  font-size: 1.4rem; font-weight: 800; color: #2D2A3E;
  letter-spacing: 3px; margin: 0;
  background: linear-gradient(
  135deg,
  var(--color-primary),
  var(--color-secondary)
);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- CONTENIDO SCROLLABLE ---------- */
.mujeres-contenido {
  flex: 1; overflow-y: auto;
  padding: 0 20px 30px;
  transition: opacity 0.25s ease;
  opacity: 1;
}
.mujeres-contenido::-webkit-scrollbar { width: 4px; }
.mujeres-contenido::-webkit-scrollbar-thumb { background: #E0D8F0; border-radius: 4px; }

/* =====================================================
   HOME / DASHBOARD
   ===================================================== */
.muj-home { padding-top: 10px; }
.muj-home-subtitle {
  text-align: center; font-size: 0.95rem; color: #8A8499;
  margin-bottom: 24px; font-weight: 400;
}

/* Cards principales (Bento) */
.muj-cards-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 28px;
}
.muj-card-bento {
  background: white; border-radius: 24px; padding: 20px 14px;
  text-align: center; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.muj-card-bento::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: 24px 24px 0 0;
}
.muj-card-bento:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.muj-card-calendario::before { background: linear-gradient(90deg, #FF4D94, #FFB6D5); }
.muj-card-biblio::before { background: linear-gradient(90deg, #7065F0, #A89AF7); }
.muj-card-experto::before { background: linear-gradient(90deg, #00D084, #7FF0C0); }

.muj-card-icon { font-size: 2.4rem; margin-bottom: 8px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.08)); }
.muj-card-title { font-size: 0.9rem; font-weight: 700; color: #2D2A3E; margin-bottom: 2px; }
.muj-card-desc { font-size: 0.75rem; color: #8A8499; }

/* Sección título */
.muj-seccion-titulo {
  font-size: 1.05rem; font-weight: 700; color: #2D2A3E;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.muj-seccion-titulo::before {
  content: ''; width: 4px; height: 20px; background: linear-gradient(180deg, #FF4D94, #7065F0);
  border-radius: 4px;
}

/* Temas de estudio grid */
.muj-temas-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 28px;
}
.muj-tema-card {
  background: white; border-radius: 20px; padding: 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03);
  cursor: pointer; transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.muj-tema-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.muj-tema-icon { font-size: 2rem; flex-shrink: 0; }
.muj-tema-info { flex: 1; min-width: 0; }
.muj-tema-title { font-size: 0.85rem; font-weight: 700; color: #2D2A3E; margin-bottom: 2px; }
.muj-tema-desc { font-size: 0.7rem; color: #8A8499; line-height: 1.3; }

/* Banner informativo */
.muj-banner {
  background: linear-gradient(135deg, #FFE4F0, #E8E5FF);
  border-radius: 20px; padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 4px 20px rgba(255,77,148,0.08);
  border: 1px solid rgba(255,77,148,0.1);
}
.muj-banner-icon { font-size: 1.8rem; flex-shrink: 0; }
.muj-banner-text { font-size: 0.85rem; color: #4A3A6A; line-height: 1.5; font-weight: 500; }

/* Tema detalle */
.muj-tema-detalle { padding-top: 10px; }
.muj-tema-detalle-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.muj-tema-detalle-icon { font-size: 3rem; }
.muj-tema-detalle-header h2 { margin: 0; font-size: 1.3rem; color: #2D2A3E; }
.muj-tema-detalle-content p { color: #8A8499; font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.muj-tema-placeholder {
  background: white; border-radius: 24px; padding: 40px 24px;
  text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.muj-tema-placeholder-icon { font-size: 3rem; margin-bottom: 12px; }
.muj-tema-placeholder p { color: #8A8499; margin-bottom: 20px; }

/* =====================================================
   CALENDARIO DE CICLO
   ===================================================== */
.muj-calendario { padding-top: 10px; }
.muj-cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.muj-cal-navbtn {
  width: 36px; height: 36px; border-radius: 50%; border: none;
  color: var(--theme-primary);
  background: var(--theme-soft);
  font-size: 0.9rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.muj-cal-navbtn:hover { background: #FF4D94; color: white; }
.muj-cal-titulo { font-size: 1.15rem; font-weight: 700; color: #2D2A3E; }

/* Leyenda */
.muj-cal-leyenda {
  display: flex; justify-content: center; gap: 14px; margin-bottom: 14px;
  flex-wrap: wrap;
}
.muj-cal-leyenda-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.7rem; color: #8A8499; font-weight: 500;
}
.muj-cal-dot { width: 10px; height: 10px; border-radius: 50%; }

/* Grid calendario */
.muj-cal-dias-semana {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin-bottom: 6px; text-align: center;
}
.muj-cal-dias-semana div { font-size: 0.7rem; font-weight: 600; color: #8A8499; padding: 4px; }
.muj-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin-bottom: 24px;
}
.muj-cal-dia {
  aspect-ratio: 1; background: white; border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border: 2px solid transparent;
  position: relative; padding: 2px;
}
.muj-cal-dia:hover { transform: scale(1.08); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.muj-cal-dia.hoy { border-color: #00D084; }

/* Tipos de día según ciclo */
.muj-cal-dia.tipo-periodo { 
  background: linear-gradient(135deg, #FF4D94, #FF80B3); 
  color: white; 
}
.muj-cal-dia.tipo-ovulacion { 
  background: linear-gradient(135deg, #7065F0, #A89AF7); 
  color: white; 
}
.muj-cal-dia.tipo-folicular { background: #FFF0F5; }
.muj-cal-dia.tipo-lutea { background: #F8F9FF; }
.muj-cal-dia.tipo-prediccion { 
  background: var(--color-bg-soft);
  border: 2px dashed #FF4D94;
}

.muj-cal-dia-vacio { border-radius: 14px; }
.muj-cal-dia-num { font-size: 0.85rem; font-weight: 600; }
.muj-cal-sintomas {
  display: flex; gap: 1px; margin-top: 2px;
  position: absolute; bottom: 3px;
}
.muj-cal-sint { 
  font-size: 0.55rem; width: 14px; height: 14px; 
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.5rem;
}
.muj-cal-nota-indicador {
  position: absolute; top: 2px; right: 2px;
  font-size: 0.6rem;
}

/* Resumen del ciclo */
.muj-cal-resumen {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin-bottom: 20px;
}
.muj-cal-resumen-item {
  border-radius: 16px; padding: 14px 12px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
}
.muj-cal-resumen-label { font-size: 0.7rem; color: #8A8499; margin-bottom: 4px; font-weight: 600; text-transform: uppercase; }
.muj-cal-resumen-valor { font-size: 1rem; font-weight: 700; color: #2D2A3E; }

.muj-cal-sin-datos {
  text-align: center; padding: 40px 20px;
  background: white; border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.muj-cal-sin-datos-icon { font-size: 3rem; margin-bottom: 12px; }
.muj-cal-sin-datos p { color: #8A8499; font-size: 0.9rem; }

/* =====================================================
   MODAL DETALLE DEL DÍA (como la imagen)
   ===================================================== */
.muj-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.35); z-index: 4000;
  display: flex; align-items: flex-end; justify-content: center;
  backdrop-filter: blur(6px);
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.muj-modal-box {
  background: white; border-radius: 28px 28px 0 0;
  width: 100%; max-width: 420px; max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
  animation: slideUpModal 0.35s cubic-bezier(0.4,0,0.2,1);
}
@keyframes slideUpModal {
  from { transform: translateY(100%); opacity: 0.5; }
  to { transform: translateY(0); opacity: 1; }
}

/* Header del modal */
.muj-modal-detalle-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 12px;
  border-bottom: 1px solid #f0f0f0;
}
.muj-modal-detalle-header h3 {
  margin: 0; font-size: 1.1rem; font-weight: 700; color: #2D2A3E;
  letter-spacing: 0.5px;
}
.muj-modal-close {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: #f5f5f5; color: #8A8499; font-size: 0.9rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.muj-modal-close:hover { background: #FF4D94; color: white; }

/* Secciones del detalle */
.muj-detalle-seccion {
  padding: 16px 24px;
  border-bottom: 1px solid #f8f8f8;
}
.muj-detalle-label {
  font-size: 0.65rem; font-weight: 700; color: #B0A0C0;
  letter-spacing: 1.5px; margin-bottom: 10px;
}

/* Fecha */
.muj-detalle-fecha-box {
  display: flex; align-items: center; justify-content: space-between;
  background: #FAFAFA; border-radius: 12px; padding: 12px 16px;
  margin-bottom: 4px;
}
.muj-detalle-fecha {
  font-size: 1rem; font-weight: 700; color: #2D2A3E;
}
.muj-detalle-fecha-icon { font-size: 1.2rem; }
.muj-detalle-dia-semana {
  font-size: 0.8rem; color: #8A8499; margin-top: 4px;
  text-transform: capitalize;
}

/* Toggle Inicio de Periodo */
.muj-detalle-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  background: #FAFAFA; border-radius: 16px; padding: 14px 16px;
  cursor: pointer; transition: all 0.2s;
  border: 2px solid transparent;
}
.muj-detalle-toggle-row:hover { border-color: #FFE4F0; }
.muj-detalle-toggle-info {
  display: flex; align-items: center; gap: 12px;
}
.muj-detalle-toggle-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--color-bg-soft); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.muj-detalle-toggle-title {
  font-size: 0.85rem; font-weight: 700; color: #2D2A3E;
}
.muj-detalle-toggle-sub {
  font-size: 0.7rem; color: #B0A0C0; margin-top: 1px;
}

/* Switch */
.muj-detalle-toggle-switch {
  width: 50px; height: 28px; border-radius: 14px;
  background: #E0E0E0; position: relative;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
}
.muj-detalle-toggle-switch.activo { background: #FF4D94; }
.muj-detalle-toggle-knob {
  width: 24px; height: 24px; border-radius: 50%;
  background: white; position: absolute; top: 2px; left: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.muj-detalle-toggle-switch.activo .muj-detalle-toggle-knob {
  left: 24px;
}

/* Grid de síntomas */
.muj-detalle-sintomas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.muj-detalle-sintoma-chip {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 14px 8px; border-radius: 16px;
  border: 2px solid transparent;
  background: var(--sintoma-bg, #f5f5f5);
  cursor: pointer; transition: all 0.2s;
  min-height: 70px;
}
.muj-detalle-sintoma-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.muj-detalle-sintoma-chip.activo {
  border-color: var(--sintoma-color, #FF4D94);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.muj-detalle-sintoma-letra {
  font-size: 1.3rem; font-weight: 800;
  color: var(--sintoma-color, #333);
}
.muj-detalle-sintoma-label {
  font-size: 0.55rem; font-weight: 700;
  color: var(--sintoma-color, #666);
  text-align: center; line-height: 1.2;
  letter-spacing: 0.3px;
}

/* Notas */
.muj-detalle-notas {
  width: 100%; min-height: 80px;
  border: 2px solid #F0F0F0; border-radius: 14px;
  padding: 12px 14px; font-size: 0.9rem; color: #2D2A3E;
  background: #FAFAFA; resize: vertical;
  font-family: inherit; outline: none;
  transition: border-color 0.2s; box-sizing: border-box;
}
.muj-detalle-notas:focus { border-color: #FF4D94; background: white; }
.muj-detalle-notas::placeholder { color: #B0A0C0; }

/* Botón LISTO */
.muj-btn-listo {
  width: calc(100% - 48px); margin: 20px 24px 30px;
  padding: 16px; border-radius: 16px; border: none;
  background: linear-gradient(135deg, #FF4D94, #E84382);
  color: white; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 6px 20px rgba(255,77,148,0.3);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  letter-spacing: 1px;
}
.muj-btn-listo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,77,148,0.4);
}
.muj-btn-listo:active { transform: scale(0.98); }

/* =====================================================
   BIBLIOTECA
   ===================================================== */
.muj-biblioteca { padding-top: 10px; }
.muj-bib-header { text-align: center; margin-bottom: 24px; }
.muj-bib-icon { font-size: 3rem; margin-bottom: 8px; }
.muj-bib-header h2 { margin: 0; font-size: 1.3rem; color: #2D2A3E; }
.muj-bib-header p { margin: 6px 0 0; font-size: 0.85rem; color: #8A8499; }

.muj-bib-lista { display: flex; flex-direction: column; gap: 14px; }
.muj-bib-card {
  background: white; border-radius: 24px; padding: 18px;
  display: flex; gap: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.muj-bib-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.muj-bib-card-icon { font-size: 2.2rem; flex-shrink: 0; }
.muj-bib-card-content { flex: 1; min-width: 0; }
.muj-bib-card-titulo { font-size: 1rem; font-weight: 700; color: #2D2A3E; margin-bottom: 6px; }
.muj-bib-card-desc { font-size: 0.82rem; color: #8A8499; line-height: 1.5; margin-bottom: 10px; }
.muj-bib-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 0.75rem;
  font-weight: 700;

  color: var(--color-primary);
  background: var(--color-bg-soft);

  text-decoration: none;
  padding: 6px 12px;
  border-radius: 10px;

  transition: all 0.2s;
}
.muj-bib-card-link:hover {
  background: var(--color-primary);
  color: white;
}
.muj-bib-card-link i { font-size: 0.65rem; }

/* =====================================================
   EXPERTO IA (CHAT)
   ===================================================== */
.muj-chat {
  display: flex; flex-direction: column; height: 100%;
  padding-top: 10px;
}
.muj-chat-header {
  display: flex; align-items: center; gap: 12px; padding: 0 4px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 8px;
}
.muj-chat-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #7065F0, #A89AF7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 12px rgba(112,101,240,0.3);
}
.muj-chat-name { font-size: 1rem; font-weight: 700; color: #2D2A3E; }
.muj-chat-status { font-size: 0.75rem; color: #00D084; font-weight: 500; }

/* Mensajes */
.muj-chat-messages {
  flex: 1; overflow-y: auto; padding: 10px 4px;
  display: flex; flex-direction: column; gap: 12px;
}
.muj-chat-msg { display: flex; }
.muj-chat-msg.user { justify-content: flex-end; }
.muj-chat-msg.bot { justify-content: flex-start; }
.muj-chat-bubble {
  max-width: 80%; padding: 12px 16px; border-radius: 20px;
  font-size: 0.9rem; line-height: 1.5; word-break: break-word;
  animation: chatPop 0.3s cubic-bezier(0.4,0,0.2,1);
}
.muj-chat-msg.bot .muj-chat-bubble {
  background: white; color: #2D2A3E;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.muj-chat-msg.user .muj-chat-bubble {
  background: linear-gradient(135deg, #FF4D94, #FF80B3); color: white;
  border-bottom-right-radius: 4px;
}
@keyframes chatPop {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Sugerencias */
.muj-chat-sugerencias {
  display: flex; gap: 8px; overflow-x: auto; padding: 8px 0;
  scrollbar-width: none;
}
.muj-chat-sugerencias::-webkit-scrollbar { display: none; }
.muj-chat-chip {
  flex-shrink: 0; padding: 8px 14px; border-radius: 18px;
  border: 1px solid #E0D8F0; background: white;
  color: #7065F0; font-size: 0.8rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.muj-chat-chip:hover { background: #7065F0; color: white; border-color: #7065F0; }

/* Input */
.muj-chat-inputbox {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 4px;
}
.muj-chat-inputbox input {
  flex: 1; padding: 12px 18px; border-radius: 24px;
  border: 2px solid #E0D8F0; background: white;
  font-size: 0.9rem; outline: none; color: #2D2A3E;
  transition: border-color 0.2s;
}
.muj-chat-inputbox input:focus { border-color: #7065F0; }
.muj-chat-inputbox input::placeholder { color: #B0A0C0; }
.muj-chat-send {
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: linear-gradient(135deg, #FF4D94, #FF80B3); color: white;
  font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; box-shadow: 0 4px 12px rgba(255,77,148,0.3);
  flex-shrink: 0;
}
.muj-chat-send:hover { transform: scale(1.08); box-shadow: 0 6px 18px rgba(255,77,148,0.4); }

/* Aviso legal */
.muj-chat-legal {
  text-align: center; font-size: 0.65rem; color: #B0A0C0;
  padding: 4px; margin-top: 4px;
}

/* =====================================================
   BOTONES GLOBALES
   ===================================================== */
.muj-btn-primario {
  padding: 14px 28px; border-radius: 16px; border: none;
  background: linear-gradient(135deg, #FF4D94, #FF80B3); color: white;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 16px rgba(255,77,148,0.3);
}
.muj-btn-primario:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,77,148,0.4);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 480px) {
  .mujeres-header { padding: 12px 16px; }
  .mujeres-titulo { font-size: 1.2rem; letter-spacing: 2px; }
  .mujeres-contenido { padding: 0 14px 24px; }

  .muj-cards-row { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .muj-card-bento { padding: 14px 8px; border-radius: 20px; }
  .muj-card-icon { font-size: 2rem; }
  .muj-card-title { font-size: 0.8rem; }
  .muj-card-desc { font-size: 0.65rem; }

  .muj-temas-grid { gap: 10px; }
  .muj-tema-card { padding: 12px; border-radius: 16px; }
  .muj-tema-icon { font-size: 1.6rem; }
  .muj-tema-title { font-size: 0.8rem; }
  .muj-tema-desc { font-size: 0.65rem; }

  .muj-cal-titulo { font-size: 1rem; }
  .muj-cal-dia { border-radius: 10px; }
  .muj-cal-dia-num { font-size: 0.75rem; }

  .muj-modal-box { max-width: 100%; border-radius: 24px 24px 0 0; }
  .muj-detalle-seccion { padding: 14px 18px; }
  .muj-detalle-sintomas-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .muj-detalle-sintoma-chip { padding: 10px 6px; min-height: 60px; }
  .muj-detalle-sintoma-letra { font-size: 1.1rem; }
  .muj-detalle-sintoma-label { font-size: 0.5rem; }
  .muj-btn-listo { width: calc(100% - 36px); margin: 16px 18px 24px; }

  .muj-bib-card { padding: 14px; border-radius: 20px; }
  .muj-bib-card-icon { font-size: 1.8rem; }
  .muj-bib-card-titulo { font-size: 0.9rem; }
  .muj-bib-card-desc { font-size: 0.75rem; }

  .muj-chat-bubble { font-size: 0.85rem; padding: 10px 14px; }
  .muj-chat-inputbox input { font-size: 0.85rem; padding: 10px 14px; }
}