.contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;

    .contenido_alojamientos {
        width: 90%;
        max-width: 1240px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .subtitulo_grande {
        padding: 20px;
        text-align: center;
        font-size: 3.52rem;
        font-weight: bolder;
        line-height: 1;
        color: var(--gris);
    }

    .subtitulo_medio {
        text-align: center;
        font-size: 2.041rem;
        font-weight: bold;
        line-height: 1.4;
        color: var(--gris);
        padding-bottom: 20px;

    }
    .subtiulo_pequeno {
        text-align: left;
        font-size: 1.83rem;
        font-weight: 600;
        padding-bottom: 30px;
    }
    .intro {
        padding: 20px 0;
        max-width: 1200px;
    }
    .placa {
        width: 200px;
    }
    .parrafo_2columnas {
        column-count: 2;
        text-align: justify;
        font-size: 1em;
        color: var(--gris);
    }

    .t_left {
        text-align: left;
    }

    .t_right {
        text-align: right;
    }
    .t_justify {
        text-align: justify;
    }
    .t_center {
        text-align: center;
    }
    .small {
        font-size: 0.8rem;
        color: var(--gris);
    }

    .opcion {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border-top: solid 1px var(--gris_claro);
        font-size: 1.5em;
        color: var(--gris);
        height: auto;
        min-height: 80px;
    }
    .opcion2 {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
        min-height: 40px;
        gap:10px;
    }

    .parrafo {
        text-align: justify;
        font-size: 1em;
        color: var(--gris);

    }
    .grande {
        font-size: 1.4em;
    }
    .muestra {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-bottom: 20px;
    }
}

.estrecho {
    width: 80%;
    max-width: 1000px;
}
.ancho {
    width: 90%;
}
.foto {
    width: 100%;
    height: 450px;
    object-fit:cover;
    object-position: center center;
}
.grafico {
    width: 60%;
    height: auto;
    min-width: 450px;
}
.redonda {
    border-radius: 15px;
}

.contenedor_fichas {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 50px;
    .tarifa{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        padding: 30px;
        max-width: 450px;
        height: auto;
        min-height: 850px;
        box-shadow: 10px 10px 20px var(--gris_claro);
        border-radius: 10px;
        background-color: var(--blanco);
        .tarifa_titulo {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            height: 150px;
        }
        .tarifa_cuerpo {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;;
            height: 650px;
        }
    }

    .ficha {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin: 10px;
        min-width: 300px;
        max-width: 450px;
    }

}




@media screen and (max-width: 990px) {
    .contenido{
        .parrafo_2columnas {
            column-count: 1;
        }
    }
    .parrafo_2columnas {
        column-count: 1;
    }
}
