@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

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

body {
    background-color: #ffffff;
    overflow-x: hidden;
} 

#message-container {
    width: 100%;
    height: 25px;
    overflow: hidden;
    position: relative;
    background-color: #06241a !important;
}

#messages {
    display: flex;
    transition: transform 0.5s ease;
}

.message {
    min-width: 100%;
    text-align: center;
    line-height: 8px;
    color: white;
    font-size: 15px;
}

/* Estilo inicial do topo na página home */
body.home .topo {
    height: 90px; /* Topo maior inicialmente */
    transition: height 0.3s ease, padding 0.3s ease;
    position: relative;
    width: 100%;
}

body.home .logo img {
    width: 180px; /* Logo maior inicialmente */
    height: auto;
    transition: width 0.3s ease, height 0.3s ease;
    margin-right: 30px; /* Distância da margem direita do logo */
}

body.home .topo.scrolled .logo img {
    width: 100px; /* Logo menor quando rolado */
    margin-right: 40px; /* Aumenta a distância da margem direita do logo quando rolado */
}


body.home .sacola,
body.home .login {
    transition: all 0.3s ease;
}

/* Quando a página for rolada, o topo vai diminuir e ficará fixo na home */
body.home .topo.scrolled {
    height: 50px; /* Topo menor quando rolado */
    position: fixed;
    margin-top: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100; /* Fixa acima dos outros conteúdos */
    padding: 10px 0; /* Ajusta o padding do topo */
}

body.home .topo.scrolled .logo img {
    width: 100px; /* Logo menor quando rolado */
    margin-right: 30px; /* Maior distância da margem direita quando rolado */
}

body.home .topo.scrolled .sacola,
body.home .topo.scrolled .login {
    transform: scale(0.8); /* Reduz os ícones */
}

/* Estilos gerais para o topo */
.topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #103227;
    padding: 0;
    position: relative;
}

.topo.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 50px; /* Topo reduzido */
    padding: 10px 0; /* Ajusta o padding do topo fixo */
}




.logo img {
    margin-left: -235px;
}

.menu {
    z-index: 10;
    position: relative;
}

nav {
    font-size: 20px;
}

nav ul {
    display: flex;
}

nav li {
    list-style: none;
    margin-left: 10px;
    position: relative;
}

nav li a {
    text-decoration: none;
    color: aliceblue;
    padding: 10px;
    transition: color 0.10s, text-decoration 0.3s;
}

nav li a:hover {
    background-color: #0b271e;
    text-decoration: underline;
}

.drop-menu {
    position: absolute;
    display: none;
    flex-direction: column;
    background-color: #103227;
    border: 1px solid #103227;
    z-index: 10;
    margin-top: 10px;
    width: 150px;
}

.drop:hover .drop-menu {
    display: flex;
}

#icons {
    float: left;
    position: relative;
}

.sacola {
    margin-left: 10px;
    float: left;
    margin-left: -130px;
}

.login {
    margin-left: 10px;
    float: left;
    margin-left: -80px;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1500px;
    position: relative;
    margin-top: -30px;
    margin-left: 9px;
}

/* Slideshow control buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}


/* Estilos gerais para o topo */
.topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #103227;
    padding: 0;
}

.logo img {
    margin-left: -235px;
}

.menu {
    z-index: 10;
    position: relative;
}

nav {
    font-size: 20px;
}

nav ul {
    display: flex;
}

nav li {
    list-style: none;
    margin-left: 10px;
    position: relative;
}

nav li a {
    text-decoration: none;
    color: aliceblue;
    padding: 10px;
    transition: color 0.10s, text-decoration 0.3s;
}

nav li a:hover {
    background-color: #0b271e;
    text-decoration: underline;
}

.drop-menu {
    position: absolute;
    display: none;
    flex-direction: column;
    background-color: #103227;
    border: 1px solid #103227;
    z-index: 10;
    margin-top: 10px;
    width: 150px;
}

