/* CALENDAR MODULE */
.calendar-section {
  background-image: 
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="garden" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%239370db" opacity="0.05"/><circle cx="10" cy="10" r="0.5" fill="%23da70d6" opacity="0.03"/><circle cx="30" cy="30" r="0.5" fill="%23b19cd9" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23garden)"/></svg>'),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(248, 244, 255, 0.5) 100%
    );
  background-size: 40px 40px, 100% 100%;
  background-position: 0 0, center;
  background-repeat: repeat, no-repeat;
  position: relative;
  padding: 1rem;
  border-radius: 20px;
  box-shadow: 
    0 12px 40px rgba(147, 112, 219, 0.15),
    0 4px 16px rgba(147, 112, 219, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: fadeInUp 0.8s ease-out;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border: 2px solid rgba(147, 112, 219, 0.15);
  touch-action: pan-y;
  backdrop-filter: blur(3px);
  /* GPU acceleration */
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}


.calendar-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    /* Flores violetas decorativas */
    radial-gradient(ellipse 60% 50% at 10% 15%, rgba(147, 112, 219, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(218, 112, 214, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse 55% 45% at 15% 85%, rgba(177, 156, 217, 0.11) 0%, transparent 48%),
    radial-gradient(ellipse 45% 55% at 85% 80%, rgba(221, 160, 221, 0.1) 0%, transparent 42%),
    radial-gradient(ellipse 40% 50% at 50% 10%, rgba(230, 230, 250, 0.09) 0%, transparent 40%),
    /* Hojas verdes sutiles */
    radial-gradient(ellipse 70% 40% at 5% 50%, rgba(180, 220, 180, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 95% 60%, rgba(170, 210, 170, 0.07) 0%, transparent 45%),
    /* Patrón de jardín */
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(147, 112, 219, 0.02) 10px,
      rgba(147, 112, 219, 0.02) 20px
    );
  pointer-events: none;
  z-index: 0;
  border-radius: 20px;
  animation: gardenBloom 30s ease-in-out infinite;
}

.calendar-section::after {
  content: '🌸';
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 1.2rem;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  animation: flowerFloat 6s ease-in-out infinite;
}

@keyframes flowerFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translate(1px, -2px) rotate(3deg);
    opacity: 0.35;
  }
}

@keyframes gentleSway {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    background-position: 0% 0%, 100% 100%, 50% 50%;
  }
  25% {
    transform: translate(2px, -1px) rotate(0.3deg);
    background-position: 1% 1%, 99% 99%, 51% 49%;
  }
  50% {
    transform: translate(0, 0) rotate(0deg);
    background-position: 0% 0%, 100% 100%, 50% 50%;
  }
  75% {
    transform: translate(-2px, 1px) rotate(-0.3deg);
    background-position: -1% -1%, 101% 101%, 49% 51%;
  }
}

.calendar-section > * {
  position: relative;
  z-index: 1;
}

