@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    font-weight: normal;
    outline: none;
}
::placeholder {
    opacity: 1;
}
.centro {
    width: 100%;
    margin: 0 auto;
}
body {
    max-width: 1920px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
}
header {
    background-color: #ffffff;
    max-width: 1920px;
    width: 100%;
    position: relative;
    z-index: 9999;
    position: fixed;
}
.mask_img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.mask_img img {
    display: block;
    max-width: 100%;
    z-index: 1;
    position: relative;
    width: 100%;
    height: inherit;
    object-fit: cover;
}
header .centro {
    max-width: calc(100% - 160px);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 28px 0;
}
header .logo{
    background: url(../imagens/logo.png) center no-repeat;
    background-size: contain;
    width: 256px;
    height: 32px;
    text-indent: -9999px;
    display: inline-block;
    cursor: pointer;
}
header nav {
    display: flex;
    flex-direction: row;
    column-gap: 47px;
    margin: 0 auto;
    transform: translateX(-80px);
}
header nav a.bt_produtos{
    background: url(../imagens/seta_down_menu.png) right center no-repeat;
    background-size: auto 8px;
    padding-right: 25px;
}
header nav a.bt_produtos.aberto{
    background: url(../imagens/seta_up_menu.png) right center no-repeat;
    background-size: auto 8px;    
}
header .submenu_produtos{
    position: absolute;
    top: 90px;
    left: 80px;
    background: #fff;
    width: 100%;
    max-width: calc(100% - 160px);
    display: none;
    border-radius: 12px;
    z-index: 99999999;
}
header .submenu_produtos .fechar {
    display: none;
}
.mini_categorias,
.mini_categorias *{
    transition: all 0.09s ease-in;
}
.mini_categorias {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    list-style: none;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 16px;
}
.mini_categorias li {
    max-width: 260px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.mini_categorias li .mask_aqui{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mini_categorias li a {
    display: block;
    text-decoration: none;
}
.mini_categorias li img{
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    display: block;
    height: 100%;
}
.mini_categorias li a:hover img{
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}
.mini_categorias li a h2{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    padding-top: 10px;
}
.mini_categorias li a h3{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #666;
    margin-top: 5px;
}
header nav a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #333333;
    text-transform: uppercase;
}
header nav a span {
    background-color: #333333;
    display: none;
    width: 21px;
    height: 2px;
    margin-top: -1px;
}
header nav a.selected span {
    display: flex;
}
header .direita {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 19px;
}
header form {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 200px;
    height: 40px;
    display: none;
}
header form.selected {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding-right: 15px;
    overflow: hidden;
}
header form input[type="text"] {
    width: 200px;
    height: 40px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #333333;
    text-indent: 18px;
    display: none;
}
header form.selected input[type="text"] {
    display: unset;
}
header form input[type="submit"] {
    background: url(../imagens/lupa.png) center no-repeat;
    background-size: contain;
    width: 19px;
    height: 19px;
    cursor: pointer;
    border: none;
    margin-left: auto;
}
header .bt_menu_mobile {
    background: url(../imagens/menu_mobile.png) center no-repeat;
    display: flex;
    min-width: 21px;
    height: 14px;
    text-indent: -9999px;
    cursor: pointer;
}
#banner .centro {
    max-width: calc(100% - 160px);
    width: 100%;
    padding-top: 88px;
}
#banner .mask_img {
    width: 100%;
    height: calc(100vh - 138px);
    max-height: 837px;
}
#banner .mask_img img {
    max-height: inherit;
}
#banner .conteudo {
    max-width: 1200px;
    width: 100%;
    height: fit-content;
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#banner h3 {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    width: fit-content;
    height: 32px;
    padding: 0 23px;
    font-family: "Mulish", sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 2.8px;
    color: #d59f9f;
    text-transform: uppercase;
}
#banner h2,
#banner h2 b {
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    font-size: 90px;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    margin-top: 15px;
}
#banner h2 b {
    font-weight: 400;
}
#banner p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 40px;
    color: #333333;
    text-align: center;
    margin-top: 89px;
    margin-bottom: 129px;
}
#banner .passador{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: fit-content;
    column-gap: 10px;
    position: absolute;
    left: 50px;
    bottom: 110px;
    z-index: 4;
    width: calc(100% - 100px);
}
#banner .centro{
    position: relative;
}
#banner .passador > div {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: fit-content;
    column-gap: 10px;
}
#banner .passador button {
    background-color: #666666;
    width: 28px;
    height: 2px;
    cursor: pointer;
    border: none;
}
#banner .passador .active {
    height: 4px;
}
#imagens .centro {
    max-width: calc(100% - 160px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    padding-bottom: 153px;
}
#imagens .mask_img {
    width: 100%;
    height: 540px;
    border-radius: 17px;
}
#design {
    background-color: #faf9f7;
}
#design .centro {
    max-width: 1120px;
    display: grid;
    grid-template-columns: 447px 1fr;
    column-gap: 108px;
    padding-top: 105px;
    padding-bottom: 157px;
}
#design .mask_img {
    width: 100%;
    height: 571px;
}
#design h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    color: #333333;
    text-align: center;
    margin-top: 52px;
}
#design p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    color: #666666;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 134px;
}
.bt_padrao {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 173px;
    height: 51px;
    border: 1px solid #333333;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #333333;
}
.bt_padrao .seta,
.listagem_colecoes article .seta {
    background: url(../imagens/seta.png) center no-repeat;
    background-size: contain;
    display: flex;
    width: 11px;
    height: 11px;
    margin-left: 8px;
}
#design .bt_padrao {
    margin: 0 auto;
}
#logistas_arquitetos {
    background: url(../imagens/banner2.jpg) center no-repeat;
    background-size: cover;
}
#logistas_arquitetos .centro {
    max-width: 1300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 240px;
    padding-top: 175px;
    padding-bottom: 219px;
}
#logistas_arquitetos h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 48px;
    color: #ffffff;
    text-align: center;
}
#logistas_arquitetos p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
}
#logistas_arquitetos .botoes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 9px;
    margin-top: 27px;
}
#logistas_arquitetos .botoes .bt_padrao {
    border: 1px solid #ffffff;
    color: #ffffff;
}
#logistas_arquitetos .botoes .bt_padrao .seta {
    background: url(../imagens/seta_branca.png) center no-repeat;
    background-size: contain;
}
#colecoes .centro {
    max-width: calc(100% - 160px);
    padding-top: 178px;
}
#colecoes h2,
#designers h2,
#instagram h2,
#produtos_relacionados h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 38px;
    color: #333333;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}
