* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.header {
    background-color: #000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ff6600; /* Color naranja */
    margin-right: 10px;
}

.logo-text {
    font-size: 18px;
    color: white;
}

.menu {
    display: flex;
    gap: 25px;
}

.menu-item {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.menu-item:hover {
    color: #ff6600; /* Color naranja */
}

.menu-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ff6600;
    transition: width 0.3s;
}

.menu-item:hover::after {
    width: 100%;
}

.menu-button {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
}

.hamburger-icon {
    position: relative;
    width: 100%;
    height: 100%;
}

.hamburger-icon span {
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    left: 0;
}

.hamburger-icon span:nth-child(1) {
    top: 6px;
}

.hamburger-icon span:nth-child(2) {
    top: 14px;
}

.hamburger-icon span:nth-child(3) {
    top: 22px;
}

/* Animación X */
.hamburger-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
    background-color: #ff6600;
}

.hamburger-icon.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 14px;
    background-color: #ff6600;
}

@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #000;
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        z-index: 100;
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu-button {
        display: block;
    }
}