.drop:hover .drop-menu {
    display: flex;
}

#icons {
    float: left;
    position: relative;
}


.sacola {
    margin-left: 10px;
    float: left;
    margin-left: -130px;
}

.login {
    margin-left: 10px;
    float: left;
    margin-left: -80px;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1500px;
    position: relative;
    margin-top: -30px;
    margin-left: 9px;
}

/* Slideshow control buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

@media only screen and (max-width: 300px) {
    .prev, .next, .text {font-size: 11px}
}

.slideshow-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: auto;
}

.mySlides {
    display: none;
    width: 100%;
}

.mySlides img {
    width: 100%;
    height: auto;
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    z-index: 10;
    transform: translate(0, -50%);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* Indicadores (dots) */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.active {
    background-color: #717171;
}

.text {
    position: absolute;
    bottom: 8px;
    left: 16px;
    color: white;
    font-size: 15px;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente para o texto */
}
/* Fim do banner  */


/* Estilos gerais para os links das opções */
.opcoes {
    margin-top: 15px;
    font-size: 20px;
    margin-left: 500px;
}

.opcoes a {
    position: relative;
    text-decoration: none;
    color: rgb(8, 0, 0); /* Cor inicial */
    font-size: 120%;
    cursor: pointer;
    padding: 5px;
    margin: 0 15px;
    transition: color 0.3s, font-weight 0.3s; /* Transições suaves */
}

/* Estilos para o sublinhado */
.opcoes a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #103227;
    transition: width 0.3s ease-in-out;  /* Animação suave para o sublinhado */
}

/* Quando a aba estiver ativa, o sublinhado cresce para 100% */
.opcoes a.active-link::after {
    width: 100%;  /* O sublinhado cresce para 100% do tamanho do link */
}

/* Para destacar o link ativo (cor e negrito) */
.opcoes a.active-link {
    font-weight: bold;
    color: #103227; /* Cor ao clicar no link */
}

/* Estilos para o conteúdo das abas */
.tab-content {
    display: none;
}

.active-tab {
    display: block;
}


/* Estilo do Carrossel */
.carrossel-container {
    position: relative;
    width: 100%;
    overflow: hidden; /* Impede o transbordamento do conteúdo */
    padding-top: 40px; /* Adiciona espaçamento na parte superior do carrossel */
    padding-left: 10px; /* Adiciona espaçamento de 10px à esquerda */
    z-index: 1; /* Garante que o carrossel fique abaixo do banner */
}
.carrossel-container h1{
    margin-right: 200px;
}
.carrossel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Transição suave ao mover */
}

.produto {
    width: 400px;
    height: 430px;
    margin-right: 15px;
    flex-shrink: 0;
    background-color: #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.produto img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
}

/* Estilo das setas de navegação */
.carrossel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    z-index: 10; /* Garante que as setas fiquem acima dos produtos */
}

.carrossel-nav button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carrossel-nav button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Estilo do Banner */
.slideshow-container {
    position: relative;
    z-index: 0; /* Garante que o banner fique abaixo do carrossel */
    margin-bottom: 20px;
}

.mySlides {
    display: none;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 20; /* Botões de navegação do banner estarão acima dos slides */
}


#produto img:hover {
    transform: scale(1.1);
}
.produtos h2{
    margin-left: -1150px;
}
#produto{
    height: 650px;
    width: 350px;
    float: left;
    margin-left: 15px;
    margin-top: 40px;
}
#produto img {
    transition: 0.5s;
}
#produto img:hover {
    transform: scale(1.1);
}
.verprod{
    width: 200px;
    height: 40px;
    background-color: #0e1d18;
    margin-top: 15px;
    margin-left: 80px;
    font-size: 25px;
    border-radius: 2px;
    color: #ffffff;
    opacity: 80%;
}
.verprod a{
    color: #ffffff;
    text-decoration: none;
    margin-top: 20px;
    margin-left: 30px;
}
.ver{
    width: 200px;
    height: 40px;
    background-color: #103227;
    margin-top: 325px;
    margin-left: 80px;
    font-size: 25px;
    border-radius: 2px;
    color: #ffffff;
    opacity: 80%;
}
.ver a{
    color: #ffffff;
    text-decoration: none;
    margin-top: 20px;
    margin-left: 30px;
}

