/* Importa uma fonte elegante do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

body {
    background-color: #f0f2f5;
    color: #1c1e21;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alinha no topo */
    min-height: 100vh;
    margin: 0;
    padding: 40px 20px;
    box-sizing: border-box;
}

.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.logo-container {
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 300px;
    height: auto;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 16px;
    color: #606770;
    margin-bottom: 40px;
}

.link-list {
    display: grid;
    grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
    gap: 20px;
}

/* Em telas maiores, mostra duas colunas */
@media (min-width: 768px) {
    .link-list {
        grid-template-columns: 1fr 1fr;
    }
}

.link-item {
    background-color: #fff;
    border: 1px solid #dddfe2;
    border-radius: 8px;
    padding: 25px;
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease-in-out;
}

.link-item:hover {
    border-color: #1877f2;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.link-item h2 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #1c1e21;
}

.link-item p {
    margin: 0;
    font-size: 14px;
    color: #606770;
    line-height: 1.5;
}

.counter-container {
    background-color: #e7f3ff; /* Um azul bem claro */
    border: 1px solid #b7d6f5;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 40px;
}

.counter-container p {
    margin: 0;
    color: #0d3d75;
    font-size: 16px;
}