/* Style de Cards Montserrat - CORREGIDO TOTAL Y REVISADO */

/* FONDOS DE TÍTULOS DENTRO DEL CONTAINER */
.fondo-titulo-verde {
    background-color: #e8f5e9;
    /* Verde clarito */
    padding: 15px;
    border-radius: 4px;
}

.fondo-titulo-marron {
    background-color: #efebe9;
    /* Marrón clarito */
    padding: 15px;
    border-radius: 4px;
}

.titulo-seccion-verde {
    color: #2e7d32;
    /* Verde Bold */
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-family: sans-serif !important;
    margin: 0;
}

.titulo-seccion-marron {
    color: #5d4037;
    /* Marrón Bold */
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-family: sans-serif !important;
    margin: 0;
}

/* CARDS GENERAL */
.card-espacio-verde {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-zoom {
    overflow: hidden;
    width: 100%;
}

.card-zoom img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.card-espacio-verde:hover .card-zoom img {
    transform: scale(1.1);
}

.card-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-texto-contenedor {
    text-align: center;
    margin-bottom: 0;
    font-family: sans-serif !important;
    font-size: 1.1rem;
}

/* LINKS ESPACIOS VERDES (Verde Bold que pasa a Azul) */
.card-link-verde {
    color: #2e7d32;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-link-verde:hover {
    color: #0000ff !important;
}

/* LINKS OBRAS ESCULTÓRICAS (Marrón suave que pasa a Azul) */
.card-link-marron {
    color: #8d6e63;
    /* Marrón suave */
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-link-marron:hover {
    color: #0000ff !important;
}

/* ESTRUCTURA GRILLA Y CENTRADO */
.justify-content-center {
    justify-content: center !important;
}