* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  }

header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  border-bottom: 2px solid #ccc;
}

.logo {
  display: flex;
  align-items: center;  
  gap: 10px;            
}

.logo-text {
  font-size: 22px;
  font-weight: bold;
  color: #1e2b18;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  margin-right: 30px;
}

nav a:hover {
  color: #4e6b3f;
}

nav a.active {
  border-bottom: 3px solid #4e6b3f;
  padding-bottom: 3px;              
  color: #4e6b3f;                   
}

main {
  display: flex;
  justify-content: space-between;
  padding: 30px 60px;
  background: #88a466;
  flex: 1;
}
.quienes-somos {
  width: 65%;
}

.divider {
  width: 2px; 
  background-color: #4e6b3f; 
  height: auto; 
  margin: 0 30px; 
}

h2, h3 {
  text-align: center;
}

p {
  line-height: 1.5;
  
  margin-bottom: 10px;
}

.viajeros{
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.viajeros img {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
}

aside {
  width: 30%;
  background: #c3d1a7;
  padding: 15px;
  border-radius: 8px;
}

.sucursal {
  margin-bottom: 25px;
  justify-content: center;
  text-align: center;
}

.sucursal iframe {
  width: 100%;
  border: 0;
  border-radius: 6px;
}

footer {
  background: #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}

footer p {
  font-size: 14px;
  color: #333;
}

footer .redes {
  display: flex;
  gap: 25px;
  margin-left: 200px;
}

footer i {
  font-size: 1.5rem;
}

footer i:hover {
  color: #4e6b3f;
}
  

