html, body {
    height: 100%;
    margin: 0px;
    padding: 0px;
}

.wrapper {
    background-image: linear-gradient(to top, #d5d4d0 0%, #d5d4d0 1%, #eeeeec 31%, #efeeec 75%, #e9e9e7 100%);
}

@media (max-width: 480px) {
    .wrapper {
    height: 100%;
    }
}

body {
    display: flex;
    flex-direction: column;
}

.cabecalho {
    margin-top: 15px;
    margin-bottom: 30px;
    text-align: center;
}

@media (max-width: 480px) {
    .cabecalho img {
        max-width: 55%;
        height: auto;
        margin: auto;
        display: flex;
    }
}

.cabecalho img:hover {
    opacity: 0.9;
}

.cabecalho .img-wrapper img:active {
    transform: scale(0.95);
}

.conteudo {
    flex: 1 0 auto;
}

.img-construcao {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 30px;
}

@media (max-width: 480px) {
    .img-construcao img {
        max-width: 75%;
        height: auto;
        margin: auto;
        display: flex;
    }
}

.img-construcao img:hover {
    opacity: 0.8;
}

@media (max-width: 767px) {
    .whatsapp img {
        display: none;
    }
    .small-whatsapp img {
        height: auto;
        position: fixed;
        bottom: 40px;
        right: 20px;
        z-index: 9998;
        display: block;
    }
}

@media (min-width: 768px) {
    .small-whatsapp img {
        display: none;
    }
    .whatsapp img {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9998;
    }
}

.whatsapp:hover {
    opacity: 0.9;
}

.whatsapp img:active {
    transform: scale(0.95);
}

.small-whatsapp img:hover {
    opacity: 0.9;
}

.small-whatsapp img:active {
    transform: scale(0.95);
}

.rodape, h1 {
    flex-shrink: 0;
    background-color: #404b5f;
    padding: 5px;
    color: mintcream;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

.btn-web {
    background: none;
    border: none;
    padding: 10px 10px;
    border-radius: 10px;
}
  
.btn-web:hover {
    background: rgba(170, 170, 170, 1);
    transition: 0.5s;
}

.btn-insta {
    background: none;
    border: none;
    padding: 10px 10px;
    border-radius: 10px;
}
  
.btn-insta:hover {
    background: rgba(170, 170, 170, 1);
    transition: 0.5s;
}

.btn-wpp {
    background: none;
    border: none;
    padding: 10px 10px;
    border-radius: 10px;
}
  
.btn-wpp:hover {
    background: rgba(170, 170, 170, 1);
    transition: 0.5s;
}

#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background-color: lightgray;
    text-align: center;
    z-index: 9999;
}

#accept-btn {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}
  
#accept-btn:hover {
    background-color: #45a049;
}
  
#close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    font-size: 14px;
    font-weight: bold;
    background-color: red;
    border: none;
    cursor: pointer;
}

#close-btn:hover {
    background-color: darkred;
}