@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@import url('https://fonts.googleapis.com/css2?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');

:root {
    /*fontes*/
    --fonte-título:  "Big Shoulders", sans-serif;
    --font-texto:  "DM Sans", sans-serif;
    --font-description:  "Poppins", sans-serif;

    /*cores*/
    --preto: #0c1117;
    --azul: #0053A8;
    --azul-escuro: #07305a;
    --amarelo: #e3cc1d;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 10px; /* Largura da barra vertical */
}

::-webkit-scrollbar-track {
  background: var(--azul-escuro); /* Fundo da barra */
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  background: var(--amarelo); /* A parte que você arrasta */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--azul); /* Cor ao passar o mouse */
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    height: 100%;
}

#inicio .slogan-inicio,
#sobre img,
.row-cards .cards-produtos,
footer img,
footer .social {
  position: relative;
}

main, #sobre {
  overflow: hidden;
}

/*HEADER*/

header {
    margin-top: 0;
    padding: 20px;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--amarelo);
    box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.174);
}

header .logo {
    margin: 0;
    padding: 0;
    width: 20%;
}

header .logo img{
    max-width: 80%;
    padding: 20px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

header .ancora ul{
    list-style: none;
    display: flex;
    gap: 20px;
}

header .ancora ul li a{
    position: relative;
    text-decoration: none;
    color: var(--preto);
    font-family: var(--font-texto);
    font-weight: 500;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 1.3em;
    transition: border .6s, color .6s;
}

header .ancora ul li a::after {
    content: "";
    width: 0%;
    height: 4px;
    background-color: var(--amarelo);
    position: absolute;
    bottom: -6px;
    left: 0;
    transition: .5s ease-in-out;
}

header .ancora ul li a:hover::after {
    width: 100%;
}

header .ancora ul li a:hover {
    color: #629cd7;
}

header .local_insta {
    display: flex;
    flex-direction: row;
}

header .local_insta .local i {
    margin-right: 10px;
    color: var(--amarelo);
    font-size: 1.5em;
}

header .local_insta .localizacao {
    margin-right: 40px;
}

header .local_insta .localizacao p{
    font-family: var(--font-texto);
    font-weight: 600;
    color: var(--azul);
}

header .local_insta .insta {
    margin-right: 40px;
}

header .local_insta .insta i{
    font-size: 1.5em;
    color: var(--amarelo);
    filter: saturate(7), contrast(8);
}

header .local_insta .insta a{
    text-decoration: none;
    display: flex;
    gap: 4px;
}

header .local_insta .insta a p{
    color: var(--azul);
    font-family: var(--font-texto);
    font-weight: 600;

}


/*MAIN*/
main {
    width: 100%;
}

/*INICIO*/
#inicio {
    height: auto;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#inicio .slogan-inicio h2{
    font-family: var(--fonte-título);
    font-size: 2em;
    color: var(--azul);
    
}

#inicio .slogan-inicio h1{
    font-family: var(--fonte-título);
    font-weight: 900;
    font-size: 5em;
    color: var(--azul-escuro);
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.322);
}

#inicio .botao {
    margin-top: 50px;
}

#inicio .botao a{
    font-size: 1.5em;
    font-family: var(--font-texto);
    text-decoration: none;
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    font-weight: bolder;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--azul-escuro);
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    outline: 2px solid var(--amarelo);
}

#inicio .botao a:hover {
  color: #fff;
  transform: scale(1.1);
  outline: 2px solid #fff;
  box-shadow: 4px 5px 17px -4px var(--amarelo);
}

#inicio .botao a::before {
    content: "";
    position: absolute;
    left: -0px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--amarelo);
    transform: skewX(0deg);
    z-index: -1;
    transition: width 1000ms;
}

#inicio .botao a:hover::before {
    width: 100%;
}

#inicio .imagem-inicio{
    width: 800px;
}

#inicio .imagem-inicio img{
    width: 100%;
    filter: drop-shadow(31px 35px 20px rgba(0, 0, 0, 0.281));
}

/*SOBRE*/

#sobre {
    padding-top: 150px;
    padding-bottom: 100px;
    height: auto;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
}
#sobre .imagem-sobre{
    width: 50%;
}

#sobre .imagem-sobre img{
    width: 100%;
    
}

#sobre .sobre-loja {
    width: 650px;
    text-align: justify;
}

#sobre .sobre-loja h1 {
    position: relative;
    font-family: var(--fonte-título);
    font-size: 5em;
    font-weight: 900;
    color: #fff;
    background-color: #0053A8;
    border-radius: 5px;
    text-align: center;
    padding-bottom: 15px;
    text-shadow: 8px 7px 13px rgba(0, 0, 0, 0.265);
}

#sobre .sobre-loja h1::before {
    position: absolute;
    content: '';
    height: 4px;
    width: 500px;
    background: linear-gradient(to left, var(--amarelo), #fff, var(--amarelo));
    bottom: 15px;
}

#sobre .sobre-loja h2 {
    font-family: var(--font-texto);
    font-size: 2.1em;
    color: var(--azul);
    padding-bottom: 20px;
    text-align: center;
}

#sobre .sobre-loja p {
    font-family: var(--font-texto);
    font-weight: 600;
    font-size: 1.4em;
}

/*CATALOGO*/

#catalogo {
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 100vh;
    padding: 80px 0;
    background-image: url("../images/background_catalogo.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: inset 0px 16px 20px rgba(255, 255, 255, 0.354);
    display: flex;
    align-items: center;
    flex-direction: column;
}

