*::-webkit-scrollbar-thumb {
  background-color: #fcbc24 !important;
}

.politicas {
  padding: 0px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f4f4f4;
}

.politicas .logo {
  height: 160px;
}

.politicas .contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.politicas header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: transparent;
  width: 100%;
  margin-bottom: 20px;
}

.politicas header a {
  display: inline-block;
  text-decoration: none;
}

.politicas header a img {
  display: block;
}

.politicas header nav ul {
  list-style: none;
  display: flex;
  gap: 70px;
}

.politicas header nav ul li a {
  text-decoration: none;
  color: #1f1f1f;
  font-weight: normal;
  font-size: 1.3em;
  position: relative;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.politicas header nav ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #fcbc24;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.politicas header nav ul li a:hover::after,
.politicas header nav ul li a.active::after {
  width: 100%;
}

.politicas header nav ul li a.active {
  color: #fcbc24;
}

.politicas .texto {
  width: 100%;
  max-width: 1000px;
  color: #333;
  font-size: 1.1em;
  line-height: 1.8em;
  padding: 20px;
}

.politicas .texto h1 {
  font-size: 2.2em;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 20px;
  text-align: center;
}

.politicas .texto h2 {
  font-size: 1.4em;
  font-weight: 600;
  margin: 20px 0;
  color: #333;
}

.politicas .texto h3 {
  font-size: 1.4em;
  font-weight: 500;
  margin: 15px 0;
  color: #555;
}

.politicas .texto p {
  text-align: justify;
  margin-bottom: 15px;
}

.politicas .texto ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.politicas .texto a {
  color: #1f1f1f;
  text-decoration: underline;
  transition: color 0.3s;
}

.politicas .texto a:hover {
  color: #fcbc24;
}
