.bg-primary {
    background-color: #f17140 !important;
}

.btn-primary {
    background-color: #f17140;
    border-color: #f17140;
}

.btn-primary:hover {
    background-color: #e05a2b;
    border-color: #e05a2b;
}

.text-primary {
    color: #f17140 !important;
}

/* Estilos do Logo */
.logo-header {
    max-height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-header:hover {
    opacity: 0.8;
}

/* Logo maior no mobile */
@media (min-width: 577px) {
    .logo-header {
        max-height: 50px;
    }
}

@media (min-width: 992px) {
    .logo-header {
        max-height: 50px;
    }
}

/* Estilos do Header Responsivo */
.navbar-brand {
    padding: 0;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-item {
    margin: 0 .5rem;
}

.navbar-nav .nav-link {
    font-size: 1.125rem;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-nav .nav-link.active {
    color: #fff !important;
    font-weight: 800;
}

/* Menu mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(241, 113, 64, 0.95);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 0.5rem;
        backdrop-filter: blur(10px);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 0.25rem;
        transition: background-color 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

.headroom {
    will-change: transform;
    transition: transform 0.3s ease-in-out;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Garante que o header fique acima de outros elementos */
}
.headroom--pinned {
    transform: translateY(0%);
}
.headroom--unpinned {
    transform: translateY(-100%);
}