body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: #000000;
}
.navbar-brand{
    font-size: 25px;
}
.hero-section {
    background: url('Img/pexels-victorfreitas-841130.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
}
.hero-section p {
    font-size: 1.25rem;
}
.card {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%; /* Faz o card ocupar toda a altura disponível */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribui o conteúdo uniformemente */

}
.card:hover {
    transform: translateY(-5px);
}
.card-img-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 200px;
    object-fit: cover;
    display: block; /* Garante que a imagem se comporte como um bloco */
    margin: 0 auto; /* Centraliza horizontalmente */
    object-fit: cover; /* Mantém a proporção da imagem */
    width: 100%; /* Faz a imagem ocupar toda a largura do card */
    height: 200px; /* Altura fixa para a imagem */
    object-fit: cover; /* Mantém a proporção da imagem */
}
.card-body {
    padding: 20px;
    flex-grow: 1; /* Faz o corpo do card ocupar o espaço restante */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Alinha o conteúdo no centro */
}
.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}
.card-text {
    font-size: 1rem;
    color: #555;
}
.btn-primary {
    background-color: #19c421;
    border-color: #19c421;
}
.btn-primary:hover {
    background-color: #69e965;
    border-color: #69e965;
}
.offcanvas {
    width: 400px !important;
}
.offcanvas-body {
    display: flex;
    flex-direction: column;
}
.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 5px;
    background-color: #fff;
}
.list-group-item button {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
}
.list-group-item button:hover {
    background-color: #c82333;
    border-color: #bd2130;
}
#wishlistItems {
    margin-top: 10px;
}
#checkoutSection {
    margin-top: 20px;
}
#paymentSection {
    margin-top: 20px;
    display: none;
}
footer {
    background-color: #000000;
    color: white;
    padding: 40px 0;
    margin-top: 40px;
}
footer a {
    color: #ffffff;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
.newsletter-form {
    display: flex;
    gap: 10px;
}
.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.newsletter-form button {
    padding: 10px 20px;
    background-color: #19c421;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}
.newsletter-form button:hover {
    background-color: #55ee55;
}
.navbar .btn-login {
    color: white;
    margin-left: auto; /* Alinha o botão à direita */
    font-size: 25px;
}