.selected {
    border: 2px solid #000; /* Adiciona uma borda ao item selecionado */
    background-color: #f0f0f0; /* Opcional: cor de fundo diferente para itens selecionados */
}

/* Estilo básico para a galeria */
.main-image-container {
    flex-grow: 1;
}
#main-image {
    max-width: 100%;
    height: auto;
}
.divi button {
    background-color: #dbdb07;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}
.divi button:hover {
    background-color: #218838;
}
#cart-container {
    border-top: 1px solid #000;
    margin-top: 20px;
    padding-top: 10px;
}
.sacola img {
    cursor: pointer;
}

/* Estilos para os botões de cor */
.cores {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-left: -180px;
}
.cor {
    width: 40px; /* Largura do botão */
    height: 40px; /* Altura do botão */
    border: none;
    border-radius: 2px; /* Borda arredondada */
    cursor: pointer;
    outline: none; /* Remove o contorno padrão */
    transition: transform 0.2s; /* Transição suave para o efeito de hover */
}
.cor:hover {
    transform: scale(1.1); /* Aumenta o botão quando passar o mouse */
}

/* Estilo do botão de compra */
.bt{
    margin-top: 20px;
    margin-left: 5px;
}
.botoes{
    margin-top: 25px;
}
.botoes .add-to-cart {
    background-color: black; 
    color: white; 
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s; /* Transição suave */
    width: 350px;
    height: 60px;
    font-size: 20px;
}
.botoes .add-to-cart:hover {
    background-color: #103227; /* Cor do topo para o hover */
}


#paginaprod{
    width: 150px;
    height: 40px;
    background-color: #000;
    margin-left: 100px;
}
#paginaprod a{
    color: #ccc;
    margin-top: 30px;
    margin-left: 35px;
}
.info{
    font-size: 25px;
    text-align: left;
    height: 50px;
    width: 250px;
    margin-left: 15px;
    margin-top: 15px;
}
.info a{
    color: #000;
    text-decoration: none;
}
#info{
    font-size: 20px;
    text-align: left;
    height: 50px;
    width: 250px;
    margin-left: 15px;
}
#info a{
    color: #000;
    text-decoration: none;
}
#comp{
    background-color: black;
    width: 150px;
    height: 50px;
    text-align: center;
    border-radius: 5px;
}
#comp a{
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    margin-top: 50px;
}
.cate{
    float: left;
    margin-left: 15px;
    margin-top: 20px;
}
.cate img {
    transition: 0.5s;
}
.cate img:hover {
    transform: scale(1.1);
}

/* Seção de Redes Sociais */
.social-media-section {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px #103227;
}

.social-media-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 40px; /* Ajustei a margem inferior */
}

/* Estilo dos ícones */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Ajustado para 20px de espaçamento */
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2;
    border-radius: 50%;
    width: 100px; /* Tamanho original dos círculos */
    height: 100px; /* Tamanho original dos círculos */
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    color: #333;
    font-size: 30px; /* Tamanho original dos ícones */
}

.social-icon span {
    margin-left: 10px; /* A margem entre o ícone e o texto */
    font-size: 14px;
    color: #333;
}

/* Efeito de hover */
.social-icon:hover {
    transform: scale(1.1);
    background-color: #ffb400;
    color: #fff;
}

.social-icon.instagram:hover {
    background-color: #e4405f;
}

.social-icon.facebook:hover {
    background-color: #3b5998;
}

.social-icon.twitter:hover {
    background-color: #1da1f2;
}

.social-icon.pinterest:hover {
    background-color: #e60023;
}

