@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Teko:wght@400;700&display=swap');
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #333;
  }
  
  /* HEADER */
  header {
    background-color: #a77c3b;
    text-align: center;
    padding: 20px;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    animation: mover-lateral 5s ease-in-out infinite alternate;
    margin-bottom: 10px;
  }
  
  .boton-inicio {
    position: absolute;
    left: 20px;
    top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #ffcc00;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
  }
  
  .boton-inicio:hover {
    background-color: #e6b800;
  }
  
  .boton-descarga {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
  }
  
  .boton-descarga:hover {
    background-color: #0056b3;
  }
  
  /* CATÁLOGO */
  .catalogo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 30px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .producto {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 10px;
    transition: transform 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .producto:hover {
    transform: scale(1.05);
  }
  
  .producto img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  /* Botón de WhatsApp fuera del footer */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    outline: none;
    box-shadow: none;
}
.whatsapp-button {
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

/* Efecto al pasar el mouse */
.whatsapp-button:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

  /* FOOTER */
  footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding: 30px;
    background-color: #4a2c0a;
    color: white;
    text-align: center;
  }
  
  footer .contacto,
  footer .marca {
    margin: 10px;
    min-width: 200px;
  }
  
  footer h3,
  footer h2 {
    margin-bottom: 10px;
  }
  
  footer .color {
    color: #ffcc00;
  }
  
  /* ANIMACIÓN */
  @keyframes mover-lateral {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(10px);
    }
  }
  
  /* MEDIA QUERIES - RESPONSIVE */
  @media (max-width: 768px) {
    header {
      padding: 15px;
    }
  
    .boton-inicio {
      top: 10px;
      left: 10px;
      padding: 8px 12px;
      font-size: 14px;
    }
  
    .boton-descarga {
      padding: 8px 15px;
      font-size: 14px;
    }
  
    h1 {
      font-size: 20px;
    }
  
    .logo {
      width: 60px;
      height: 60px;
    }
  
    .catalogo {
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      padding: 20px;
    }
  
    .producto {
      padding: 8px;
    }
  
    footer {
      flex-direction: column;
      align-items: center;
    }
  
    footer .contacto,
    footer .marca {
      text-align: center;
    }
  }
  