
.inicio {
    background: linear-gradient(to bottom, rgba(155, 28, 47, 0.8), rgba(106, 10, 29, 0.8));
    color: white;
    padding: 10px 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar-brand img {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

.navbar {
    display: flex;
    justify-content: flex-end;
}

.navbar-nav {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navbar-nav .nav-item {
    margin-left: 25px;
}

.navbar-nav .nav-link {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 18px;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: #9b1c2f;
    color: white;
    transform: translateY(-3px);
}

.navbar-nav .nav-link.active {
    border-bottom: 3px solid #9b1c2f;
}

.navbar-toggler {
    border: none;
    background-color: transparent;
    padding: 5px 10px;
}

.navbar-toggler-icon {
    background-color: white;
}

@media (max-width: 768px) {
    .navbar-brand img {
        width: 100px;
        margin-bottom: 10px;
    }

    .navbar-collapse {
        background-color: rgba(155, 28, 47, 0.95);
        padding: 10px;
        border-radius: 5px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .navbar-nav .nav-link {
        padding: 15px 20px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .navbar-nav .nav-link {
        padding: 8px 12px;
        font-size: 16px;
    }
}