.social-icon.tiktok:hover {
    background-color: #000;
}

/* Responsividade */
@media (max-width: 600px) {
    .social-icons {
        flex-direction: column;
        gap: 20px; /* Ajustei o espaçamento para telas pequenas */
    }

    .social-icon {
        width: 50px; /* Ícones um pouco menores em telas pequenas */
        height: 50px;
        font-size: 25px; /* Tamanho de ícone reduzido */
    }

    .social-icon span {
        display: none; /* Ocultar o texto em telas pequenas */
    }
}

/* FIM seção de Redes Sociais */

.mySlides {display:none}
            .w3-left, .w3-right, .w3-badge {cursor:pointer}
            .w3-badge {height:13px;width:13px;padding:0}
.nome{
    text-align: center;
    font-size: 30px;
    color: #000;
    margin-top: 20px;
}

#paginaprod{
    width: 150px;
    height: 40px;
    background-color: #000;
    margin-left: 100px;
}
#paginaprod a{
    color: #ccc;
    margin-top: 30px;
    margin-left: 35px;
}

#comp{
    background-color: black;
    width: 150px;
    height: 50px;
    text-align: center;
    border-radius: 5px;
}
#comp a{
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    margin-top: 50px;
}


#foto{
    height: 600px;
    width: 650px;
    margin-top: 20px;
    position: relative;
    margin-left: 70px;
    float: left;
    background-color: #fefefe;
}

/* configs rodape */
.rodape {
    height: 200px;
    width: 100%;
    clear: both;
    margin-top: 25px;
    color: #ffffff;
    font-size: 25px;
    margin-top: 150px;
}

#part1 {
    float: left;
    margin-top: -600000px;
}


#altentic {
    color: #000000;
    margin-left: 70px;
    margin-top: -40px;
}

#ende {

    margin-left: 70px;
    color: #000000;
}
#ende a{
    text-decoration: none;
    color: #000;
}

#cont {
    margin-left: 70px;
    color: #000000;
}
#cont a{
    text-decoration: none;
    color: #000;
}
#part2 {
    margin-left: 490px;
    margin-top: -300px;
    float: left;
}

#nave {
    margin-left: 50px;
}

#nave a {
    text-decoration: none;
    color: #090909;
    transition: color 0.3s; /* Transição suave */
}

#nave a:hover {
    color: #1d4f3f; /* Cor ao passar o mouse */
}

#part3 {
    margin-top: -280px;
    margin-left: 780px;
}

#part3 a {
    color: #0b0b0b;
    text-decoration: none;
    transition: color 0.3s; /* Transição suave */
}

#part3 a:hover {
    color: #1d4f3f; /* Cor ao passar o mouse */
}

#part4 {
    margin-left: 1100px;
    margin-top: -200px;
    color: #000000;
}

.logomarca{
    margin-left: 750px;
    margin-top: 10px;
}
.logomarca h3{
    margin-top: 10px;
}
#part4 img{
    width: 300px;
    height: 100px;
}
.redes{
    margin-top: 10px;
    position: relative;
    margin-left: 1100px;
}
/* configs pagina index */

/* configs pagina teste */
#menu2{
    margin-top: 20px;
    margin-left: 50px;
}
#menu2 a{
    text-decoration: none;
    color: #1d4f3f;
}
#prod{
    width: 1700px;
    height: 1000px;
    margin-left: 40px;
    margin-top: 5px;
}
#ftprod{
    float: left;
    margin-left: 15px;
    background-color: #e4f0ec;
    border-radius: 2px;
}
#descri{
    margin-left: 20px;
    margin-top: 5px;
    float: left;
}

#divi button{
    opacity: 100px;
}
label,input[type='submit'] {
  display: block;
  margin-top: 1em;
  color: black;
}
input:checked {
  border: none;
  outline: 2px solid rgb(0, 0, 0);
}
#preco{
    font-size: 25px;
    
    }
    
