.header1 {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.espacamento-de-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    width: 150px;
    height: auto;
}

/* Menu de navegação */
.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #4e3914;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 14px;
    padding: 10px 15px;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-links li a:hover {
    background: #4eae3a;
    color: white;
    border-radius: 4.8px;
}

/* Botão de Doação */
.btn-donation {
    background-color: #28a745;
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-donation:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Menu Mobile */
.toggle-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #4e3914;
}

.nav-links.active {
    display: block;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        background-color: white;
        position: fixed;
        top: 7rem;
        left: 0;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .toggle-btn {
        display: flex;
    }

    .nav-links.active {
        display: flex;
    }

    .btn-donation {
        width: 20%;
        text-align: center;
        margin-top: 15px;
		margin-right: 10rem;
    }
	.header1 {
		background-color: #ffffff;
		padding: 15px 0;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 1000;
	}
    
}
@media (max-width: 1024px) {
	.header1{
		width: 100%;
		z-index: 1000;
		

	}
	.espacamento-de-nav {
		display: flex;
		
		align-items: center;
		padding: 0 20px;
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.header1{
		width: 100%;
	}
	.espacamento-de-nav{
		display: flex;
		
		
	}
	.espacamento-de-nav img{
		width: 100px;
		height: auto;
	}
	.btn-donation {
		width: 30%;
		background-color: #28a745;
		color: white;
		padding: 8px 24px;
		border-radius: 25px;
		font-weight: 600;
		text-decoration: none;
		transition: all 0.3s ease;
		font-size: 12px;
		margin-right: 0;
	}
	.nav-links {
        display: none;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        background-color: white;
        position: fixed;
        top: 5rem;
        left: 0;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
	
}
@media (max-width: 480px) {
	.espacamento-de-nav{
		gap: 1rem;
	}

}