.calendar-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  flex-shrink: 0;
  gap: 0.8rem;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(248, 244, 255, 0.3) 100%
  );
  border-radius: 16px;
  border: 1px solid rgba(147, 112, 219, 0.1);
  backdrop-filter: blur(5px);
  box-shadow: 
    0 2px 8px rgba(147, 112, 219, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.calendar-header::before {
  content: '🌺';
  position: absolute;
  left: 12px;
  font-size: 1rem;
  opacity: 0.4;
  animation: gentleSway 4s ease-in-out infinite;
}

.calendar-header::after {
  content: '🌺';
  position: absolute;
  right: 12px;
  font-size: 1rem;
  opacity: 0.4;
  animation: gentleSway 4s ease-in-out infinite 2s;
}


.month-title {
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  color: var(--primary-purple);
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(147, 112, 219, 0.15);
  letter-spacing: 0.3px;
  font-family: "Quicksand", sans-serif;
  line-height: 1.3;
  position: relative;
  padding: 0 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(248, 244, 255, 0.5) 100%
  );
  border-radius: 12px;
  border: 1px solid rgba(147, 112, 219, 0.15);
  backdrop-filter: blur(3px);
  box-shadow: 
    0 2px 6px rgba(147, 112, 219, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.month-title::before {
  content: '🌸';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  opacity: 0.5;
  animation: gentleSway 3s ease-in-out infinite;
}

.month-title::after {
  content: '🌸';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  opacity: 0.5;
  animation: gentleSway 3s ease-in-out infinite 1.5s;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  color: #9370db;
  border: 2px solid rgba(255, 182, 193, 0.3);
  width: clamp(32px, 5.5vw, 42px);
  height: clamp(32px, 5.5vw, 42px);
  border-radius: 50%;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 15px rgba(255, 182, 193, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.nav-btn:hover {
  transform: scale(1.12);
  box-shadow: 
    0 6px 20px rgba(255, 182, 193, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(221, 160, 221, 0.4);
  color: #da70d6;
}

.nav-btn:active {
  transform: scale(1.05);
  box-shadow: 
    0 2px 10px rgba(255, 182, 193, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: minmax(0, 1fr);
  gap: clamp(0.3rem, 0.6vw, 0.5rem);
  flex: 1;
  overflow: hidden;
  width: 100%;
  padding: 0.2rem;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(147, 112, 219, 0.03) 0%, transparent 50%);
  border-radius: 16px;
  position: relative;
}

.calendar-grid::before {
  content: '🌿';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
  animation: gentleSway 5s ease-in-out infinite;
}

.calendar-grid::after {
  content: '🌿';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
  animation: gentleSway 5s ease-in-out infinite 2.5s;
}

.day-header {
  text-align: center;
  font-weight: 600;
  color: var(--primary-purple);
  padding: clamp(0.2rem, 0.4vw, 0.3rem);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: "Quicksand", sans-serif;
  background: linear-gradient(
    135deg,
    rgba(255, 250, 255, 0.98) 0%,
    rgba(252, 248, 255, 0.95) 50%,
    rgba(250, 245, 255, 0.98) 100%
  );
  border-radius: 12px;
  border: 2px solid rgba(196, 165, 214, 0.2);
  box-shadow: 
    0 2px 8px rgba(196, 165, 214, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: visible;
  transition: transform 0.2s ease;
}

.day-header:hover {
  transform: scale(1.05);
  box-shadow: 
    0 3px 10px rgba(196, 165, 214, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.day-stickers-container {
  position: relative;
  width: 100%;
  height: clamp(2.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.day-sticker {
  position: absolute;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1;
  transform: 
    translate(var(--translateX, 0), var(--translateY, 0))
    rotate(var(--rotation))
    scale(var(--size));
  filter: 
    drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 8px rgba(255, 182, 193, 0.3));
  animation: stickerFloat 3s ease-in-out infinite;
  animation-delay: calc(var(--index) * 0.15s);
  pointer-events: none;
  z-index: 2;
  transform-origin: center center;
}

.day-header[data-day="Dom"] .day-sticker {
  filter: 
    drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 8px rgba(255, 105, 180, 0.3));
}

.day-header[data-day="Lun"] .day-sticker {
  filter: 
    drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 8px rgba(255, 218, 185, 0.3));
}

.day-header[data-day="Mar"] .day-sticker {
  filter: 
    drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 8px rgba(186, 85, 211, 0.3));
}

.day-header[data-day="Mié"] .day-sticker {
  filter: 
    drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 8px rgba(255, 192, 203, 0.3));
}

.day-header[data-day="Jue"] .day-sticker {
  filter: 
    drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 8px rgba(255, 182, 193, 0.3));
}

.day-header[data-day="Vie"] .day-sticker {
  filter: 
    drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 8px rgba(255, 218, 185, 0.3));
}

.day-header[data-day="Sáb"] .day-sticker {
  filter: 
    drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 8px rgba(255, 105, 180, 0.3));
}

@keyframes stickerFloat {
  0%, 100% {
    transform: 
      translate(var(--translateX, 0), var(--translateY, 0))
      rotate(var(--rotation))
      scale(var(--size));
  }
  50% {
    transform: 
      translate(var(--translateX, 0), var(--translateY, 0))
      rotate(calc(var(--rotation) + 10deg))
      scale(calc(var(--size) * 1.2));
  }
}

.day-header[data-day="Dom"] .day-emoji {
  animation-delay: 0s;
}

.day-header[data-day="Lun"] .day-emoji {
  animation-delay: 0.3s;
}

.day-header[data-day="Mar"] .day-emoji {
  animation-delay: 0.6s;
}

.day-header[data-day="Mié"] .day-emoji {
  animation-delay: 0.9s;
}

.day-header[data-day="Jue"] .day-emoji {
  animation-delay: 1.2s;
}

.day-header[data-day="Vie"] .day-emoji {
  animation-delay: 1.5s;
}

.day-header[data-day="Sáb"] .day-emoji {
  animation-delay: 1.8s;
}

.day-header .day-name {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.2;
  display: block;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: var(--primary-purple);
  text-shadow: 
    0 2px 4px rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

@keyframes kawaiiBounce {
  0%, 100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  25% {
    transform: translateY(-4px) scale(1.15) rotate(-5deg);
  }
  50% {
    transform: translateY(-6px) scale(1.2) rotate(0deg);
  }
  75% {
    transform: translateY(-4px) scale(1.15) rotate(5deg);
  }
}

@keyframes shimmerHeader {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.calendar-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(248, 244, 255, 0.35) 100%
  );
  backdrop-filter: blur(2px);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: clamp(0.15rem, 0.3vw, 0.3rem);
  min-height: 0;
  animation: fadeInScale 0.5s ease-out backwards;
  overflow: hidden;
  border: 1.5px solid rgba(147, 112, 219, 0.15);
  box-shadow: 
    0 2px 8px rgba(147, 112, 219, 0.1);
  contain: layout style paint;
  gap: 1px;
}

/* Decoración de hover removida - ya no tapa el contenido */

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* will-change deshabilitado - puede causar problemas de rendimiento */
/* .calendar-day {
    will-change: transform, opacity;
}

.calendar-day.has-highlight {
    will-change: background-image;
} */

.calendar-day:hover {
  transform: scale(1.05);
  box-shadow: 
    0 6px 20px rgba(255, 182, 193, 0.25);
  border-color: rgba(221, 160, 221, 0.25);
}

.calendar-day.has-photos {
  background: linear-gradient(
    135deg,
    rgba(196, 165, 214, 0.25) 0%,
    rgba(218, 183, 227, 0.2) 100%
  );
  color: var(--primary-purple);
  font-weight: 600;
  box-shadow: 
    0 4px 15px rgba(147, 112, 219, 0.15);
  border: 2px solid rgba(147, 112, 219, 0.25);
  position: relative;
}

/* Sparkle removido - ya no se muestra */

/* Emoji de cámara removido - ya no se muestra */
/* .calendar-day.has-photos::after {
    content: '📸';
    position: absolute;
    bottom: 2px;
    right: 2px;
    font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    z-index: 2;
} */

.calendar-day.has-highlight {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
}

/* Gradiente morado removido - ya no tapa los thumbnails */

/* Corazón decorativo removido - ya no se muestra */

/* Asegurar que las fotos/imágenes dentro del calendario sean opacas */
.calendar-day.has-highlight,
.calendar-day.has-highlight img,
.calendar-day.has-highlight video,
.calendar-day img,
.calendar-day video {
  opacity: 1 !important;
}

.highlight-item img,
.highlight-item video {
  opacity: 1 !important;
}

/* Estrellita removida - ya no se muestra */
/* .calendar-day.has-highlight::after {
    content: '⭐';
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.calendar-day.has-highlight.has-video::after {
    content: '🎬';
    font-size: clamp(0.7rem, 1.4vw, 0.85rem);
} */

/* Video de fondo en días */
.calendar-day video {
  pointer-events: none;
}

/* Skeleton loading para días con highlight */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.calendar-day.other-month {
  opacity: 0.3;
  pointer-events: none;
  animation: none !important;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(248, 244, 255, 0.15) 100%
  );
  border: 1px solid rgba(147, 112, 219, 0.08);
}

.calendar-day.other-month::before {
  content: '🌙';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(0.6rem, 1.2vw, 0.8rem);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.calendar-day.other-month .day-number,
.calendar-day.other-month .photo-count {
  color: var(--accent-violet) !important;
  opacity: 0.4 !important;
}

.calendar-day.today {
  border: 3px solid var(--primary-purple);
  font-weight: 700;
  box-shadow: 
    0 0 25px rgba(147, 112, 219, 0.4),
    0 4px 15px rgba(147, 112, 219, 0.25),
    inset 0 0 20px rgba(147, 112, 219, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(248, 244, 255, 0.5) 100%
  );
  backdrop-filter: blur(3px);
  animation: todayPulse 3s ease-in-out infinite;
  position: relative;
}

.calendar-day.today::before {
  content: '🌟';
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(147, 112, 219, 0.3));
  /* Animación removida */
}

@keyframes todayPulse {
  0%,
  100% {
    box-shadow: 
      0 0 25px rgba(147, 112, 219, 0.5),
      0 4px 15px rgba(147, 112, 219, 0.35),
      inset 0 0 20px rgba(147, 112, 219, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(147, 112, 219, 0.6),
      0 6px 20px rgba(147, 112, 219, 0.45),
      inset 0 0 25px rgba(147, 112, 219, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }
}

@keyframes birthdayBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-3px) scale(1.1);
  }
  50% {
    transform: translateY(0) scale(1);
  }
  75% {
    transform: translateY(-2px) scale(1.05);
  }
}

