/* Bottom Navigation Styles - Flat Design (Renamed to avoid conflict) */
:root {
  --nav-bg: #0b1220; /* Dark background matching the example */
  --nav-text-color: #ffffff; /* Inactive text white */
  --nav-active-color: #3b82f6; /* Lighter Blue for active state (Tailwind blue-500) */
  --nav-border-color: rgba(255, 255, 255, 0.1);
}

.mv-bottom-modern {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--nav-bg) !important;
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* Stretch items to fill height */
  padding: 0 !important; /* Remove padding to allow border to touch top */
  height: 60px; /* Fixed height for consistency */
  border-top: 1px solid var(--nav-border-color);
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

/* Renamed from .nav-item to .bottom-nav-item to avoid conflicts with global styles */
.mv-bottom-modern .bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: var(--nav-text-color);
  font-size: 11px; /* Small text */
  font-weight: 600;
  transition: all 0.2s ease;
  flex: 1;
  position: relative;

  /* Aggressive Resets to prevent bubbles */
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 4px 0 0 0 !important; /* Top padding for spacing, no side padding */
  margin: 0 !important;
}

/* Active State Indicator (Top Blue Line) */
.mv-bottom-modern .bottom-nav-item.active::before {
  content: "";
  position: absolute;
  top: -1px; /* Align with container top border */
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--nav-active-color);
  box-shadow: 0 0 8px var(--nav-active-color); /* Slight glow */
  border-radius: 0 0 2px 2px;
  z-index: 2;
}

/* Active Text & Icon Color */
.mv-bottom-modern .bottom-nav-item.active {
  color: var(--nav-active-color) !important;
  background: transparent !important; /* Double check active background reset */
}

/* Icon Styles */
.mv-bottom-modern .bottom-nav-item svg {
  width: 22px;
  height: 22px;
  margin-bottom: 4px;
  fill: currentColor;
  transition: transform 0.2s ease, color 0.2s ease;
  color: inherit;
  opacity: 0.8; /* Slightly dim inactive icons */
}

.mv-bottom-modern .bottom-nav-item.active svg {
  transform: none; /* No movement needed, just color change */
  opacity: 1;
  filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5)); /* Blue glow */
}

/* Specific Utility Classes from User's SVGs */
.w-6 {
  width: 1.5rem;
}
.h-6 {
  height: 1.5rem;
}
.transition-opacity {
  transition: opacity 0.15s ease;
}
.duration-300 {
  transition-duration: 300ms;
}
.color-text-nav {
  color: currentColor;
}
.text-mainNavigationTextColor {
  color: currentColor;
}

/* Heartbeat Animation - Subtle for active state if desired */
.latido {
  /* Removed distinct animation to match the static clean look of the example */
}

/* Hide on Desktop */
@media (min-width: 901px) {
  .mv-bottom-modern {
    display: none;
  }
}
