@charset "UTF-8";

@font-face {
    font-family: 'Miller';
    src: url(../paleta_fontes/Miller_Family/fonts/miller_headline_light.otf) format('opentype');
}

:root {
   --roxo: #800080;
   --azul_meia_noite: #051119;
   --branco_bone: #E1E9E5;

   --principal: "Ledger";
   --secundario: "Roboto Flex";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--principal), var(--secundario), sans-serif;
    color: var(--azul_meia_noite);
}

/* HEADER */
header > nav {
    background-color: var(--azul_meia_noite);
}

#logo {
    margin-right: -50px;
    margin-left: -20px;
}

#container_menu > #btn_menu_responsivo {
    font-size: 2.5em;
    color: var(--branco_bone);
}

#container_menu > #btn_menu_responsivo:hover {
    font-weight: bold;
    color: var(--roxo);
    cursor: pointer;
}

#menu_responsivo {
    background-color: #051119;
}

#menu_responsivo > div.offcanvas-header {
    display: flex;
    justify-content: space-between;
    margin: 20px 5px 40px 5px;
}

#menu_responsivo > div.offcanvas-header span {
    color: var(--branco_bone);
    font-size: 2.5em;
}

#menu_responsivo > div.offcanvas-header span:first-child {
    margin-right: 25px;
}

#menu_responsivo > div.offcanvas-header span:hover {
    font-weight: bold;
    color: var(--roxo);
    cursor: pointer;
}

#menu_responsivo > div.offcanvas-body > ul {
    list-style: none;
    padding: 0;
}

#menu_responsivo > div.offcanvas-body > ul > li {
    text-align: center;
}

#menu_responsivo > div.offcanvas-body > ul > li > a {
    font-size: 2em;
    color: var(--branco_bone);
    text-decoration: none;
    margin-bottom: 5px;
}

#menu_responsivo > div.offcanvas-body > ul > li > a:hover {
    font-weight: bold;
    text-decoration: underline;
    color: var(--roxo);
    cursor: pointer;
}

#container_menu > #menu {
    display: none;
}

#container_icones span {
    font-size: 1.9em;
    margin-right: 10px;
    color: var(--branco_bone);
}

#container_icones span:hover {
    font-weight: bold;
    color: var(--roxo);
    cursor: pointer;
}

#container_icones span:first-child {
    display: none;
}


main {
    background-color: var(--branco_bone);
}

/* Banner */
#banner {
    background-image: url(../imagens/home/banner2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    margin-bottom: 30px;
}

#ofertas, #sobre, #contato {
    scroll-margin-top: 58px;
}

#destaques {
    scroll-margin-top: 180px;
}

/* Ofertas */
#ofertas {
    background-color: var(--branco_bone);
    margin-bottom: 40px;
}

#ofertas > div > div.presente {
    height: 300px;
    background-image: url(../imagens/home/presente.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 10px;
}

#ofertas > div > div.container_texto {
    text-align: center;
}

#ofertas > div > div.container_texto h2 {
    color: var(--roxo);
    font-size: 1.8em;
    margin-bottom: 15px;
}

#ofertas > div > div.container_texto h1 {
    font-weight: bold;
    font-size: 2.1em;
    margin-bottom: 20px;
}

#ofertas > div > div.container_texto p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

#ofertas > div > div.container_texto p.botao {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.1em;
    color: white;
    border: 1px solid var(--azul_meia_noite);
    border-radius: 50px;
    background-color: var(--azul_meia_noite);
    transition: 0.6s all;
}

#ofertas > div > div.container_texto p.botao:hover {
    font-weight: bold;
    cursor: pointer;
    color: var(--azul_meia_noite);
    background-color: transparent;
    border: 3px solid var(--azul_meia_noite);
}


/* Destaques */
#destaques {
    margin-bottom: 60px;
}