.calendar-day.has-birthday {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 192, 203, 0.3) 0%,
    rgba(255, 182, 193, 0.25) 100%
  );
  border: 2.5px solid rgba(255, 182, 193, 0.4);
  box-shadow: 
    0 0 20px rgba(255, 182, 193, 0.3),
    0 4px 15px rgba(255, 182, 193, 0.2),
    inset 0 0 15px rgba(255, 182, 193, 0.15);
  animation: birthdayBounce 2s ease-in-out infinite;
}

.calendar-day.has-birthday::before {
  content: '🎂';
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  z-index: 3;
  filter: drop-shadow(0 2px 4px rgba(255, 182, 193, 0.4));
  animation: birthdayBounce 2s ease-in-out infinite;
  pointer-events: none;
}

.calendar-day.has-birthday .birthday-icon {
  pointer-events: none;
}

.day-number {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 0.05rem;
  line-height: 1.1;
  color: white;
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 2px 6px;
  border-radius: 6px;
  background: linear-gradient(
    135deg,
    rgba(147, 112, 219, 0.4) 0%,
    rgba(147, 112, 219, 0.25) 100%
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  flex-shrink: 0;
}

/* Decoración sutil para días sin fotos */
.calendar-day:not(.has-photos):not(.other-month)::after {
  content: '🌱';
  position: absolute;
  bottom: 2px;
  right: 2px;
  font-size: clamp(0.4rem, 0.8vw, 0.5rem);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.photo-count {
  font-size: clamp(0.5rem, 1.2vw, 0.7rem);
  line-height: 1.1;
  white-space: nowrap;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  color: #9370db;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 1px;
  flex-shrink: 0;
}

.comment-count {
  font-size: clamp(0.45rem, 1vw, 0.6rem);
  font-weight: 600;
  color: #da70d6;
  margin-top: 1px;
  line-height: 1.1;
  flex-shrink: 0;
}

/* Cuando hay highlight, los contadores son blancos */
.calendar-day.has-highlight .photo-count,
.calendar-day.has-highlight .comment-count {
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Mejorar legibilidad del número cuando hay highlight */
.calendar-day.has-highlight .day-number {
  color: white !important;
  background: linear-gradient(
    135deg,
    rgba(147, 112, 219, 0.65) 0%,
    rgba(147, 112, 219, 0.5) 100%
  ) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Decoraciones adicionales para días especiales */
.calendar-day.has-milestone {
  position: relative;
}

.calendar-day.has-milestone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255, 192, 203, 0.2) 0%, rgba(255, 182, 193, 0.15) 100%);
  border-radius: 12px;
  z-index: 0;
  pointer-events: none;
}

.calendar-day.has-milestone .milestone-badge {
  animation: milestoneGlow 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.5));
}

@keyframes milestoneGlow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.5));
  }
  50% {
    opacity: 0.9;
    transform: scale(1.1);
    filter: drop-shadow(0 3px 10px rgba(255, 215, 0, 0.7));
  }
}

/* Gallery Section */
