body {
margin: 0;
font-family: sans-serif;
}
.header {
position: sticky;
top: 0;
display: flex;
justify-content: space-between;
align-items: center;
background-color: white;
padding: 10px 20px;
z-index: 1000;
}
.header-logo img {
max-height: 60px;
}
.header-nav ul {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
.header-nav ul li {
margin: 0 15px;
}
.header-nav ul li a {
text-decoration: none;
color: #238d7a;
font-weight: bold;
transition: color 0.3s;
}
.header-nav ul li a:hover {
color: #a5a04e;
}
.header-nav ul li a.active,
.header-nav ul li a:focus {
border-bottom: 2px solid #a5a04e;
}
.header-social a img {
width: 24px;
height: 24px;
margin-left: 10px;
}
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
}
.hamburger span {
width: 25px;
height: 3px;
background: #238d7a;
margin: 4px 0;
transition: 0.4s;
}
/* Responsive */
@media (max-width: 768px) {
.header-nav {
display: none;
flex-direction: column;
position: absolute;
top: 70px;
left: 0;
width: 100%;
background-color: white;
padding: 20px 0;
align-items: center; /* <<<<< añadido para centrar */
}
.header-nav.active {
display: flex;
}
.header-nav ul {
flex-direction: column;
align-items: center; /* <<<<< añadido para centrar */
}
.header-nav ul li {
margin-bottom: 10px;
}
.header-social {
display: none;
}
.hamburger {
display: flex;
}
}