/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 30 2025 | 22:16:20 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    background-color: #f1f5f9; /* Fondo gris azulado suave */
  }
  
  /* --- HEADER PRINCIPAL --- */
  .header-top {
    background-color: #1E293B; /* gris oscuro azulado */
    color: white;
    padding: 10px 20px;
    border-bottom: 4px solid #0EA5E9; /* azul brillante */
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
  }
  
  .logo .highlight {
    color: white;
    background: #0EA5E9; /* azul brillante */
    padding: 0 6px;
    border-radius: 5px;
  }
  
  /* --- CONTACTO --- */
  .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .contact-info .whatsapp,
  .contact-info .phone {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .contact-info i {
    font-size: 1.8rem;
  }
  
  .contact-info .label {
    font-size: 0.75rem;
  }
  
  .contact-info .number {
    font-weight: 600;
  }
  
  /* --- NAVBAR --- */
  .navbar {
    background: #1E293B; /* gris azulado oscuro */
    border-bottom: 2px solid #0EA5E9;
    position: relative;
    z-index: 100;
  }
  
  .navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
    gap: 25px;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a {
    text-decoration: none;
    color: #E2E8F0; /* gris claro */
    font-weight: 600;
    padding: 6px 12px;
    display: block;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .navbar li.active a,
  .navbar a:hover {
    background-color: #0EA5E9; /* azul brillante */
    color: white;
  }
  
  /* --- SUBMENÚ --- */
  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    background: #1E293B;
    list-style: none;
    border: 1px solid #0EA5E9;
    border-radius: 6px;
    overflow: hidden;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    z-index: 9999;
  
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  
  .submenu li {
    width: 100%;
  }
  
  .submenu li a {
    color: #E2E8F0;
    padding: 10px 15px;
    font-weight: 500;
    border-radius: 0;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .submenu li a:hover {
    background-color: #38BDF8; /* celeste más suave */
    color: #1E293B;
  }
  
  /* --- ANIMACIÓN Y VISIBILIDAD DEL SUBMENÚ --- */
  .dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  /* --- COLOR ACTIVO DEL BOTÓN "PRODUCTOS" --- */
  .dropdown:hover > a {
    background-color: #0EA5E9;
    color: white;
  }
  