/* CONQUISTAS E PRÊMIOS */

:root {
    --primary-color: #e98b38;
    --text-dark: #2c2c2c;
    --text-light: #555;
    --bg-light: #f9f9f9;
    --bg-white: #fff;
    --font-title: 'Oswald', sans-serif; 
    --font-body: "Radio Canada", sans-serif;
}

main { padding-top: 130px; background-color: var(--bg-light); }

/* Header Simples (sem imagem de fundo para variar) */
.page-header-simple {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.page-header-simple h1 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    text-transform: uppercase;
}

.page-header-simple p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    opacity: 0.9;
}

/* SEÇÃO CERTIFICAÇÕES */
.certifications-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: var(--font-title); font-size: 2rem; color: var(--text-dark); text-transform: uppercase; }
.separator { width: 60px; height: 4px; background: var(--primary-color); margin: 10px auto; }

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cert-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 5px solid var(--primary-color);
    transition: transform 0.3s;
}

.cert-card:hover { transform: translateY(-10px); }

.icon-award {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cert-card h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.cert-org {
    font-family: var(--font-body);
    font-weight: bold;
    color: #888;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.cert-desc {
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.6;
}

/* SEÇÃO LISTA (TABELA) */
.awards-list-section {
    background: #fff;
    padding: 80px 20px;
}

.container-list {
    max-width: 1000px;
    margin: 0 auto;
}

.container-list h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.container-list p {
    font-family: var(--font-body);
    color: var(--text-light);
    margin-bottom: 30px;
}

.awards-table-container {
    overflow-x: auto; /* Permite rolar no celular se a tabela for larga */
}

.awards-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.awards-table th {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px;
    text-align: left;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
}

.awards-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
}

.awards-table tr:hover {
    background-color: #fff8f0; /* Highlight leve ao passar o mouse */
}

.year-cell {
    font-weight: bold;
    color: var(--primary-color) !important;
}

@media (max-width: 600px) {
    .awards-table th, .awards-table td { padding: 10px; font-size: 0.9rem; }
}