body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #f0efeb;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  background-color: #eeece8;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #264646;
}

.icono {
  width: 40px;
  height: 40px;
  background-color: #264646;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #4f5d5d;
  font-weight: 500;
}

.nav-links a:hover {
  color: #264646;
}

.ubicacion-btn {
  background-color: #264646;
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.ubicacion-btn:hover {
  opacity: 0.9;
}







.black-friday {
  background-color: #f4f3ef;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
}

.black-friday-banner {
  position: relative;
  width: 90%;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.black-friday-banner img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  filter: brightness(0.6);
}

.black-friday-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  padding: 1rem 2rem;
}

.black-friday-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.black-friday-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn-bf {
  background-color: #1e3a34;
  color: #ffffff;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-bf:hover {
  background-color: #30584f;
}

@media (max-width: 768px) {
  .black-friday-text h2 {
    font-size: 1.8rem;
  }

  .black-friday-text p {
    font-size: 1rem;
  }

  .black-friday-banner img {
    height: 280px;
  }
}









.blackjack-section {
  background-color: #1e3a34; /* Verde oscuro elegante */
  color: #f3f3f0;
  text-align: center;
  padding: 5rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.blackjack-content {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.blackjack-content h2 {
  font-size: 2.8rem;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.blackjack-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #dbe3de;
}

.blackjack-images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.product-card {
  position: relative;
  width: 420px;
  background-color: #25483f;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1.3rem;
  margin: 1rem 0 0.4rem;
  color: #ffffff;
}

.product-card p {
  color: #d1ded9;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.discount-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #e63946; /* Rojo para destacar descuento */
  color: #fff;
  font-weight: bold;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .blackjack-content h2 {
    font-size: 2.2rem;
  }

  .blackjack-content p {
    font-size: 1rem;
  }

  .product-card {
    width: 90%;
  }
}








.sorteo-section {
  background-color: #ffffff; /* Fondo blanco */
  color: #1e3a34; /* Verde oscuro para el texto */
  text-align: center;
  padding: 5rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.sorteo-content {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.sorteo-content h2 {
  font-size: 2.6rem;
  font-weight: 600;
  color: #1e3a34;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.sorteo-content h3 {
  font-size: 2rem;
  color: #30584f;
  margin-bottom: 0.5rem;
}

.sorteo-content .sub {
  font-size: 1.2rem;
  font-weight: 500;
  color: #52796f;
  margin-bottom: 1.5rem;
}

.sorteo-content p {
  font-size: 1rem;
  color: #4f5d5d;
  line-height: 1.7;
}

.sorteo-content strong {
  color: #1e3a34;
}

.sorteo-images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.sorteo-images img {
  width: 340px;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sorteo-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .sorteo-content h2 {
    font-size: 2.2rem;
  }

  .sorteo-content h3 {
    font-size: 1.6rem;
  }

  .sorteo-images img {
    width: 90%;
    height: auto;
  }
}




.footer {
  background-color: #1e3a34; /* Verde oscuro elegante */
  color: #f3f3f0;
  padding: 4rem 6rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer h3 {
  font-size: 1.5rem;
  color: #f8f8f6;
  margin-bottom: 0.8rem;
}

.footer h4 {
  font-size: 1.1rem;
  color: #dbe3de;
  margin-bottom: 1rem;
}

.footer p {
  color: #cdd6d1;
  line-height: 1.6;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer a {
  text-decoration: none;
  color: #cdd6d1;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #264e45;
  color: #f3f3f0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: #3a6b5d;
}

.footer-bottom {
  border-top: 1px solid #355b50;
  text-align: center;
  padding-top: 1rem;
  color: #aab7b0;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .footer {
    padding: 3rem 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  @media (max-width: 600px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .social-icons {
      justify-content: center;
    }
  }
}
