/* Configurações da Fonte do site */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/* Configurações das Cores */
:root {
    --cor1: rgb(11, 11, 158);
    --cor2: darkorange;
    --cor-texto: #333;
    --cor-fundo: cornsilk;
}


* {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: small;
    font-weight: 400;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body {
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.6;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--cor1);
    padding: 10px 20px;
}

.logo img {
    max-height: 80px;
}


nav ul {
    display: flex;
    gap: 15px;
}

nav ul li a {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: var(--cor2);
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: var(--cor1);
    color: var(--cor2);
}


.banner {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    margin: 20px 0;
}

.banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Cards */
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}

.produtos {
    text-align: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produtos img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.produtos h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.produtos p {
    color: var(--cor2);
    font-size: 1em;
    margin-bottom: 10px;
}

.produtos a {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--cor1);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.produtos a:hover {
    background-color: var(--cor2);
    color: var(--cor1);
}
.produtos a.esgotado {
    background-color: red; 
    color: white;          
    pointer-events: none;  
    cursor: default;       
}

.produtos a.esgotado:hover {
    background-color: darkred; 
}


.pagamento {
    display: flex;
    justify-content: center;
    margin: 20px;
}

.pag {
    text-align: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pag img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}



footer {
    background-color: var(--cor1); 
    color: white;
    padding: 20px 10px;
    display: flex; 
    justify-content: space-around; 
    align-items: center;
    flex-wrap: wrap; 
    text-align: center; 
}

footer .rodape {
    flex: 1;
    margin: 10px;
}

footer .rodape ul {
    list-style: none; 
    padding: 0;
}

footer .rodape ul li {
    margin: 5px 0; 
}

footer .rodape ul li a {
    color: white;
    text-decoration: none; 
    font-weight: bold;
    transition: color 0.3s ease;
}

footer .rodape ul li a:hover {
    color: var(--cor2); 
}

footer .rodape img {
    max-width: 30px;
    height: auto; 
    margin-top: 10px;
}


.rodape img {
    width: 40px;
    height: 40px;
    margin: 0 5px; 
    transition: transform 0.3s ease; 
}

.rodape img:hover {
    transform: scale(1.1); 
    cursor: pointer; 
}

.contador {
    text-align: center;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9; 
    border: 2px solid #eae581; 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    max-width: 600px;
    margin: 20px auto; 
}

.contador h2 {
    font-size: 1.8rem;
    color: #000000; 
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contador h3 {
    font-size: 1.2rem;
    color: #2e2d2c; 
    margin-top: 5px;
}

.contador p {
    font-size: 1.2rem;
    color: rgb(16, 16, 117); 
    margin-top: 5px;
}

.contador span {
    font-weight: bold;
    color: #000000; 
    font-size: 1.5rem;
}



.contacto {
    text-align: left;
    margin: 20px auto;
    max-width: 600px;
    font-family: Arial, sans-serif;
    padding: 15px;
    border-radius: 5px;
    background-color: #f4f4f4;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contacto h1 {
    text-align: center;
    font-size: 2rem;
    color: #333;
}

.contacto p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

.contacto a {
    color: #007BFF;
    text-decoration: none;
}

.contacto a:hover {
    text-decoration: underline;
}



body {
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: cornsilk;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(16, 16, 117);
    padding: 10px 20px;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo img {
    max-height: 80px;
}

nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
}

nav ul li a {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: darkorange;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: white;
    color: rgb(16, 16, 117);
}


.banner {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
}

.banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.produtos-container {
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

.produtos-container .titulo-pagina {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.produtos-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.produto {
    position: relative;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.produto h2 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.produto .descricao {
    font-size: 1rem;
    color: #777;
}

.imagem-produto {
    position: relative;
}

.imagem-produto img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    filter: grayscale(100%); 
    opacity: 0.8;
}

.imagem-produto .esgotado {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: red;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}


footer {
    background-color: rgb(16, 16, 117);
    color: white;
    text-align: center;
    padding: 20px 10px;
    margin-top: auto;
    width: 100%;
}

footer .rodape {
    margin: 10px 0;
}

footer .rodape ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer .rodape ul li a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .rodape ul li a:hover {
    color: darkorange;
}

footer .rodape img {
    max-width: 30px;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

footer .rodape img:hover {
    transform: scale(1.1);
    cursor: pointer;
}


















