/* ======= TABELAS ======= */
table th, table td {
    padding: 14px 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: 'Segoe UI', sans-serif;
}

table th {
    background-color: #ca9de3;
    color: #2C3E50; /* Azul petróleo */
    text-align: left;
}

table tr:nth-child(even) {
    background-color: #fdfdfd;
}

table tr:hover {
    background-color: #fef6e4;
}

/* ======= MENSAGEM DE NENHUM PRODUTO ======= */
.no-products-found {
    color: #FF6B6B;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 25px;
    font-family: 'Segoe UI', sans-serif;
}

/* ======= TÍTULOS DOS PRODUTOS ======= */
.product-title {
    color: #2C3E50; /* Azul petróleo */
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Segoe UI', sans-serif;
}

/* ======= PREÇOS ======= */
.product-price {
    color: #27ae60; /* Verde suave */
    font-size: 20px;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
}

/* ======= BOTÕES ======= */
.button {
    background-color: #4ECDC4; /* Verde água */
    color: #ffffff;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #3BB3AC; /* Tom mais escuro no hover */
}

/* ======= CABEÇALHO ======= */
#header-main .header-1 {
    background-color: #ca9de3; /* Fundo branco */
    color: #2C3E50;
    font-size: 18px;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #4ECDC4;
    font-family: 'Segoe UI', sans-serif;
}

#header-main .header-1 a {
    color: #2C3E50;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

#header-main .header-1 a:hover {
    color: #4ECDC4;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
