/* === Styles de index.html === */

.main-content {
    max-width: 1200px;
    margin: 15px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tile {
    background-color: #2e2e2e;
    padding: 10px;
    flex: 1 1 calc(25% - 10px);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #e6e6e6;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tile:hover {
    transform: translateY(-5px);
    background-color: #333;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.tile h2 {
    font-size: 1.2rem;
    color: #7289da;
    margin-bottom: 10px;
    border-bottom: 2px solid #444;
    padding-bottom: 5px;
}

.tile p {
    margin-bottom: 15px;
    text-align: justify;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 10px 0;
}

ul li {
    margin-bottom: 10px;
    color: #ccc;
    font-size: 0.8rem;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .tile {
        flex: 1 1 100%;
    }

    .tile h2 {
        font-size: 1.2rem;
    }

    .tile p {
        font-size: 0.8rem;
    }
}
