@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: poppins;
}

.container {
    width: 85%;
    margin: 0 auto;
}

.marrom {
    color: #b58d63;
}

.bold {
    font-weight: bold;
}

header {
    background-image: url(img/capapc.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    height: 600px;
}

h1 {
    padding-top: 450px;
    font-weight: 400;
}

#p1 {
    margin-top: 20px;
}

#p2 {
    padding-bottom: 30px;
}

.faixa {
    text-align: center;
    background-color: #b58d63;
    color: white;
    font-weight: bold;
    padding: 5px 0;
}

header a img {
    width: 200px;
    margin-top: 20px;
}



/* Defina o estilo básico do botão */
.floating-button {
    display: inline-block;
    font-size: 16px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Adicione a animação de flutuação */
.floating-button:hover {
    background-color: #0056b3;
}

.floating-button {
    animation: float 3s ease-in-out infinite;
}

/* Defina os passos da animação */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


@media only screen and (min-width: 360px) and (max-width: 800px) {
    header {
        background-image: url(img/capamb.png);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: top;
        height: 500px;
    }

    h1 {
        padding-top: 300px;
        font-size: 20px;
        font-weight: 400;
    }

    p {
        font-size: 13px;
    }
}