* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Para incluir padding y border en el tamaño de los elementos */
}

body {
    background-color: #ECE4DA;
    overflow-x: hidden;
}

.custom-navbar {
    padding: 30px 3% 30px 5%;
    margin-bottom: 30px;
}

.custom-navbar-items {
    justify-content: flex-end;
}

.nav-brand-custom,
.nav-link-custom {
    font-family: 'Space Grotesk', sans-serif;
    color: #574C3F;
    transition: color 0.3s ease; /* Transición suave al cambiar de color */
}

.nav-brand-custom {
    font-weight: 700;
    font-size: 2.2rem;
}

.nav-brand-custom:hover {
    color: #36302A;
}

.nav-link-custom {
    font-weight: 500;
    font-size: 1.2rem;
}

.nav-link-custom:hover {
    color: #36302A;
}

.nav-item-custom {
    border-bottom: solid 1px #36302A;
    margin: 0 5px;
}

@media (max-width: 991px) {
    .nav-brand-custom {
        font-size: 1.7rem;
    }

    .nav-link-custom {
        font-size: 0.9rem;
    }
}
