.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 77, 109, 0.9));
    backdrop-filter: blur(6px);




}

.hamburguer{
    font-size: 30px;
    cursor: pointer;
    display:none;
    background:none;
    border: none;
  
}


/*MOBILE*/

@media (max-width: 768px){
    .hamburguer{
        display:block;
    }
    .menu{
        display: none;
        position:absolute;
        top: 70px;
        right: 10px;
        background: #f8b6c1;
        padding: 15px;
        border-radius: 10px;
    }

    .menu.active{
        display: block;
    }

}





.menu a {
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: 0.3s;
    font-size: 18px;
}

.menu a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: white;
    transition: 0.3a;
}

.menu a:hover::after {
    width: 100%;
}



.menu a:hover {
    color: #ffe0e9;
}
.logo span{
    color:#ffe0e9;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    animation: brilho 2s infinite alternate;
}

@keyframes brilho {
    from {
        text-shadow:
            0 0 5px rgba(255, 255, 255, 0.4),
            0 0 10px rgba(255, 255, 255, 0.2);
    }

    to {
        text-shadow:
            0 0 10px #ff85a2,
            0 0 20px #ff4d6d;
    }
}


.nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 10px;
    margin-left: auto;
    margin-right: 20px;
    font-size: 26px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #5a2d2d;
    font-weight: bold;
}

nav a:hover {
    color: #c97c7c;
}

a.btn {
    background: var(--rosa-principal);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);


}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: #e6395c;

}

@media(max-width: 768px) {
    .home h2 {
        font-size: 28px;
    }

    .home p {
        font-size: 16px;
    }

}


@media (max-width:768px) {
    .header {
        flex-direction: row;
        gap: 5px;
        padding: 10px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}