* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    background-color: #efefef;
    font-size: 2.0rem;
}

.montserrat-alternates {
    font-family: "Montserrat Alternates", sans-serif;
    font-style: normal;
}

/* banner */
#banner {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background-image: url('../images/banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#banner .d-lfex {
    display: flex;
    flex-wrap: wrap;    
    gap: 20px;
}

#banner a {
    background-color: #fddb85;
    color: #FFF;
    font-size: clamp(1.4rem, 4vw, 2.0rem);
    text-decoration: none;
    display: inline-block;
    padding: 5px 10px;
    font-weight: 500;
    margin-top: 5%;
}
#banner a.calendario{
    background: #0b3645;

}

#banner .novidade {    
    padding: 5% 0 0 0;
    display: flex;
    justify-content: end;
}
#banner .novidades {
    background-color: #efb1d1;
    color: #fff;
    font-size: clamp(3rem, 4vw, 4.6rem);
    font-weight: 500;    
    display: block;
    text-align: center;
}

#banner .aguarde {
    font-size: clamp(4rem, 4vw, 12rem);
    color: #eb7568;
    font-weight: 700;
    display: block;
    text-align: center;
}

#banner .polvo-container {
    position: absolute;
    overflow: hidden;
    bottom: 0;
    left: 5%;
    z-index: 1;
    animation: animation 5s linear infinite;
}

#banner .wave-container {
    position: absolute;
    width: 100%;
    height: 300px;
    overflow: hidden;
    bottom: 0;
    left: 0;
}

/* form */
#form {
    padding: 100px 0;
    max-width: 1000px;
    margin: 0 auto;
}

#form .quer-falar {
    color: #40bce7;
    font-size: clamp(2.8rem, 4vw, 5rem);
    display: block;
    margin-bottom: 20px;
    max-width: 450px;
}

#form .estamos {
    font-size: clamp(2.0rem, 4vw, 3rem);
    display: block;
    margin-bottom: 20px;
}

#form button {
    background-color: #efb1d1;
    color: #FFF;
    font-size: clamp(2.0rem, 4vw, 3rem);
    font-weight: 400;
    padding: 10px 20px;
    border: 0;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    display: block;
}

input,
textarea {
    background-color: #f4e8ca;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    padding: 10px;
    border: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    font-size: clamp(2.0rem, 1.5vw, 1.8rem);
}

/* footter */
#footer {
    position: relative;
    background-color: #40bce7;
    padding: 0 0 50px 0;
    color: #fff;
}

#footer a {
    color: #FFF;
    text-decoration: none;
}
#footer a:hover {
    color: #0b3645;
}

#footer .d-lfex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.mb-4{
        margin-bottom: 15px;
}

.footer-elements {
    position: relative;
    z-index: 10;
    width: 100%;
}

.footer-elements .arraia {
    position: absolute;
    bottom: 0;
    left: 5%;
    z-index: 11;
    animation: animation 5s linear infinite;
}

.footer-elements .tubarao {
    position: absolute;
    right: 5%;
    bottom: 0;
    z-index: 9;
    animation: animation 5s linear infinite;
}

.footer-elements .wave-container {
    position: relative;
    z-index: 10;
}

/* bootstrap */
.flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-uppercase {
    text-transform: uppercase;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

/* tablet */
@media (max-width: 1024px) {
    #footer .container{
        max-width: 300px;
    }
    #footer .flex img{
        max-width: 80px;
    }
    #footer .d-lfex {
        flex-direction: column;
        gap: 60px;
    }
}

/* mobile */

@media (max-width: 768px) {
    #banner .wave-container {
        height: 100px;
    }

    #banner .novidades {}

    .element {
        max-width: 20%;
    }

    #form {
        padding: 40px 0 60px;
    }
}

/* animação do polvo para cima e para baixo suave */

@keyframes animation {
    0% {
        bottom: 0;
    }

    50% {
        bottom: 5%;
    }

    100% {
        bottom: 0;
    }
}