/* Geral */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: #009688;
    color: white;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

/* Principal */
main {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    flex: 3;
}

/* Cartão de produto */
.product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    width: 100%;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-card h2 {
    margin: 10px 0;
    font-size: 1.4em;
    color: #333;
}

.product-card p {
    font-size: 0.9em;
    color: #555;
    margin: 5px 0;
}

.product-card .price {
    font-size: 1.2em;
    color: #009688;
    margin: 10px 0;
}

/* Botão de compra */
.buy-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #45a049;
}

/* Carrinho de compras */
.cart {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    max-width: 300px;
    width: 100%;
    flex: 1;
}

.cart h2 {
    margin-top: 0;
    font-size: 1.8em;
    color: #333;
}

.cart ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart li {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

.cart li:last-child {
    border-bottom: none;
}

#cart-total {
    font-size: 1.2em;
    color: #009688;
    margin-top: 10px;
}

#checkout-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    font-size: 1em;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#checkout-button:hover {
    background-color: #45a049;
}


.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* Centralizar o modal */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 300px;
    border-radius: 8px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


