@charset "UTF-8";


:root {
    --cor0: #71faff;
    --cor1: #1C244B;
    --cor2: #324A6D;
    --cor3: rgba(61, 165, 196, 0.418);
    --cor5: #2575fc;

    --fonte-padrao: 'Poppins', sans-serif;

    --fonte-destaque: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

    --fonte-detalhe: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

*{
    margin: 0;
    padding: 0;
    box-sizing: 0;

}

body {
    min-width: 360px;
    max-width: 100%;
    font-family: var(--fonte-padrao);
    color: var(--cor1);
    background-color: #F9FCFD;
    font-size: 1rem;
}

header {
    display: flex;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    min-width: 300px;
    max-width: 100%;
    min-height: 100px;
    background-color: #1C244B;
    justify-content: space-between;
    padding: 0px 30px 0px 30px;
    z-index: 3;
}

header picture img { 
    max-width: 100px;
    height: auto;
    padding: 30px;
}


header #close {
    display: none;
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
}

header .material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48;
    cursor: pointer;  
    border-radius: 5px;  
    width: 44px;
}

#menuHamburguer.disabled{
    display: none;
}

#close.active{
    display: block;
}

header nav {
    display: block;
    padding: 20px;
    text-align: right;
    align-self: center;
}

header button{
    background-color: transparent;
    border: none;
}

#menuToggle {
    display: block;
}

#menu {
    display: block;
    position: absolute;
    width: 100%;
    height: 0px;
    top: 100px;
    right: 0px;
    padding-top: 16px;
    background-color: var(--cor1);
    z-index: 100;
    text-align: left;
    transition: .6s;
    visibility: hidden;
    overflow-y: hidden;
}

#nav.active #menu {

    height: calc(100vh - 70px);
    visibility: visible;
    overflow-y: auto;
}

header nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 0;
    margin: 0 2rem;
    border-bottom: 2px solid var(--cor3);
    font-size: 1rem;
    text-transform: uppercase;
}

nav a:visited {
    color: var(--cor0);
}

main {
    scroll-margin-top: 5rem;
}

.container {
    position: relative;
    background-color: var(--cor0);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 15px 80px 15px;
    margin-right: auto;
    margin-left: auto;
    overflow-x: hidden;
}

/*criado para criar a opacidade no container com background e conteudo vazio*/
.container::after{
    content: '';
    background: url(../imagens/gotas-de-agua-gelada.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    z-index: 0;
}



/*elemento child aplicado a opacidade*/
/* Os elementos do container não se agrupam aos demais nesse CSS, somente o botão botaoPecaAgora*/
.container .conteudo-container{
    position: relative;
    z-index: 2;
}

main .container #coluna-texto h1{
    text-align: center;
}

main .container #coluna-texto h2{
    padding: 50px;
    font-size: 1.6em;
    line-height: 1.3em;
    font-weight: 600;
    text-align: center;
    justify-content: stretch;
}

main .container #coluna-imagem{
    display: none;
}

.botaoContato {

    display: flex;
    flex-flow: row;
    width: fit-content;
    padding: 20px 40px 20px 40px;
    margin: auto;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cor1);
    background-color: var(--cor0);
    text-decoration: none;
    border-radius: 49px 49px 49px 49px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
    line-height: 1;

}

.botaoContato:hover {
    background-color: white;
}

.botaoContato img {
    width: 15px;
    padding-right: 5px;
}


main section#marcasvendidas {
    scroll-margin-top: 5rem;
}

div#marcas {

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}

#marcas .colunasmarcas{
    padding: 0px 60px 0px 60px;
}

#marcas img {
    width: 150px;
    height: 150px;
    max-width: 100%;
    padding-top: 50px;
}

#marcasvendidas h3, #entrega h3, #pagamento h3, #contato h3{
    padding-top: 60px;
    padding-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    justify-content: stretch;
}

#marcas p {
    display: flex;
    flex-direction: column;
    color: var(--cor1);
    font-family:  var(--fonte-detalhe);
    font-size: 1rem;
    padding: 10px;
    font-weight: 400;
    line-height: 1.2rem;
}

main section#entrega {
    color: white;
    display: flex;
    max-width: 100%;
    flex-direction: column;
    padding: 30px;
    padding-bottom: 60px;
    text-align: center; 
    align-items: center;   
    background-color: var(--cor1); 
    scroll-margin-top: 5rem;
    margin-top: -1px;
    margin-bottom: -1px;
}


/* Configuração das formas das seções*/
.custom-shape-divider-bottom-1673031617 {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1673031617 svg {
    position: relative;
    display: block;
    width: calc(164% + 1.3px);
    height: 61px;
    background-color: transparent;  
    z-index: -1;
}

.custom-shape-divider-bottom-1673031617 .shape-fill {
    fill: #1C244B;
}

section#entrega p, #pagamento p{
    padding-bottom: 30px;
}

section#entrega aside img{
    display: none;
    max-width: 400px;
}
/* Configuração das formas das seções*/
.custom-shape-divider-top-1673031793 {

    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1673031793 svg {

    display: block;
    width: calc(164% + 1.3px);
    height: 61px;
}

.custom-shape-divider-top-1673031793 .shape-fill {
    fill: var(--cor1); 
}

main section#pagamento {
    display: flex;
    max-width: 100%;
    flex-direction: column-reverse;
    padding: 30px;
    text-align: center; 
    margin: auto;
    align-items: center; 
    scroll-margin-top: 5rem;
}


section#pagamento aside img#maquinadecartao{
    display: none;
}
section div#meiosdepagamento #bandeirascartoes{
    display: flex;
    max-width: 80%;
    margin: auto;
    padding-bottom: 30px;
}

main section#contato {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    padding: 30px;
    text-align: center; 
    margin: auto;
    scroll-margin-top: 5rem;
}

section#contato aside {
    width: 80%;
    margin: auto;
}

#contato iframe {
    padding: 0px;
    width: 100%;
}

section#contato #entreEmContato img {
    max-width: 15px;
    
}

section#contato #entreEmContato a {
    text-decoration: none;
    color: var(--cor1);
}

section#contato #entreEmContato #p-email {
    font-size: .8rem;
}


#btnfloatWhatsApp {
    background-color: var(--cor1);
    border-radius: 10%;
    padding:5px ;
    padding-bottom: 1px;
    position: fixed;
    bottom: 10px;
    right: 0px;
    margin-right: 30px;
    margin-bottom: 20px;
    vertical-align: middle;
    animation: wiggle 2.2s linear 2;
    z-index: 1000;
}

@keyframes wiggle {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    20% {
        transform: rotate(10deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(10deg);
    }

    35% {
        transform: rotate(-10deg);
    }

    40%, 100% {
        transform: rotate(0deg);
    }
}

#btnWhatsApp {
    background-color: transparent;
    border: none;
    cursor: pointer;

}

#btnWhatsApp img {
    width: 50px;
}

footer {
    background-color: var(--cor1);
    padding: 20px;
    text-align: center;
}

footer p {
    color: white;
    font-size: .9rem;
    font-weight: 300;
}

footer p > a {
    color: white;
    text-decoration: none;
}

footer p > a:visited {
    color: var(--cor0);
}