#catalogo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.582);
    z-index: -1;
}

.titulo {
    font-family: var(--fonte-título);
    color: #fff;
    font-size: 3em;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.443);
}
/*Catálogo/Cards*/

#tabela {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#tabela h2{
    position: relative;
    color: #fff;
    font-family: var(--fonte-título);
    font-size: 2.5em;
    display: flex;
    width: 100%;
    justify-content: start;
    margin: 15px;
    text-shadow: 1px 2px 8px black;
}

#tabela h2::before {
    position: absolute;
    content: '';
    height: 4px;
    width: 98%;
    background: linear-gradient(to left, var(--amarelo), #fff, var(--amarelo));
    bottom: -6px;
}

.row-cards {
    display: flex;
    width: 100%;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-wrap: wrap;
}

.cards-produtos {
    background-color: #ffffff;
    width: 200px;
    height: 260px;
    border-radius: 8px 8px 8px 8px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.612);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px;
}

.cards-produtos .imagem {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}

.cards-produtos .imagem img{
    width: 60%;
    border-radius: 10px;
}

/*DESCRIÇÃO*/

.cards-produtos .descricao p{
    margin: 10px;
    text-align: center;
    font-family: var(--font-description);
    font-weight: 700;
    color: #2a2b2c;
    font-size: 0.8em;
}

/*catalogo/link page */
#saibamais {
    z-index: 10;
    padding-top: 50px;
}

.link-page-catalogo a{
    text-decoration: none;
    font-family: var(--font-texto);
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    background-color: var(--azul);
    border: 3px solid #fff;
    padding: 18px;
    transition: background-color .4s ease-in-out;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.443);
    cursor: pointer;
}

.link-page-catalogo a:hover{
    background-color: #ffffffe2;
    color: var(--azul);
    border: 2px solid var(--amarelo);
    opacity: 1;
    transform: translateX(0);
    text-shadow: none;
}

.link-page-catalogo a:hover i{
    opacity: 1;
    transform: translateX(0);
    width: 20px;
}

.link-page-catalogo i{
    width: 0;
    opacity: 0;
    margin-left: 0;
    transition: all 0.2s ease;
}

/*FOOTER*/

footer {
    width: 100%;
    height: auto;
    background-color: var(--azul-escuro);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    flex-wrap: wrap;
}

#social {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#social .social{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 30px;
    width: 33%;
}

#social .social a{
    color: #fff;
    font-size: 2.5em;
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 8px;
    transition: .5s ease-in-out;
}

#social .social a:hover{
    color: var(--azul-escuro);
    background-color: #fff;
    border: 1px solid var(--amarelo);
}

#social .logo-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
}

#social .logo-footer img{
    width: 100%;
}

footer .formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;

    width: 33%;
    height: 400px;
}

footer .formulario h1 {
    color: #ffffff;
    font-size: 3em;
    font-family: var(--font-description);
    text-shadow: 2px 6px 8px rgba(0, 0, 0, 0.445);
}

.formulario .email {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.formulario .telefone {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.formulario label {
    color: var(--amarelo);
    font-family: var(--font-description);
    padding-right: 8px;
    cursor: pointer;
    font-size: 1.4em;

}

.formulario input {
    padding: 15px 20px 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.374);
}

.formulario button {
    color: var(--azul);
    padding: 10px 20px 10px 20px;
    margin: 15px;
    border-radius: 30px;
    border: none;
    font-family: var(--font-description);
    background-color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.2em;
    box-shadow: 0px 8px 9px rgba(0, 0, 0, 0.153);
    transition: .5s ease;
}

.formulario button:hover {
    color: var(--amarelo);
    background-color: var(--azul);
}


@media (max-width: 768px) {
    header{
        flex-wrap: wrap;
        height: 400px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    header .logo{
        width: 300px;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .logo img {
        width: 400px;
        height: 200px;
        object-fit: cover;
        padding: 0;
    }

    .ancora {
        width: 100%;
        margin-left: -10px;
        display: grid;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        font-size: 0.7em;
        flex-wrap: wrap;
    }

    .ancora a{
        margin: 0;
        font-size: 0.5em;
    }

    header .local_insta {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    header .local {
        display: none;
    }

    header .localizacao {
        text-align: center;
    }

    header .insta {
        text-align: center;
    }

    #inicio{
        text-align: center;
        margin-bottom: 50px;
        display: flex;
        flex-direction: column-reverse;
    }

    #inicio .slogan-inicio h1{
        padding: 10px;
        font-size: 4.8em;
    }

    #inicio .imagem-inicio {
        width: 400px;
    }

    .imagem-inicio img{
        width: 400px;
    }

    #sobre {
        padding: 15px;
    }

    #sobre .sobre-loja p{
        text-align: start;
    }

    #sobre .imagem-sobre {
        width: 100%;
    }

    h1::before {
        display: none;
    }

    footer {
    width: 100%;
    height: 120vh;
    background-color: var(--azul-escuro);
    display: flex;
    align-items: center;
    padding-top: 30px;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
    }

    footer #social {
        display: flex;
        flex-direction: column;
    }

    footer #social .logo-footer {
        width: 100%;
    }

    footer .formulario {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        text-align: center;
        width: 33%;
        padding: 20px;
    }

/*CATÁLOGO*/
#tabela .row-cards {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 0 16px;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#tabela .row-cards .cards-produtos {
    flex: 0 0 auto;
    width: 200px;
}

/*escondendo a scroll bar*/

#tabela .row-cards::-webkit-scrollbar {
    display: none;
}
}
