
/* ===================== */
/* INTRODUCCIÓ (Apartats) */
/* ===================== */
.Introduccio1, .Introduccio2 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.Apartat {
    background-color: #fff;
    border: 2px solid #a7b8cb;
    border-radius: 12px;
    width: 100%;
    max-width: 300px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Apartat:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.MedioA button {
    background-color: #003366;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.MedioA button:hover {
    background-color: #001f4d;
}

.MedioA img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.MedioA p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
    margin: 0;
    padding: 0 0.5rem;
}


