/* navegação */
header {
    background-color: #1a1321;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav .mobile-menu-icon {
    display: none;
}

.mobile-menu-icon button {
    border: none;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

.mobile-menu-icon .icon {
    max-width: 40px;
}

.mobile-menu {
    display: none;
}
.mobile-menu.open {
    display: block;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 70px;
}

.nav .titulo {
    display: flex;
    align-items: center;
}

.nav .titulo .logo {
    max-width: 60px;
}

.nav .nav-links {
    display: flex;
    gap: 40px;
}

.nav a {
    color: #fff;
}

/* home */
main {
    background-color: #f65d00;
    display: flex;
    align-items: center;
    padding: 20px 40px;
    justify-content: space-around;
    color: #fff;
    min-height: 80vh;
}

.imagem-anuncio {
    /* max-width: 500px; */
    max-width: 50%;
}

main .textos {
    line-height: 2;
    font-family: 'Roboto';
}

main .textos h1 {
    color: #ffcc00;
    font-weight: 800;
}

main .textos p {
    max-width: 350px;
    color: #ffcc00;
}

main .textos p strong {
    color: #fff;
}

.contactar {
    width: 230px;
    margin: auto;
}

.contactar .btn-links {
    display: flex;
    padding: 5px 10px;
    /* width: 230px; */
    gap: 10px;
    align-items: center;
    justify-content: center;
    background-color: #ffcc00;
    border-radius: 20px;
    border: 2px solid #782f01;
    color: #782f01;
    cursor: pointer !important;
}

.contactar .btn-links .seta {
    font-size: 30px;
    transition: .4s;
}

.seta.cima {
    transform: rotate(180deg);
}

.contactar .links {
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    align-items: center;
    gap: 15px;
    padding: 35px 5px 15px 5px;
    border-bottom: 2px solid #782f01;
    border-left: 2px solid #782f01;
    border-right: 2px solid #782f01;
    border-radius: 0 0 5px 5px;
    margin-top: -16px;
    background-color: #ffcc0097;
    transition: 0.3s;
}

.contactar .links.ativo {
    opacity: 1;
    visibility: visible;
    /* transition: .2s; */
}

.contactar .links a {
    width: 80%;
}

.contactar .links div {
    /* width: 80%; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid #782f01;
    color: #fff;
}

.contactar .links .btn {
    color: #fff;
}

.contactar .links .btn-whats {
    background-color: rgb(12, 198, 12);
}

.contactar .links .btn-tell {
    background-color: rgb(31, 31, 243);
}

.contactar .links .btn-insta {
    background: rgb(131, 58, 180);
    background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
}

/* rodape */
footer {
    max-width: 100vw;
    background-color: #1a1321;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    margin-bottom: 0;
}

.rodape {
    display: flex;
    justify-content: space-around;
}

.rodape .logo-rodape {
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rodape .logo-rodape img {
    max-width: 100px;
}

.rodape .links-rodape {
    display: flex;
    flex-direction: column;
    line-height: 2;
}

.rodape .links-rodape a {
    color: #fff;
}

.copyright {
    margin: auto;
}