/*Recomendaciones pagina de inico*/
.personalized-recommendations-full {
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 40px 0;
}

.personalized-recommendations {
  max-width: 1800px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #dcdcdc; /* Línea gris claro alrededor del contenido */
  border-radius: 8px; /* Bordes redondeados */
}

.personalized-recommendations h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.yellow-button {
  background-color: #ffd814;
  border: 1px solid #fcd200;
  padding: 10px 90px;
  font-weight: bold;
  color: #111;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background 0.3s ease;
}

.yellow-button a {
  color: black;
  text-decoration: none;
}

.yellow-button:hover {
  background-color: #f7ca00;
}

.new-customer {
  font-size: 0.9rem;
}

.new-customer a {
  color: #007185;
  text-decoration: none;
}

.new-customer a:hover {
  text-decoration: underline;
}

/*Boton para regresar arriba*/
.scroll-top-section {
  width: 100%;
  background-color: #273342; /* Gris más claro que el footer */
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #ddd;
}

.scroll-top-section span {
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.8rem;
}

.scroll-top-section span:hover {
  text-decoration: underline;
}



/*Footer*/
.footer {
  background-color: #19212c;
  color: #fff;
  font-size: 0.9rem;
  padding: 30px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  color: #bdbdbd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #ffd814;
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid #444;
}

.footer-small {
  font-size: 0.8rem;
  color: #ddd;
  margin-top: 5px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #ddd;
  margin: 5px 0;
}

/*Media Queries*/
@media (max-width: 768px) {
  .personalized-recommendations {
    padding: 20px 10px;
  }

  .yellow-button {
    padding: 10px 30px;
    font-size: 14px;
  }

  .new-customer {
    font-size: 0.85rem;
  }

  .scroll-top-section span {
    font-size: 0.75rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    text-align: center;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .footer-section ul li a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding: 15px 10px;
  }

  .footer-small {
    font-size: 0.75rem;
  }
}
