.background-color {
    background-color: #22252A;
}

.container1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #22252A;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.cetracy-logo {
    height: 60px;
}




.container2 {
    display: flex;
    justify-content: center;
    background-color: #22252A;
}

.container-port {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-right: 2.5%;
    margin-top: 5%;

}

.container-motion {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 5%;
}

.container-port video {
    margin-top: 5%;
}


.container-landing {
    display: flex;
    justify-content: center;
    margin-top: 3%;
}

.container-landing img {
    display: flex;
    justify-content: center;
    height: 150px;
    margin-top: 5%;
    transition: all 0.3s ease-in-out;
}

.container-landing img:hover {
    transform: scale(1.1);

}

.container-port img {
    height: 150px;
    margin-bottom: 30%;
    transition: all 0.3s ease-in-out;

}

.container-port img:hover {

    transform: scale(1.1);
}

.container-orcamento {
    display: flex;
    justify-content: space-around;
}

button {
    cursor: pointer;
}

.button1 {
    font-weight: 600;
    font-size: 0.8rem;
    color: #6EFADC;
    background-color: #22252A;
    border-color: #6EFADC;
    border-radius: 30px;
    margin: 15px;
    padding: 7px;
    transition: all 0.3s ease-in-out;
}

.button1 font {}

.button1:hover {
    color: #6EFADC;
    background-color: #181a1d;

    padding-left: 7rem;
    padding-right: 7rem;

}

.card-title {
    display: flex;
    justify-content: center;
    color: #6EFADC;
    margin-top: 10px;
}

a {
    text-decoration: none;
}

p {
    color: #6EFADC;
}


#click-here {
    color: #5d6470;
    display: flex;
    justify-content: center;
}


#bebas-neue {
    font-family: 'Bebas Neue', sans-serif;
    display: flex;
}


.separator {
    width: 90%;
    height: 1px;
    background-color: white;
    border: none;
    margin: 10px 0;
    margin-top: 0%;
    margin-left: 5%;

}

.card-group {
    margin-top: 10px;

    margin-left: 4%;
    margin-right: 4%;


}

.card {

    background-color: #181a1d;
    margin: 20px;
    margin-top: 2%;
    transition: all 0.3s ease-in-out;

}

@media only screen and (min-width: 768px) {
    .card:hover {
        transform: scale(1.1);
    }
}

.back {
    display: flex;
    justify-content: flex-start;
    height: 3rem;
    margin: 5%;
    margin-bottom: 3%;
    cursor: pointer;
}

.back img:hover {}

footer {

    margin-top: 8%;


}

.separator2 {
    width: 90%;
    height: 1px;
    background-color: white;
    border: none;
    margin: 10px 0;
    margin-top: 0%;
    margin-left: 5%;
    display: flex;
    align-items: flex-end;
}

.icon {
    height: 30px;
    opacity: 20%;
    margin: 10px;
}

.whats {
    height: 42px;
    opacity: 20%;

}


    .container-icons {
      position: relative;
      bottom: 0;
      left: 0;
      width: 100%;
      text-align: center;
      margin-top: 50px;

    }


@media (max-width: 720px) {
    .container-port {
        flex-direction: column;
        height: 100%;
        margin-left: 3%;
    }

    .container-motion {
        flex-direction: column;
        height: 100%;
        margin-top: 0%;
    }

    .container-motion video {
        margin-top: 5%;

    }

    .back {
        display: flex;
        justify-content: flex-start;

    }
}



/*----------GALERIA-------------*/

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-left: 5%;
    margin-right: 5%;
}

.image {
    margin: 5px;
    cursor: pointer;
    flex: 0 1 calc(33.333% - 10px);
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.image:hover {
    transform: scale(1.1);
}

.image img {
    width: 100%;
    height: auto;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 10%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #22252A;
}

.modal-content {
    margin: auto;
    display: block;

    margin-bottom: 10%;
    max-width: 80%;
    max-height: 80%;
}

@media (max-width: 720px) {


    .modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        display: block;
        max-width: 80%;
        max-height: 80%;
        margin: auto;
    }

}

@media (min-width: 721px) {
    .modal-content {
        max-width: 60%;
        /* ou ajuste conforme necessário */
        max-height: 60%;
        /* ou ajuste conforme necessário */
    }
}

@media (min-width: 2000px) {
    .gallery {

        margin-left: 20%;
        margin-right: 20%;
    }

}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}