/* Sección de tarjetas de Facebook */
.tarjetas-facebook {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: #eef2f7;
}

.card-face {
    position: relative;
    width: 280px;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: transform 0.3s;
    cursor: pointer;
}

.card-face:hover {
    transform: scale(1.05);
}

.card-face .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.65);
    color: #fff;
    padding: 15px;
    text-align: center;
}

.card-face h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.card-face a {
    display: inline-block;
    margin-top: 8px;
    color: #ffcc00;
    text-decoration: none;
    font-size: 14px;
}

.card-face a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .tarjetas-facebook {
        flex-direction: column;
        align-items: center;
    }

    .card-face {
        width: 90%;
        height: 280px;
    }
}

/* Titulo*/
.titulo-facebook {
    text-align: center;
    font-family: 'Playfair Display', serif; /* tipografía elegante */
    font-size: 28px;
    font-weight: bold;
    color: #003366; /* azul corporativo */
    margin-bottom: 10px;
    position: relative;
}

.titulo-facebook::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ffcc00; /* línea decorativa amarilla */
    margin: 8px auto 0;
    border-radius: 2px;
}

