/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(22, 255, 217, 0.1);
  padding: 12px 0;
  width: 100%;
}

/* ==================== BADGES CONTAINER ==================== */
.badges-container {
  position: fixed;
  top: 70px;
  left: 14px;
  right: 14px;
  z-index: 1400;
  display: flex;
  gap: 14px;
  align-items: center;
  pointer-events: auto;
}

.floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* WhatsApp Badge */
.floating-badge.whats {
  background: rgba(12, 24, 12, 0.85);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.2);
}

.floating-badge.whats:hover {
  background: rgba(12, 24, 12, 1);
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.4);
}

.floating-badge.whats svg {
  width: 18px;
  height: 18px;
  fill: #25D366;
}

.floating-badge.whats .whats-text {
  display: inline;
  margin-left: 4px;
}

/* Delivery Status Badge */
#deliveryStatus {
  background: rgba(31, 31, 31, 0.9);
  border: 1px solid rgba(22, 255, 217, 0.2);
  color: var(--accent-neon);
  box-shadow: 0 0 12px rgba(22, 255, 217, 0.1);
}

#deliveryStatus:hover {
  border-color: rgba(22, 255, 217, 0.4);
  box-shadow: 0 0 16px rgba(22, 255, 217, 0.2);
}

#deliveryStatus.offline {
  border-color: rgba(255, 0, 92, 0.3);
  color: #ff005c;
  box-shadow: 0 0 12px rgba(255, 0, 92, 0.1);
}

#deliveryStatus.offline:hover {
  border-color: rgba(255, 0, 92, 0.5);
  box-shadow: 0 0 16px rgba(255, 0, 92, 0.2);
}

/* ==================== WH-ORIGIN (WHATSAPP NOS CARDS) ==================== */
.wh-origin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111;
  border: 1px solid #1f1f1f;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 10px -4px #7f00ff;
}

.wh-origin:hover {
  background: #181818;
  box-shadow: 0 0 12px -2px #16ffd9;
}

.wh-origin svg {
  width: 24px;
  height: 24px;
  fill: #7f00ff;
}

.wh-origin:hover svg {
  fill: #16ffd9;
}

.wh-origin .material-icons {
  display: none;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.1rem;
  font-family: var(--font-1);
}

.logo-small {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--ink-dim);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-neon);
  transition: width 0.3s;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--accent-neon);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-selector {
  background: rgba(31, 31, 31, 0.8);
  border: 1px solid #2c2c2c;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-2);
  transition: all 0.3s;
  font-size: 0.9rem;
  min-width: 80px;
}

.lang-selector:hover {
  border-color: var(--accent-neon);
  box-shadow: 0 0 10px rgba(22, 255, 217, 0.2);
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(14px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-14px);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(14, 14, 14, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid rgba(22, 255, 217, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-right {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .lang-selector {
    width: 100%;
    font-size: 1rem;
    padding: 10px 12px;
  }

  .badges-container {
    top: 80px;
    flex-direction: column;
    gap: 10px;
    right: 10px;
    left: 10px;
  }

  /* Esconder delivery status no mobile */
  #deliveryStatus {
    display: none !important;
  }

  .floating-badge {
    width: 100%;
    justify-content: center;
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .floating-badge.whats svg {
    width: 16px;
    height: 16px;
  }
}

/* ==================== FOOTER ==================== */
.footer {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(22, 255, 217, 0.1);
  color: var(--ink);
  padding: 50px 20px 20px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--accent-neon);
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--accent-neon);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links li {
  margin-bottom: 0;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(22, 255, 217, 0.1);
  padding-top: 20px;
  color: var(--ink-dim);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 5px 0;
}

.tiny {
  opacity: 0.6;
}

/* Responsivo */
@media (max-width: 600px) {
  .footer {
    padding: 30px 16px 16px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-section h3 {
    font-size: 0.95rem;
  }

  .social-links {
    justify-content: center;
  }
}
