#s-hospedaje {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0px;
}

#content-hospedaje {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.card-hospedaje {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
}

.card-hospedaje img {
    width: 100%;
    margin-bottom: 20px;
    aspect-ratio: 2/1;
    object-fit: cover;
}

.info-hospedaje {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

.nombre-hospedaje {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.nombre-hospedaje h3{
    width: 80%;
    text-align: start;
    font-size: 25px;
	font-family: "CenturyGothic-Bold";    
    color: #fff;
}

.info-hospedaje> p,
.contacto-hospedaje> h5{
    font-size: 18px;
    color: #fff;
}

.stars {
    display: flex;
    gap: 3px;
}

.stars svg {
    width: 22px;
    height: 22px;
    fill: #FFD700; /* amarillo Google */
}

/* Estrella vacía */
.star.empty {
    fill: #FFD700;
}

/* Media estrella */
.star.half path {
    stroke: #FFD700;
    stroke-width: 1;
}

.links-card-hosp {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.links-card-hosp .btn-flecha span{
    font-size: 16px;
}
@media screen and (max-width: 1024px) {
    #s-hospedaje {
        padding: 20px;
    }

    #content-hospedaje {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nombre-hospedaje h3 {
        width: 70%;
        font-size: 22px;
    }

    .stars {
        width: 30%;
    }

    .info-hospedaje> p, .contacto-hospedaje> h5 {
        font-size: 18px;
        line-height: 25px;
    }

    .contacto-hospedaje {
        gap: 8px;
        display: flex;
        flex-direction: column;
    }

    .links-card-hosp {
        flex-direction: column;
    }

    .links-card-hosp {
    align-items: flex-start;
}
}