/* Design do Portal thedinis.com */
body {
    background-color: #f0f2f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    max-width: 1000px;
    padding: 20px;
}

header h1 {
    color: #007bff;
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    color: #666;
    margin-bottom: 40px;
}

.grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #333;
    width: 300px;
    transition: transform 0.3s ease;
}

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

.icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.6rem;
    margin: 10px 0;
}

.card p {
    color: #777;
    line-height: 1.5;
    margin-bottom: 25px;
}

.btn {
    background-color: #007bff;
    color: white;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
}

footer {
    margin-top: 50px;
    color: #999;
    font-size: 0.9rem;
}
