/*
Folha de estilo do site thecloset50.com
@author Gustavo Vieira de Souto
*/

/* Layout ***************************/

/* Variáveis */

:root {
    --cinzaEscuro: #4f4f4f;
    --dourado: #DAA520;
    --preto: #000000;
    --branco: #FFFFFF;
    --cinzaClaro: #DCDCDC;
}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
}

.container {
    display: flex;
    margin: 0 auto;
}

/* botão estilizado */
.banner-btn {
    display: inline-block;
    background-color: var(--dourado);
    color: var(--preto);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.banner-btn:hover {
    background-color: var(--cinzaEscuro);
    color: var(--branco);
    transform: scale(1.05);
}

.card {
    width: 340px;
    height: 520px;
    background-color: var(--cinzaClaro);
    margin-top: 25px;
    border: 2px solid var(--cinzaEscuro);
    border-radius: 25px;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 25px;

}

.card img {
    border-radius: 25px 25px 0px 0px;

}

.card h2 {
    font-size: 1.3rem;
    margin: 15px 0px;
}

.card p {
    color: var(--cinzaEscuro);
    text-align: left;
    padding: 0px 10px 25px 10px;
}

#closet .btn {
    display: inline-block;
    background-color: var(--dourado);
    color: var(--preto);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Parte do PDF */

#wireframe .Botao {
    display: inline-block;
    background-color: var(--dourado);
    color: var(--preto);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
    margin: 15px 0px;

}

#wireframe h2 {
    margin: 15px 0px;
    font-size: 1.3rem;
}

/* Fim - Layout <<<<<<<<<<<<<<<<<<<<<<<<< */


/* Smartphone portrait >>>>>>>>>>>>>>>>>> */

/* Cabeçalho */
header {
    height: 55px;
    background-color: var(--cinzaEscuro);
}

.logo img {
    width: 100px;
    height: 100px;
}

#check {
    display: none;
}

label {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.75);
    position: fixed;
    top: 0px;
    right: 15px;
}

nav ul {
    list-style: none;
    height: 100vh;
    position: fixed;
    top: 60px;
    background-color: rgba(0, 0, 0, 0.9);
    width: 65%;
    right: -65%;
    transition: all 0.5s;
}

/* ação para a caixa checkbox */
/* quando selecionada mudar ul */
#check:checked~ul {
    top: 55px;
    right: 0px;
}

nav ul li {
    padding: 20px;
    border-bottom: 1px solid var(--cinzaEscuro);
    text-align: right;
}

nav ul li a {
    text-decoration: none;
    color: var(--branco);
}


/* Principal */
main {
    height: 50vh;
    background: url(IMG/banner.png);
    background-size: cover;
    background-position: center;
}

main .container {
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main h1 {
    color: var(--branco);
    font-family: "Koulen", sans-serif;
    text-shadow: 0px 5px 10px var(--preto), 0px 10px 10px rgba(0, 0, 0, 0.15), 0px 15px 15px rgba(0, 0, 0, 0.1), 0px 20px 20px rgba(0, 0, 0, 0.1);
}

main h2 {
    color: var(--dourado);
    font-size: 1.85rem;
    font-weight: 900;
    text-shadow: 0px 5px 10px var(--preto), 0px 10px 10px rgba(0, 0, 0, 0.15), 0px 15px 15px rgba(0, 0, 0, 0.1), 0px 20px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}


/* Destaque */
#destaque {
    padding: 30px 5px;
    background: url(./IMG/T\ \(3\).png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#destaque .container {
    flex-direction: column;
}

#hero {
    text-align: center;
}

#hero img {
    width: 300px;
    height: 300px;
    margin-bottom: 25px;
}

.hero-text h2 {
    font-size: 1.6rem;
    color: var(--dourado);
    margin-bottom: 15px;
}

.hero-text p {
    color: var(--branco);
}

.topic {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.topic p {
    margin-left: 15px;
}

/* Sobre */
#sobre {
    margin: 50px 10px;
}

#about p {
    margin: 15px;

}

#sobre .container {
    flex-direction: column;

}

#video iframe {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 16 / 9;
    align-items: center;
    border: none;
}

.about {

    width: 100%;
    max-width: 350px;
    aspect-ratio: 16 / 9;
    align-items: center;
    border: none;
    flex-direction: column;
    display: flex;
}

/* Wireframe */

#wireframe {
    padding: 50px 10px;
    margin-top: 20px;
    background: url(IMG/T\ \(3\).png);
    background-attachment: fixed;
}

#textoCloset {
    text-align: left;

}

#qrcode {
    display: block;
    max-width: 200px;
    min-width: 100px;

}

#qrcode img {
    display: none;


}

#wireframe {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

#qrcode {
    width: 200px;
    height: auto;
}