.tamanho {
    margin-top: 10px;
    display: inline-block;
    width: 70px; /* Largura do botão */
    height: 40px; /* Altura do botão */
    line-height: 40px; /* Centraliza o texto verticalmente */
    background-color: #ffffff; /* Cor de fundo */
    border: #000 2px solid;
    color: rgb(0, 0, 0); /* Cor do texto */
    text-align: center;
    border-radius: 2px; /* Bordas arredondadas */
    margin: 2px; /* Espaço entre os botões */
    transition: background-color 0.3s, transform 0.3s; /* Transições suaves */
    }

.tamanho a{
    text-decoration: none; /* Remove o sublinhado do link */
}
    
.tamanho:hover {
    background-color: #103227; /* Cor ao passar o mouse */
    transform: scale(1.1); /* Efeito de aumentar */
    }
.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}
#guiatamanho{
    margin-top: 5px;

}
#guiatamanho a {
    color: #103227; /* Cor do link */
}
.popup {
    display: none; /* Escondido por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fundo escuro com transparência */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Coloca o pop-up acima de outros elementos */
    float: left;
}
.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-height: 80%; /* Limita a altura do popup */
    overflow-y: auto; /* Adiciona rolagem se necessário */
    text-decoration: none;
}
.popup img {
    max-width: 100%;
    height: auto;
}
.close {
    cursor: pointer;
    font-size: 24px;
    color: rgb(57, 154, 69);
    float: right;
}
.gallery {
    display: flex; /* Exibe a galeria em linha */
    margin-top: none;
    border: solid 1px rgb(255, 255, 255);
}
.thumbnails {
    display: flex;
    flex-direction: column; /* Coloca as miniaturas verticalmente */
    gap: 10px; /* Espaçamento entre as miniaturas */
    margin-right: 20px; /* Espaço entre miniaturas e imagem principal */
}
.thumbnail {
    cursor: pointer;
    border: 2px solid rgb(255, 255, 255);
}
.thumbnail:hover {
    border: 2px solid #103227; /* Altera a borda na passagem do mouse */
}

.mais{
    margin-top: 20px;
    width: 400px;
    height: 380px;
    border: #000 solid 1px;
}
/* configs pagina vestidos */
/* Estilo geral */
/* Estilos gerais */
/* Estilos do Container de Produtos */
.catalogo-container {
    padding: 20px;
}

/* Filtros */
.filtros-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.filtro-item {
    display: flex;
    flex-direction: column;
    margin: 0 15px;
}

.produtos-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px;
}

.produto-item {
    width: 22%; /* Aproximadamente 4 produtos por linha */
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.produto-item:hover {
    transform: translateY(-5px);
}

.produto-item img {
    width: 100%;
    height: auto;
}

.produto-info {
    padding: 15px;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
}

.produto-info p {
    margin: 5px 0;
}

.filtros-container {
    text-align: right;
    margin: 20px;
}

.btn-filtros {
    padding: 10px 15px;
    background-color: #103227;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.filtros-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.filtros-popup.aberto {
    display: flex;
}

.filtros-popup-content {
    background-color: #fff;
    padding: 30px;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    animation: popin 0.3s ease-out;
}

@keyframes popin {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fechar {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

.filtros-popup-content h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
    text-align: center;
}

label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: border 0.3s ease;
}

select:focus {
    border-color: #295333;
    outline: none;
}

.btn-filtrar {
    background-color: #295333;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    transition: background-color 0.3s;
}

.btn-filtrar:hover {
    background-color: #50b265;
}


/* configs pagina privacidade */
#tudo{
    border-radius: 5px;
    height: auto;
    width: 750px;
    background-color: #eeeeee;
    margin-top: 20px;
}
    
#text{
    text-align: justify;
    margin: 25px;
}
#text a{
    color: black;
}

/* configs pagina cadastro */
#aju{
    height: 400px;
    width: 800px;
    margin-top: 20px;
    border-radius: 10px;
    background-color: #eeeeee;
}
#infos{
    font-size: 10px;
}

