/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: 'Arial', sans-serif;
}

/* Fondo */
.hero {
  background-image: url('../img/fondo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  width: 100%;
  height: 100vh;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Logo */
.logo {
  max-width: 300px;
  width: 80%;
  height: auto;
  margin-bottom: 30px;
}

/* Contenedor de botones */
.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Botón catálogo */
#catalogoBtn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#catalogoBtn:hover {
  background-color: #333;
}

/* Botón WhatsApp */
.whatsappBtn {
  background-color: #fff;
  color: #000000; /* Amarillo dorado */
  border: 1px solid #000000;
  padding: 14px 28px;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsappBtn:hover {
  background-color: #FFD700;
  color: #000;
}

/* Ícono de WhatsApp */
.whatsapp-icon {
  width: 20px;
  height: 20px;
}
