body {
  padding-top: 30px;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-image: url("/recursos/DolceImg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  min-height: 100vh;
  text-align: center;
  color: white;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.459); 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  color: black;
}

.popup-content {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  max-width: 400px;
  width: 90%;
}

.popup-content h2 {
  margin-bottom: 10px;
}

.popup-content input,
.popup-content select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
   border: 1px solid black
}

.marca {
  text-align: center;
  margin-bottom: 1%; 
  opacity: 0.8;
}

.marca img {
  width: 250px;
  height: auto;
}

.marca p {
  margin-top: 0px;
  font-size: 13px;
  color: #000000;
}

.popup-content button {
  background-color: rgb(0, 0, 0);
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.popup-content button:hover {
  background-color: rgb(83, 25, 25);
}

.cerrar-popup {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 24px;
  color: rgb(0, 0, 0);
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.cerrar-popup:hover {
  transform: scale(1.2);
  color: rgb(83, 25, 25);
}

.nav {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
}

.nav a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.logo {
  margin: 40px 0 20px;
}
.logo img {
  opacity: 0.9; 
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-align: center;
  z-index: 999; 
 text-align: left;
}

.footer i {
  font-size: 24px;
  padding: 20px 0;
  margin: 0 12px;
  color: white;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer i:hover {
  transform: scale(1.2);
  color: rgb(83, 25, 25); 
}

 .banner {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 30px;
      background-color: rgba(121, 42, 42, 0.973);
      overflow: hidden;
      z-index: 9999;
      font-size: 14px;
      font-weight: bold;
      color: white;
      line-height: 30px;
      white-space: nowrap;
    }

    .banner-track {
      display: flex;
      width: max-content;
      animation: scrollLoop 30s linear infinite;
    }

    .banner-content {
      display: flex;
    }

    .banner-content span {
      display: inline-block;
      padding-right: 80px;
      white-space: nowrap;
    }

    @keyframes scrollLoop {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