#enviar{
    background-color: black;
    width: 70px;
    height: 30px;
    border-radius: 2px;
}
#enviar a{
    color: #ffffff;
    text-decoration: none;
}
#passarprods{
    clear: both;
}
.product {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px 0;
}

#cart-container {
    border-top: 1px solid #000;
    margin-top: 20px;
    padding-top: 10px;
}

/* Seção de Contato */
.contato-section {
    margin-top: 20px;
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

.contato-section h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #103227;
}

.contato-section p {
    font-size: 18px;
    color: #103227;
    margin-bottom: 20px;
}

.form-contato {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.input-container {
    margin-bottom: 20px;
    text-align: left;
}

.input-container label {
    font-size: 16px;
    color: #103227;
    display: block;
    margin-bottom: 8px;
}

.input-container input, .input-container textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #103227;
    border-radius: 4px;
}

.input-container textarea {
    height: 150px;
    resize: none;
}

.btn-submit {
    background-color: #000;
    color: #fff;
    font-size: 18px;
    padding: 15px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #103227;
}

/* Seção de Informações de Contato */
.informacoes-contato {
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}

.informacoes-contato h2 {
    font-size: 28px;
    color: #103227;
    margin-bottom: 15px;
}

.informacoes-contato p {
    font-size: 18px;
    color: #103227;
    margin-bottom: 30px;
}

.info-list {
    list-style-type: none;
    padding: 0;
    font-size: 16px;
}

.info-list li {
    margin-bottom: 10px;
}

/* Container Principal */
.container {
    width: 800px;
    margin-top: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* --- Carrinho de Compras --- */
.cart-container {
    width: 800px;
    margin-top: 20px;
    margin: 30px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



#cart-items {
    margin-top: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fafafa;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
}

.cart-item div {
    display: flex;
    align-items: center;
}

.cart-item img {
    border-radius: 5px;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.cart-item p {
    margin: 5px 10px;
    font-size: 14px;
    color: #555;
}

.cart-item button {
    margin: 0 5px;
    padding: 8px 15px;
    font-size: 14px;
    background-color: #103227;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cart-item button:hover {
    background-color: #3b816b;
}

.cart-summary {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: right;
}

.cart-summary p {
    font-size: 18px;
    font-weight: bold;
    color: #444;
}

.cart-summary .total {
    font-size: 22px;
    color: #103227;
}

.empty-cart {
    text-align: center;
    font-size: 18px;
    color: #888;
}

.comprar {
    text-align: center;
    margin-top: 20px;
}

.comprar a {
    display: inline-block;
    padding: 12px 25px;
    background-color: #103227;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #103227;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.comprar a:hover {
    background-color: #3b816b;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.comprar a:active {
    background-color: #2b5a47;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* --- Página de Rastreamento --- */
.tracking-container {
    text-align: center;
    margin-top: 50px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #ddd;
    margin-top: 20px;
    border-radius: 5px;
}

#progress-bar-fill {
    height: 100%;
    background-color: #103227;
    width: 0%;
    border-radius: 5px;
    transition: width 3s ease-in-out;
}

#tracking-status {
    font-size: 18px;
    color: #333;
    margin-top: 20px;
}

/* Barra de progresso na verificação de pagamento */
#status {
    font-size: 18px;
    color: #333;
    margin-top: 20px;
}

#verify-payment {
    background-color: #103227;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    cursor: pointer;
}

#verify-payment:hover {
    background-color: #3b816b;
}

/* Estilo do campo de cupom */
#coupon-code {
    padding: 8px;
    width: 200px;
    margin-right: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Estilos para a barra de progresso */
#progress-container {
    margin-top: 20px;
    text-align: center;
}

#payment-progress {
    width: 100%;
    height: 20px;
    margin-top: 10px;
}

button {
    padding: 10px 20px;
    background-color: #103227;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
}

button:hover {
    background-color: #3b816b;
}