#colecoes h2 span,
#designers h2 span,
#produtos_relacionados h2 span {
    background-color: #333333;
    display: flex;
    width: 63px;
    height: 3px;
    margin: 0 auto;
    margin-top: 9px;
}
.listagem_colecoes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    column-gap: 15px;
    padding-top: 108px;
}
.listagem_colecoes li a {
    background-color: #eadfdb;
    display: grid;
    grid-template-columns: 400px 1fr;
    column-gap: 34px;
    padding-top: 10px;
    padding-left: 13px;
    padding-right: 100px;
    padding-bottom: 17px;
    border-radius: 10px;
    height: 100%;
    box-sizing: border-box;
}
.listagem_colecoes .mask_img {
    width: 100%;
    /*height: 562px;*/
    height: 100%;
    border-radius: 10px;
}
.listagem_colecoes article {
    display: flex;
    flex-direction: column;
}
.listagem_colecoes h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: #333333;
    text-transform: uppercase;
    margin-top: 122px;
}
.listagem_colecoes p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    color: #333333;
    margin-top: 19px;
    margin-bottom: 10px;
}
.listagem_colecoes span {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #333333;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: auto;
    margin-bottom: 13px;
}
#colecoes .passador > div {
    position: unset;
    margin: 0 auto;
    margin-top: 118px;
    margin-bottom: 167px;
}
#imagens2 .centro {
    max-width: calc(100% - 160px);
    padding-bottom: 225px;
}
.listagem_imagens {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 540px;
    column-gap: 34px;
    row-gap: 31px;
}
.listagem_imagens li:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 3;
}
.listagem_imagens li:nth-child(4) {
    grid-column-start: 2;
    grid-column-end: 4;
}
.linha1 {
    grid-row: 1;
}
.linha2 {
    grid-row: 2;
}
.listagem_imagens .mask_img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}
#designers {
    background-color: #faf9f7;
}
#designers .centro {
    max-width: 1300px;
    padding-top: 71px;
    padding-bottom: 125px;
}
.listagem_designers {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 33px;
    margin-top: 79px;
}
.listagem_designers .mask_img {
    width: 100%;
    height: 282px;
}
.listagem_designers h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #333333;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
    margin-top: 13px;
}
.listagem_designers h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #666666;
    text-align: center;
    margin-top: 4px;
}
#designers .bt_padrao {
    margin: 0 auto;
}
#instagram .centro {
    max-width: 1170px;
    display: flex;
    flex-direction: column;
    padding-top: 122px;
    padding-bottom: 176px;
}
#instagram a {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #999999;
    text-align: center;
    margin: 0 auto;
    margin-top: 2px;
    margin-bottom: 54px;
}
.listagem_insta {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 20px;
}
.listagem_insta .mask_img {
    width: 100%;
    height: 218px;
}
footer .cinza {
    background-color: #f7f7f7;
}
footer .centro {
    max-width: calc(100% - 80px);
}
footer .top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 84px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}
footer .logo {
    background: url(../imagens/logo_footer.png) center no-repeat;
    background-size: contain;
    width: 253px;
    height: 55px;
    position: absolute;
    top: 49px;
    left: 50%;
    transform: translateX(-50%);
}
footer .sociais {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
}
footer .sociais a {
    background-size: contain !important;
    display: flex;
    width: 16px;
    height: 16px;
}
footer .sociais .facebook {
    background: url(../imagens/icon_face.png) center no-repeat;
}
footer .sociais .instagram {
    background: url(../imagens/icon_insta.png) center no-repeat;
}
footer .contatos {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 1px;
}
footer .contatos a {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #363636;
    text-align: right;
}
footer .meio {
    padding-top: 25px;
    padding-bottom: 21px;
}
footer h3,
footer h4,
footer h4 a {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.27px;
    color: #919191;
    text-align: center;
}
footer h4 a {
    text-decoration: underline;
}
footer .bottom {
    padding: 10px 0;
}
#pag_colecoes #colecoes .centro {
    padding-top: 135px;
    padding-bottom: 230px;
}
#colecao .centro {
    max-width: calc(100% - 160px);
    padding-top: 212px;
}
#colecao h3 {
    font-family: "Mulish", sans-serif;
    font-weight: 500;
    font-size: 13.36px;
    letter-spacing: 1.87px;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
}
#colecao h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    font-size: 60px;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 53px;
}
#colecao p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #666666;
    text-align: center;
    max-width: 555px;
    margin: 0 auto;
}
.listagem_produtos_colecao {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 55px;
    margin-top: 160px;
}
.listagem_produtos_colecao .mask_img {
    width: 100%;
    height: 540px;
    border-radius: 17px;
    background: #eee;
}
.listagem_produtos_colecao .mask_img img{
    mix-blend-mode: multiply;
    object-fit: contain;
}
.listagem_produtos_colecao h4,
.listagem_produtos_colecao h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
}
.listagem_produtos_colecao h4 {
    margin-top: 20px;
}
.listagem_produtos_colecao h5 {
    font-weight: 200;
}
#produto_interno .centro {
    max-width: calc(100% - 160px);
    display: grid;
    grid-template-columns: 1fr 605px;
    column-gap: 65px;
    padding-top: 148px;
}
#produto_interno .mask_img {
    width: 100%;
    height: 95vh;
    position: sticky;
    top: 148px;
}
#produto_interno .mask_img img {
    object-fit: contain;
}
#produto_interno .direita {
    padding: 88px 0;
}
#produto_interno h3 {
    font-family: "Mulish", sans-serif;
    font-weight: 500;
    font-size: 13.36px;
    letter-spacing: 1.87px;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
}
#produto_interno h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    font-size: 60px;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
    margin-top: -5px;
    margin-bottom: 41px;
}
#produto_interno p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #666666;
    text-align: center;
    max-width: 555px;
    margin: 0 auto;
}
#produto_interno .botoes {
    background-color: #faf9f7;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 9px;
    width: 100%;
    height: 166px;
    border-radius: 17px;
    margin-top: 67px;
    margin-bottom: 76px;
}
#produtos_relacionados .centro {
    max-width: calc(100% - 160px);
    padding-top: 165px;
}
#produtos_relacionados .listagem_colecoes {
    padding-top: 0;
}
#produtos_relacionados .listagem_produtos_colecao {
    margin-top: 151px;
    padding-bottom: 210px;
}
#pag_designers main{
    padding-top: 100px;
}

