body {
    background: white;
}

#pagina-fotos {
    min-height: 60vh;
    background: white;
    color: #2c688b;
}

#titulo-fotos {
    font-family: 'Cunia', sans-serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c688b;
}

.grade-fotos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 320px;
    gap: 24px;
}

.foto-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d0e4f0;
    box-shadow: 0 4px 12px rgba(44, 104, 139, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.foto-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(44, 104, 139, 0.2);
}

.foto-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.foto-card:nth-child(3) {
    grid-row: span 2;
}

.foto-card:nth-child(3) img {
    height: 100%;
    object-position: center 20%;  /* um pouco acima do centro */
}

/* MOBILE */
@media (max-width: 768px) {
    .grade-fotos {
        grid-template-columns: 1fr;
    }

    #titulo-fotos {
        font-size: 28px;
    }

    .foto-card img {
        height: 220px;
    }
}