#destaques > p {
    display: inline-block;
    font-size: 1.1em;
    color: white;
    background-color: var(--azul_meia_noite);
    border: 1px solid var(--azul_meia_noite);
    border-radius: 14px;
    margin-left: 10px;
    margin-bottom: 25px;
    padding: 10px 17px;
}

#destaques .produto {
    margin: auto;
    background-color: #D9D9D9;
    width: 203px;
    height: 250px;
    border-radius: 15px;
}

#destaques .produto > img {
    width: 100%;
    height: 100%;
}

#destaques .produto > img.ajustar_img {
    object-fit: cover;
    object-position: center;
}

#carrossel_produtos > div.btn_carrossel {
    border: 1px solid black;
    border-radius: 9px;
    padding: 30px 20px;
    background-color: white;
    color: var(--azul_meia_noite);
    opacity: 0.7;
    transition: 0.3s;
}

#carrossel_produtos > div.btn_carrossel:hover {
    cursor: pointer;
    opacity: 1;
}


/* Sobre */
section#sobre {
    background-color: var(--azul_meia_noite);
    padding: 40px 40px 0px 40px;
}

#sobre h1 {
    color: var(--roxo);
    text-align: center;
    margin-bottom: 20px;
}

#sobre p {
    color: var(--branco_bone);
    text-align: justify;
    text-indent: 30px;
    margin-bottom: -24px;
}

#sobre div.logo_sobre {
    width: 119px;
    height: 177px;
    margin: auto;
    background-image: url(../imagens/logos/Símbolo_Roxo.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    
}


/* CONTATO */
#contato {
    padding: 20px;
}

#contato > h1 {
    text-align: center;
    margin: 20px 20px 30px 20px;
}

#contato form > div, #contato form > textarea {
    margin-bottom: 15px;
}

#contato form > div > input {
    background-color: transparent;
    border: 1px solid black;
    /* box-shadow: 2px 1px 3px -1px var(--roxo); */
}

#contato form > textarea {
    border: 1px solid black;
}

#contato form > div > input:focus, #contato form > textarea:focus {
    border-color: var(--roxo);
    box-shadow: 2px 1px 3px -1px var(--roxo);
    background-color: #f389f34b;
}

#contato form > input.form_btn {
    background-color: var(--azul_meia_noite);
    color: white;
    padding: 5px 20px;
    border: 1px solid var(--azul_meia_noite);
    border-radius: 50px;
    display: block;
    margin: 10px auto 40px auto;
    transition: all 0.4s;
}

#contato form > input.form_btn:hover {
    color: black;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid var(--azul_meia_noite);
}

#contato > div > div {
    text-align: center;
}

#contato > div > div > p:first-of-type {
    margin-bottom: 0;
}

#contato > div > div > div span {
    font-size: 2.3em;
    margin-bottom: 0;
}

#contato > div > div > div p {
    font-size: 1em;
    margin-top: -9px;
}

/* FOOTER */
footer {
    padding: 40px;
    text-align: center;
    background-color: #E1E9E5;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

footer > div.texto_footer {
    display: flex;
    flex-flow: column nowrap;
}

footer > div.texto_footer > p {
    margin-bottom: 7px;
}

footer > div.texto_footer > p:last-of-type {
    margin-bottom: 20px;
}

footer > div.texto_footer > p:hover {
    color: var(--roxo);
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
}

footer > div.redes_sociais {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

footer > div.redes_sociais > i {
    font-size: 2em;
    margin-right: 20px;
    color: var(--azul_meia_noite);
}

footer > div.redes_sociais > i:hover {
    color: var(--roxo);
    cursor: pointer;
}

/* Creditos */
.creditos {
    padding: 20px;
    background-color: var(--branco_bone);
}

.creditos a {
    display: block;
    color: var(--azul_meia_noite);
    text-decoration: none;
    text-align: center;
    margin-bottom: 10px;
}

.creditos a:hover {
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
    color: var(--roxo);
}