/*############# PAG BLOG INTERNO #################*/
main #materia_interna {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    padding-top: 187px;
}
main #materia_interna img {
    width: 100%;
    margin-top: 54px;
    margin-bottom: 50px;
}
main #materia_interna span.local {
    display: flex;
    justify-content: center;
}
main #materia_interna h2 {
    margin-top: 42px;
    margin-bottom: 3px;
}
main #materia_interna > h3 {
    text-align: center;
    font-weight: 500;
    margin-bottom: 27px;
}
main #materia_interna .coluna {
    display: flex;
    flex-direction: column;
    row-gap: 28px;
    margin-bottom: 108px;
}
main #materia_interna .hashtags {
    display: flex;
    flex-direction: row;
    column-gap: 37px;
}
main #materia_interna .hashtags h3 a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 21px;
    letter-spacing: 1.05px;
    color: #393534;
}
#pag-blog-interno main #banner-final {
    margin-top: 137px;
}
#menu_mobile {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 600px;
    z-index: 99999;
    background: #ffff;
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}
#menu_mobile.aberto {
    display: flex;
}
header #menu_mobile nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
    transform: unset;
    width: 100%;
    margin-bottom: auto;
}
header #menu_mobile .logo {
    margin-top: auto;
    margin-bottom: 42px;
}
header #menu_mobile .fechar_mobile {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../imagens/fechar_header.png) center no-repeat;
    background-size: contain;
    text-indent: -9999px;
    position: absolute;
    top: 20px;
    right: 20px;
}