/* Cartões */
#closet {
    background-color: #DAA520;
    padding: 50px 0px;
}

#closet .container {
    flex-direction: column;
    text-align: center;
}

#closet h2 {
    margin: 15px 0px;
}



/* endereco */
address {
    padding: 35px 10px 50px 15px;
    background: url(IMG/T\ \(3\).png);
    color: #ffffff;
    background-attachment: fixed;
    background-position: center;
}

address a {
    text-decoration: none;
    color: #ffffff;
}

address img {
    padding-top: 15px;
}

address .container {
    flex-direction: column;
}

#endereco {
    padding-bottom: 30px;
}

#googlmaps iframe {
    display: none;
}

#mapaicon {
    display: none;
}

/*rodapé*/

footer {
    padding: 25px 10px;
    background-color: var(--cinzaEscuro);
    color: var(--branco);
    align-items: center;
    justify-content: center;
}

#social {
    margin-bottom: 25px;
}

#copyright a {
    text-decoration: none;
    color: var(--cinzaClaro);
}

/* botão de subir */

#topo {
    position: fixed;
    bottom: 75px;
    right: 15px;
}

.autor {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}





/* Fim - Smartphone portrait <<<<<<<<<<<< */


/* Smartphone landscape >>>>>>>>>>>>>>>>> */
@media (min-width: 576px) {

    /* Layout */
    .container {
        max-width: 540px;
    }

    /* Cabeçalho */
    nav ul {
        width: 40%;
        right: -40%;
    }

    /* Principal */
    main {
        height: 75vh;
    }

    main h1 {
        font-size: 2.75rem;
    }

    main h2 {
        font-size: 2.5rem;
    }

    /* Destaque */
    #destaque {
        padding: 50px 0px;
    }

    #destaque .container {
        flex-direction: row;
        align-items: center;
    }

    #hero {
        text-align: left;
    }

    #hero img {
        width: 200px;
        height: 200px;
        margin: 0px 30px 0px 0px;
    }

    .topic {
        display: none;
    }

    .autor {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-left: 40px;
        padding-right: 40px;
    }

}



/* Fim - Smartphone landscape <<<<<<<<<<< */


/* Tablet portrait >>>>>>>>>>>>>>>>>>>>>> */
@media (min-width: 768px) {

    /* Layout */
    .container {
        max-width: 720px;
    }

    /* Principal */
    main h1 {
        font-size: 3.9rem;
    }

    main h2 {
        font-size: 3rem;
    }


}

/* Fim - Tablet portrait <<<<<<<<<<<<<<<< */


/* Tablet landscape >>>>>>>>>>>>>>>>>>>>> */
@media (min-width: 992px) {

    /* Layout */
    .container {
        max-width: 960px;
    }
}

/* Fim - Tablet landscape <<<<<<<<<<<<<<< */


/* Notebook / PC >>>>>>>>>>>>>>>>>>>>>>>> */
@media (min-width: 1200px) {

    /* Layout */
    .container {
        justify-content: space-between;
        max-width: 1140px;
    }

    /* Cabeçalho */
    header {
        height: 100px;
    }

    .logo img {
        width: 194px;
        height: 194px;
    }

    label {
        display: none;
    }

    nav ul {
        position: static;
        width: 100%;
        height: auto;
        background-color: transparent;
        margin-top: 20px;
    }

    nav ul li {
        float: left;
        border: 0;
    }

    nav ul li a:hover {
        color: var(--dourado);
    }

    /* Principal */
    main {
        height: 89vh;
    }

    /* sobre */
    #sobre .container {
        flex-direction: row;
        align-items: center;
    }

    #sobre-video iframe {
        margin: 0px 0px 0px 20px;
    }

    /* Destaque */

    #hero img {
        width: 400px;
        height: 400px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .topic {
        display: flex;
    }

    /* wireframe */

    #qrcode img {
        display: flex;
    }

    #closet .container {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    #wireframe .qrcode {
        justify-content: center;
    }


    /* endereco */

    #googlmaps iframe {
        display: inline;
        width: 350px;
        height: 300px;
    }

    address .container {
        flex-direction: row-reverse;
        justify-content: space-around;
    }

    #endereco a {
        display: none;
    }

    #mapaicon {
        display: inline;
    }




    /* rodapé */
    .autor {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-left: 120px;
        padding-right: 120px;
    }

}

/* Fim - Notebook / PC <<<<<<<<<<<<<<<<<< */


/* Full HD / 4K >>>>>>>>>>>>>>>>>>>>>>>>> */
@media (min-width: 1400px) {

    /* Layout */
    .container {
        max-width: 1320px;
    }

    /* Principal */
    main h1 {
        font-size: 6rem;
    }

    main h2 {
        font-size: 4rem;
    }
}


