* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

h2 {
    color: #262626;
    font-size: 25px;
    font-family: Bungee;
}

p {
    color: #262626;
    font-size: 18px;
}

.cabecalho {
    background: rgb(0, 21, 126);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    animation: deslizarHeader 1s ease;

}

.menu {
    display: flex;
    justify-content: center;
    padding: 10px;
    gap: 20px;


}

.menu a {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    font-size: 15px;
}

.menu a:hover {
    color: #5db9ff;
}

.logo img {
    height: 80px;
    margin-left: 0px;
    gap: 15px;
     filter: drop-shadow(8px 8px 16px rgba(0,0,0,0.5));
}

.cabecalho h1 {
    font-family: Bungee;
    font-size: 27px;

}

.main {
    margin: 20px;
    flex: 1;
}

body {
    background-color: #fdfdfd;
    font-family: Nunito;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    

}

.container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 20px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    cursor: pointer;
}

@keyframes aumentar {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }

}

@keyframes deslizarHeader {
    from { transform: translateY(-100px);}
    to {transform: translateY(0); }
}

.box {
    background-color: #f3f3f3;
    width: 300px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 1s;
}

.box img {
    width: 100%;
    box-shadow: 0 0 10px black;
}

.box p {
    font-size: 18px;
    text-align: center;

}

.box:hover {
    background: rgb(193, 193, 193);
    color: #2f3542;
    animation: aumentar 0.3s linear forwards;

}

.footer {
    background: rgb(0, 21, 126);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}
.caixa {
    position: fixed;  
    left: 20px;       
    bottom: 50px;    
    
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2); 
    border: 2px solid rgb(193, 193, 193);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 999;     
    max-width: 200px; 
}

.caixa p {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.caixa img{
    width: 40px;
}

.botao {
    background:  rgb(193, 193, 193);
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-family: 'Bungee';
    transition: 0.3s;
}

.botao:hover {
    transform: scale(1.05);
}