body{
  font-family: "Tenor Sans", serif;
  font-weight: 400;
  font-style: normal;
}
.item-container {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}


  /*======================
	ANIMATION SVG SECTION
========================*/

svg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: block;
  background-color: #030303;
  background-image: linear-gradient(to bottom, rgba(16, 17, 19, 0.86), #0d0d0e);
  z-index: -9;
}

/*==================
	END ANIMATION SVG SECTION
====================*/

/*==================
	PAGINATION SECTION
====================*/


.pagination{
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
}

.page-btn{
  background-color: #fff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.page-btn:disabled {
  background-color: #ddd;
  cursor: not-allowed;
}

#page-info {
  font-size: 16px;
  color: #fff;
}
/* Footer General */
.footer-container {
  background-color: #1616169d;
  color: #fff;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

/* Footer Columnas */
.footer-col {
  flex: 1;
  min-width: 250px;
  
 
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
}

.footer-logo {
  max-width: 100%;
  height: 200px;
  margin-bottom: 1rem;
  justify-content: center;
  align-items: center;
  padding: 0px 50px;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-description {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #bbb;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
  color: #fff;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 1rem;
  color: #aaa;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  justify-content: center;
  align-items: center;
  padding: 1px 23px;
}

.social-icons a:hover {
  color: #fff;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  padding: 0.5rem;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #1c1c1c;
  color: #fff;
  outline: none;
  font-size: 0.9rem;
}

.newsletter-button {
  padding: 0.5rem 1rem;
  border: none;
  background-color: #cead8c;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.newsletter-button:hover {
  background-color:#cead8c;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #aaa;
}

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

.footer-bottom a:hover {
  color: #005bb5;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #cead8c;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.back-to-top:hover {
  background-color: #005bb5;
}

