/* Estilizando o titulo da página*/
.titulo_pagina {
    font-size: 5.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
} 
/* Estilizando o body da página*/
body {
    font-family: Arial;
    background-color: antiquewhite;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}
/*Menu*/
.menu {
    margin-top: 20px;
    margin-bottom: 50px;
}

.menu p{
    font-size: 1.3rem;
    font-weight: bold;
    padding-left: 100px;
    padding-right: 100px;
}

.Cabeçalho {
    background-color: #a2f4272d;
    padding: 2px;
    
}

/*Rodapé*/

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: auto;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0;
    font-size: 1rem;
}



/*Criamos um cartão de produto para organizar os produtos da página*/
.cartao_produto {
    height: 450px;
    width: 500px;
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    width: 300px;
    min-height: 300px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    overflow: auto;
    transition: all 0.3 ease;
    position: relative;
    display: flex;
    flex-direction: column;
    vertical-align: top;
    background-color: rgb(255, 255, 255);
    justify-content: space-between;
}

/* Vamos ajustar as imagens de produto dentro do card de produto, com bordas e ajuste de tamanho, e cor de fundo*/
.foto_produto {
    width: 100%;
    height: 180px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    border: 1px solid black;
    border-radius: 8px;
    padding: 5px;
    background-color: white;
}


/* Conteudo texto do card de produto*/
.preco {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: #e53935;
    margin-top: 10px;
}

.nome_produto {
    margin-top: 20px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #333
}
/* Centralizamos o texto de dentro dos cartões de produto*/
.descricao_produto {
    text-align: center;
    margin: 0;
    color: #666;
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 6px;
}
.descricao_servicos {
    text-align: center;
    margin: 0;
    color: #666;
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 400; 
    margin-top: 6px;
}

/*------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------*/

/* Efeito hover, ao passar o cursor em cima do card de produto, o mesmo expande apresentando mais informações sobre o produto*/
.card_completo{
    max-height: 0;
    opacity: 0;
    
    transition: all 0.3s ease-in-out;
    width: 100%;
    margin-top: 10px;
}
.cartao_produto:hover{
    transform: scale(1.05);
    box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.25);
    
}

.cartao_produto:hover .card_completo{
    max-height: 400px;
    opacity: 1;
    
    padding-right: 5px;
}
/*-----------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------*/


/* aqui colocamos um espaço entre o titulo "Produtos" e os cartões de produto*/

.titulo_produto {
    margin-top: 50px;
    margin-bottom: 100px;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 10px;
}


/* Estilizando o Filtro */
.filtro_produto {
    width: 250px; 
    margin: 20px auto; 
    padding: 15px; 
    border: 1px solid #ccc; 
    border-radius: 8px; 
    background-color: #f9f9f9; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

/* Estilizando o título do filtro */
.titulo_filtro {
    font-size: 1.5rem; 
    font-weight: bold; 
    color: #333; 
    text-align: center; 
    margin-bottom: 15px; 
}

/* Estilizando os campos do formulário dentro do filtro */
.filtro_produto input[type="text"],
.filtro_produto select {
    width: 100%; 
    padding: 8px; 
    margin-bottom: 10px; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
    font-size: 1rem; 
}

/* Estilizando o botão do filtro */
.filtro_produto button {
    width: 100%; 
    padding: 10px; 
    background-color: #007BFF; 
    color: white; 
    border: none; 
    border-radius: 5px; 
    font-size: 1rem; 
    cursor: pointer;
    transition: background-color 0.3s ease; 
}

.filtro_produto button:hover {
    background-color: #0056b3; 
}

.botao_cadastro{
    float: right;
    background-color: #028979;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 15px;
    margin-right: 15%;
}
/*------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------Estilizando o modal de compra--------------------------------------------*/
.input_data_entega {
    width: 10px;
    padding: 8px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 100%;
}





/* Estilizando a página de produtos e o carosel de vídeos*/
iframe {
    border: none;
    height: 300px;
    border-radius: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    width: 850px;
    height: 500px;
}

.titulo_paginaprodutos {
    font-size: 3.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
}
.descricao_paginaprodutos {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c3e50;
    text-align: center;
    margin: 20px 100px 50px 100px;
    line-height: 1.6;
}


/* Estilo do carrossel */
.carrossel {
    position: relative;
    width: 100%;
    overflow: hidden; /* Esconde os itens fora da área visível */
    margin: 20px 0;
}

.carrossel-container {
    display: flex; 
    transition: transform 0.5s ease-in-out; 
}

.carrossel-item {
    min-width: 100%; 
    box-sizing: border-box;
    text-align: center;
}

/* Botões de navegação */
.carrossel-prev,
.carrossel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

.carrossel-prev {
    left: 20px;
    
}

.carrossel-next {
    right: 18px;
}

.descricao_video {
    font-size: 1.2rem;
    font-weight: 400;
    color: #2c3e50;
    text-align: center;
    margin: 100px 100px 100px 100px;
    line-height: 1.6;
    border: 1px solid #333; 
    border-radius: 10px; 
    padding: 20px; 
    background-color: #f9f9f9; 
}
/*------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------*/
/*---------------------------PÁGINA DE SERVIÇOS------------------------------*/
.titulo_servicos {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
}
/* Estilo geral do contêiner */
.conteudo_servicos {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.servicos_disponiveis{
    display: flex;
    font-size: 1.2rem;
    justify-content: center;
    gap: 150px;
    margin-top: 20px;
    font-weight: bold;
    margin-bottom: 40px;
}
.servicos_pagina h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
}
.servicos_pagina h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
}
.servicos_pagina p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.preco_retiradaLocal {
    font-size: 1.3rem;
    font-weight: bold;
}

.servicos_pagina b {
    color:rgb(5, 122, 5)
}
.entregaGratuita {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: rgb(0, 212, 0);
}
/*------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------PÁGINA DE CONTATOS-----------------------------------*/

.titulo_suporte {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
}

.problemas_contato {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
}

.departamento {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 20px;
}

.card_contato {
    width: 400px;
    height: 200px;
    flex-direction: column;
    align-items: center;
    border: 5px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    display: flex; 
    text-align: center;
    justify-content: center; 
}

.titulo_contato {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    
    text-transform: uppercase;
    letter-spacing: 1px;
    
}

.numero_telefone {
    font-size: 1.2rem;
    color: #333;
    
    text-align: center;
}
.email_contatos {
    font-size: 1.2rem;
    color: #333;
    
    text-align: center;
}

.card_departamento {
    margin-bottom: 65px;
}
/*------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------*/


