* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #f7f5f2;
  color: #111;
}

.header {
  padding: 40px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 
 /* Estilo de prueba para logo real */
/* Logo principal de VLG */
.ace_content {
    width: 350px;                 /* ancho deseado del logo */
    height: 120px;                /* altura deseada */
    background-image: url('logo.png'); /* ruta a tu nuevo logo */
    background-size: contain;     /* mantiene proporciones */
    background-repeat: no-repeat;
    background-position: center;  /* centra el logo */
    
    display: flex;                /* permite centrar fácilmente */
    justify-content: center;      /* centra horizontalmente */
    align-items: center;          /* centra verticalmente */
}




nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 28px;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: 0.3s;
}

.hero {
  padding: 120px 40px;
  max-width: 800px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #111;
  color: #fff;
  text-decoration: none;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 40px;
  padding: 60px 40px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.card img {
  width: 100%;
  margin-bottom: 15px;
}

.footer {
  text-align: center;
  padding: 40px;
  font-size: 14px;
}

@media (max-width: 768px) {

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 40px;
    background: white;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-radius: 16px;
  }
  

  nav.active {
    display: flex;
  }

  .burger {
    display: flex;
  }
}

