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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #111111;
  color: #ffffff;
}

/* CONTENEDOR */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


.menu-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.whatsapp-btn {
  background-color: #7CFC00;
  color: #000;
  text-align: center;
  padding: 8px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background-color: #5ed400;
}

   
/* ===== HEADER ===== */

.header {
  background-color: #1a1a1a;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
   padding: 8px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0; /* MÁS COMPACTO */
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 70px; /* reducido */
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-img {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 45px;
  }
}

.logo-text {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

/* ===== PROMO BANNER ===== */

.promo-banner {
  background: #39ff14;
  color: #000;
  text-align: center;
  font-weight: bold;
  padding: 8px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeSlideDown 0.8s ease forwards;
  animation-delay: 0.3s;
}

/* ===== ANIMACIÓN ===== */

@keyframes fadeSlideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}







/* FOOTER */
.footer {
  background-color: #1a1a1a;
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 40px;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}