#coupon-message {
    margin-top: 10px;
    font-size: 16px;
}

/* Estilo para o pop-up de cupom centralizado */
.coupon-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f1f1f1;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    text-align: center;
    width: 80%;
    max-width: 400px;
    display: none;
    z-index: 1000;
}

.coupon-popup h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.coupon-popup input {
    padding: 10px;
    font-size: 16px;
    width: 60%;
    margin-right: 10px;
    margin-bottom: 10px;
}

.coupon-popup button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #103227;
    color: white;
    border: none;
    cursor: pointer;
}

.coupon-popup button:hover {
    background-color: #3b816b;
}

.coupon-popup .copy-btn {
    background-color: #4CAF50;
    margin-top: 10px;
    cursor: pointer;
}
/* --- Página de Agradecimento --- */
.thank-you-container h1 {
    font-size: 32px;
    color: #103227;
    margin-bottom: 30px;
}

.thank-you-container h2 {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
}

.thank-you-container h3 {
    font-size: 20px;
    color: #555;
    margin-top: 15px;
}

.thank-you-container .order-details {
    margin-top: 30px;
}

.thank-you-container .order-details p {
    font-size: 18px;
    color: #444;
}

/* --- Página de Rastreamento --- */
.tracking-container h1 {
    font-size: 32px;
    color: #103227;
    margin-bottom: 30px;
}

.tracking-container h2 {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
}

.tracking-container h3 {
    font-size: 20px;
    color: #555;
    margin-top: 15px;
}

/* Barra de progresso */
.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    margin-top: 20px;
    border-radius: 5px;
    overflow: hidden;
}

#progress-bar-fill {
    height: 100%;
    width: 0;
    background-color: #103227;
    border-radius: 5px;
    transition: width 1s ease-in-out;
}

/* Animação do Caminhão (ou ícone) */
#delivery-icon img {
    width: 50px;
    height: auto;
    position: relative;
    transition: transform 3s ease-in-out;
}
/* Estilos gerais da página de rastreamento */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.tracking-container {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

h1 {
    text-align: center;
    color: #103227;
}

.tracking-form {
    margin-bottom: 20px;
}

.tracking-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.tracking-form button {
    width: 100%;
    padding: 10px;
    background-color: #103227;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.tracking-form button:hover {
    background-color: #3b816b;
}

/* Exibição das informações do pedido */
.order-info {
    margin-top: 20px;
}

.order-info p {
    font-size: 18px;
    line-height: 1.5;
}

/* Barra de Progresso */
.progress-bar {
    width: 100%;
    background-color: #ddd;
    height: 20px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
}

#progress-bar-fill {
    height: 100%;
    width: 0;
    background-color: #103227;
    border-radius: 5px;
}

/* Status do Pedido */
#tracking-status {
    margin-top: 20px;
    display: none;
}

#tracking-status p {
    font-size: 18px;
    font-weight: bold;
}

/* Animação do Caminhão */
#delivery-icon {
    margin-top: 20px;
    display: none;
    text-align: center;
}

#truck-icon {
    width: 50px;
    transition: transform 0.5s ease;
}

/* Popups */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.popup button {
    padding: 10px;
    background-color: #103227;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup button:hover {
    background-color: #3b816b;
}
        /* Centraliza o pop-up na tela */
        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            width: 80%;
            max-width: 400px;
        }

        /* Formatação do botão */
        .popup-content button {
            margin: 10px;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            border: none;
            background-color: #103227;
            color: white;
            border-radius: 5px;
        }

        /* Centraliza a barra de progresso e o status */
        .progress-bar-container, #tracking-status, #delivery-icon {
            display: none;
        }

        /* Animação do ícone de "Pedido Entregue" */
        #success-animation {
            display: none;
            text-align: center;
            font-size: 24px;
            color: #103227;
        }

        #success-animation img {
            width: 50px;
            height: 50px;
            margin-bottom: 10px;
        }
