main,
#pensando,
#seguranca-conforto {
    padding: 60px 0;
}

@media (max-width: 768px) {

    main,
    #pensando,
    #seguranca-conforto {
        padding: 20px 0;
    }
}

/* AREA TOPO */
#area-topo {
    padding: 20px 10px;
}

#area-topo .col-12 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#area-topo h1 {
    font-size: 1.5rem;
    margin-left: 20px;
    font-weight: bold;
}

#area-topo img {
    width: 150px;
}

/* HEADER */

header {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(/assets/images/banner/1.jpg);
    background-position: center;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 40px;
    color: #fff;
}

header img {
    width: 200px;
}

header h3 {
    text-transform: uppercase;
}

header h2 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2rem;
}

header button {
    background-color: var(--vermelho);
    font-weight: bold;
    text-align: center;
    font-size: 1.3rem;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 10px 20px;
    border: none;
    color: #fff;
    display: inline-block;
}

#modalContato form {
    border-radius: 5px;
    min-width: 400px;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    margin-left: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

#modalContato form h2 {
    font-size: 1rem;
    padding: 0;
    padding-top: 10px;
}

#modalContato form button {
    background-color: var(--vermelho);
    font-weight: bold;
    text-align: center;
    font-size: 1rem;
    padding: 10px;
    border: none;
    color: #fff;
    display: inline-block;
    width: 100%;
}



@media (max-width: 992px) {
    header .area-form {
        position: inherit;
        padding: 0;
    }

    #modalContato form {
        width: 100%;
        margin-top: 0;
    }
}

@media (max-width: 992px) {
    #modalContato form {
        min-width: unset;
    }
}



/* INFORMAÇÔES DO IMÓVEL*/


main img {
    width: 48%;
    display: inline-block;
    border-radius: 15px;
}

main ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
}

main ul li {
    margin: 5px;
    text-transform: lowercase;
    border: 2px solid var(--azul);
    color: var(--azul);
    font-weight: bold;
    padding: 5px;
    border-radius: 5px;
    text-transform: uppercase;
    padding: 20px;
    cursor: default;
    transition: all .3s;
}

main ul li:hover {
    background-color: var(--azul);
    color: #fff;
}

@media (max-width: 768px) {
    main img {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* SEGURANCA CONFORTO */
#seguranca-conforto img {
    width: 45%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 15px;
    display: inline-block;
    margin: 10px;
}

@media (max-width: 768px) {
    #seguranca-conforto img {
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }
}


/* PENSANDO */
#pensando img {
    border-radius: 15px;
}

@media (max-width: 768px) {

    #seguranca-conforto .row,
    #pensando .row {
        flex-wrap: wrap-reverse;
    }
}

/* DESCUBRA */
#descubra {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(/assets/images/banner/2.jpg);
    background-position: center;
    color: #fff;
    background-size: cover;
    background-attachment: fixed;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta a {
    background-color: #25d366;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    border: 3px solid #fff;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
}

/* CHAMADA */
#chamada {
    padding: 100px 0;
    background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(/assets/images/1.jpg);
    background-position: center;
    color: #fff;
    background-size: cover;
    background-attachment: fixed;
}


/* SOBRE */
#sobre {
    padding: 40px 0;
    background-color: #f7f7f7;
}

/* AMAZONAS */
#amazonas {
    padding: 100px 0;
    background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(/assets/images/amazonas.jpg);
    background-position: center;
    color: #fff;
    background-size: cover;
    background-attachment: fixed;
}

#amazonas h2 {
    font-weight: bold;
    text-transform: uppercase;
}

#amazonas h3 {
    font-size: 1.3rem;
    background-color: var(--azul);
    padding: 10px;
    animation-name: pulse-blue;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    color: #fff;
    display: inline-block;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 54, 104, .8);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

#amazonas img {
    width: 75% !important;
    margin: 0 auto;
}

@media (max-width: 992px) {
    #amazonas {
        text-align: center;
    }

    #amazonas img {
        width: 100% !important;
        margin: 0 auto;
    }
}