@charset 'UTF-8';

@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&family=Sriracha&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
}
:root {
    --cor01: rgba(15,60,160,1);
    --cor02: rgba(2,10,40,1);
    --cor03: #C9A84C;
    --fonte01: 'Times New Roman', Times, serif;
    --fonte02: 'Passion One',cursive
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    background: linear-gradient(to bottom, #05215a, #041431f5);
    min-height: 100vh;
}
header {
    background-image: radial-gradient( ellipse at top, rgba(15,60,160,1) 0%, rgba(8,22,76,1) 60%, rgba(2,10,40,1) 100% );
    border-bottom: 2px solid #C9A84C;
    padding: 40px 20px 20px;
    padding-top: 70px;
}
main, section , article {
    background-color: transparent;
}
#logo {
    height: 35px;
    margin-right: auto;
    vertical-align: middle;
}
nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 10px;
    gap: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #041431;
    text-align: right;
    box-sizing: border-box;
    border-bottom: 1px solid #D4AF37;


}
nav > a {
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.3 ease;
    color: #D4AF37;
    text-shadow: #C9A84C;
    font-size: 1.2em;
    font-weight: bold;
}
nav > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #caa337;
    transition: width 0.8s ease;
}
nav > a:hover::after {
    width: 100%;
}

nav > a:hover {
    background-color: #061d46;
    transform: scale(1.05);
    border-radius: 10px;
    color: #fff;
    
}
Nav >a:active {
    transform: scale(0.95);
    background-color: rgba(7,199,199,0.2);
    box-shadow: 0 0 10px rgba(7,199,199,0.6);
}
header > h1{
    font-family: var(--fonte01);
    color: #C9A84C;
    margin: 20px;
    padding: 10px;
    font-size: 3.4em;
    font-weight: bolder;
    text-align: center;
}
header> p#principal {
    font-family: var(--fonte01);
    font-weight: 500;
    font-size: 1.2em;
    line-height: 1.6;
    color: rgb(255, 255, 255);
    text-indent: 10px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding-inline: 5px;
    padding-bottom: 20px;
    position: relative;
}

#principal::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin: 15px auto;

    background: linear-gradient(to right, transparent, #D4AF37, #D4AF37, transparent);
}


header> p#importante {
    background-color: none;
    border-radius: 0;
    font-size: 1.2em ;
    color: #eee0b1f3;
    text-align: center;
    box-shadow: none;
    margin-bottom: 20px;
}
.destaque {
    color: #d4af37;
}
section {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
    overflow: hidden;
    
}
article > div > h1 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: 25px;
    color: #D4AF37;
}
article {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
    background: none;
    border-radius: 0;
    box-shadow: none;
}
@media (max-width: 768px) {
    .produto {
        width: calc(50% - 20px);
    }
}
article > div > p#atacado {
    text-align: center;
    padding: 2px;
    color: #C9A84C;
}
article > div {
    padding: 4px;
    padding-left: 4px;
    color: #C9A84C;
    text-align: center;
    text-shadow: #032b75;
    font-weight: bolder;
}

footer {
    background-color: #0a0a0a;
    color: #FFFFFF;
    text-align: center;
    margin-top: 30px;
    padding: 40px 20px 20px;
    border-top: 2px solid #C9A84C;
}
footer  h2 {
    font-weight: bold;
    font-size: 1.6em;
    color: #C9A84C;
    margin-bottom: 10px;
}
footer p {
    margin-bottom: 10px;
    font-size: 1.2em;
}
footer  a {
    padding-top: 20px;
    color: rgba(7, 199, 199, 0.856);
    text-decoration: none;
    font-weight: bold;
}
p#instagram {
    margin-top: 15px;
}
#direitos {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 0.85em;
    color: rgba(255,255,255,0.5);
}
.produto {
    width: calc(33% -20px);
    max-width: 350px;
    background: none;
    width: 100%;
    max-width: 400px;
    margin: 15px auto;
    padding: 10px;
    text-align: center;
}

.produto-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.produto h2 {
    font-size: 1.8em;
    color: #D4AF37;
    margin-top: 10px;
}

.preco {
    font-size: 2em;
    font-weight: 600;
    color: #D4AF37;
    margin-top: 10px;
    letter-spacing: 2px;
}

.atacado {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 3px;
    color: #fff;
}

.tamanho {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 10px;
}

.cores {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
    margin-top: 15px;
}

.cores span {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
}
.cores span:hover {
    transform: scale(1.2);
}
.btn-whatsapp {
    position: relative;
    overflow: hidden;
    width: 100%;
    font-size: 1.1em;
    display: block;
    background: #041431;
    color: #D4AF37;
    padding: 10px;

    border-radius: 25px;
    border: 1px solid #f7eb48;
    box-shadow: 1px 1px 2px #D4AF37;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
}
.btn-whatsapp::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.3s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}
@media (min-width: 769px) {
    .produto-img {
        height: 680px;
    }
    .produto {
        max-width: 380px;
    }
}
@media (max-width: 768px) {
    .produto-img{
        object-position: center center;
        height: 620px;
        width: 100%;
    }
}
@media (max-width: 768px) {
    #img1 {
        object-fit: cover;
        object-position: 70% 50%;
        height: 500px;
        width: 90%;
    }
}
@media (max-width: 768px) {
    #img2 {
        object-fit: cover;
        object-position: 70% 50%;

    }
}
@media (max-width: 768px) {
    #img5 {
        height: 500px;
        width: 100%;
    }
}
@media (max-width: 480px) {
    .produto-img{
        width: 100%;
    }
}