/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GENERAL */
body {
  background-color: #1a1a1a;
  font-family: Arial, sans-serif;
  color: white;
  min-height: 100vh;
}

/* FRASE SUPERIOR */
.frase-top {
  background-color: #000;
  color: #ffd700;
  text-align: center;
  padding: 12px 0;
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 1px;
  border-bottom: 2px solid #ffd700;
  position: relative;
  z-index: 10;
}

/* ENCABEZADO horizontal */
.vexa-header {
  /* acá podés poner estilos generales del header si querés */
}

/* Fondo hamburguesa grande a la izquierda */
.hamburguesa-fondo {
  background-image: url('vexa-fondo.jpg');
  background-repeat: no-repeat;
  background-size: 500px auto;
  background-position: left center;
  width: 500px;
  height: 250px;
}

.producto-principal {
  text-align: center;
  background-color: #222;
  padding: 40px 20px;
}

.producto-principal img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.producto-principal h1 {
  font-size: 2rem;
  margin-top: 20px;
  color: #ffd700;
}

.producto-principal p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #ccc;
}

.encabezado {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 20px;
}

.hamburguesa img {
  max-width: 300px;
  height: auto;
}

.logo img {
  max-width: 150px;
  height: auto;
}