* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.header-nav {
  position: relative;
  background: url("./img/taxis.webp") center center no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  color: #fff;
  /* filter: brightness(60%); */
}

.header-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Ajusta la opacidad según lo necesites */
}

.capa {
  position: relative;
  z-index: 1;
}

.items-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  /* background: rgba(0, 0, 0, 0.6);  Fondo oscuro con opacidad
  /* padding: 10px; */
  /* border-radius: 5px; */
}

.items-nav > ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.items-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

.items-nav a:hover {
  color: #b1a9a9;
}

.presentacion {
  /* Ocupar el espacio que quede bajo la barra de navegación */
  flex: 1;
  /* Centrar contenido en ambos ejes */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; /* Centra el texto */
}

.presentacion h1 {
  font-size: 3.2rem;
  margin: 0.5rem 0;
  color: #fff;
}

.presentacion h3 {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  font-weight: normal;
}

.footer-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
  padding: 1rem;
  background-color: #333;
  color: #fff;
}

.footer-main a {
  text-decoration: none;
  color: #fff;
}

.main-politicas {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  line-height: 1.6;
  font-size: 1rem;
}

.main-politicas h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.main-politicas h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 20px;
}

.main-politicas p {
  margin-bottom: 10px;
    color: #333;
}
