body {
    background-color: #fafafa;
}

.first-part {
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

/* Titulo */

.title-ficha {
    display: flex;
    max-width: 980px;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 20px;
    justify-content: center;

}

.title-ficha p {
    color: var(--text-color);
    font-size: 30px;
    font-weight: 410;
}

/* Fullscreen */

.preview-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    max-width: 1300px;
    height: 730px;
    width: 100%;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    border-radius: 15px;
    padding: 5px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.preview-box.show {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.3s ease;
}

.image-box {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    position: relative;
}

.slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    height: 50px;
    width: 60px;
    line-height: 50px;
    text-align: center;
}

.slide.prev {
    left: 0px;
}

.slide.next {
    right: 0px;
}


.image-box img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.shadow {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    display: none;
    background: rgba(0, 0, 0, 0.45);
}

.slider-btn-close {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
}

.slider-btn-close i {
    font-size: 30px;
    text-align: center;
    margin: 5px;
}

/* carrusel */

.container {
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.slideshow {
    width: 88%;
    height: max-content;
    margin: auto;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid;
    border-color: var(--color-grey);
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 3px 0 rgb(42 42 42 / 5%);
    position: relative;
}

.slider {
    height: max-content;
    display: flex;
}

.slider-section {
    margin: 5px;
    cursor: pointer;
}

.slider-img {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    pointer-events: none;
    border: 1px solid;
    border-color: var(--color-grey);
}

.slider-btn {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
    border: none;
}

.slider-btn i {
    font-size: 30px;
    text-align: center;
    margin: 5px;
}

.slider-btn:hover {
    background: #fff;
}

.slider-btn-left {
    left: 20px;
    
}

.slider-btn-right {
    right: 20px;
}


/* Descripcion */

.container-block {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 25px;
}

.text-block {
    width: 55%;
    box-sizing: border-box;
    border: 1px solid;
    border-color: var(--color-grey);
    background-color: #fff;
    /* margin-right: 50px; */
    margin-top: 24px;
    box-shadow: 0 2px 3px 0 rgb(42 42 42 / 5%);
}

.text-descrip {
    width: 100%;
    height: max-content;
    padding: 30px 30px;
}

.text-descrip-title {
    height: 25px;
}

.descrip-title {
    font-weight: 550;
    font-size: 20px;
    color: var(--text-color);
}

.descrip-body {
    height: max-content;
}

.body-text-title {
    margin-top: 16px;
    font-weight: 400;
    font-size: 17px;
    color: var(--text-color);
}

.body-text {
    max-height: max-content;
    line-height: 24px;
    font-weight: 400;
    font-size: 17px;
    color: var(--text-color);
    word-break: break-word;
    white-space: pre-line;
}

.texto-info {
    width: 30%;
    height: max-content;
    flex-direction: column;
    box-sizing: border-box;
    display: flex;
    border: 1px solid;
    border-color: var(--color-grey);
    /* border-radius: 3%; */
    background-color: #fff;
    padding-top: 15px;
    padding-left: 5px;
    padding-right: 15px;
    box-shadow: 0 2px 3px 0 rgb(42 42 42 / 5%);
    margin-top: 24px;
}

.all-info {
    display: block;
    text-align: center;
}

.tags {
    background-color: #fff;
    border: 1px solid var(--color-grey);
    height: 24px;
    border-radius: 4px;
    padding: 0 8px;
    display: inline-block;
}

.tag {
    color: #7e7e7e;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.prices {
    align-items: center;
    height: 30px;
    padding-top: 15px;
}

.price {
    color: var(--text-color);
    font-size: 25px;
    font-weight: 600;
}

.expenses {
    box-sizing: border-box;
    height: 28px;
    padding-top: 10px;
}

.expense {
    font-weight: 500;
    color: #5f5f5f;
    font-size: 20px;
}

.contacs {
    background-color: #fff;
    border: 1px solid var(--color-grey);
    height: 30px;
    border-radius: 4px;
    padding: 0 8px;
    display: inline-block;
    margin-top: 25px;
}

.contac {
    text-decoration: none;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.contacs:hover {
    border-color: #00BB2D;
}

.contac:hover {
    color: #00BB2D;
}

.logos {
    list-style: none;
}

.logo {
    cursor: default;
}

.logo-list {
    list-style: none;
    display: block;
    padding-top: 25px;
}

.logo-list-item {
    text-align: left;
    font-size: 20px;
    text-align: left;
    width: max-content;
    height: 50px;
    align-items: center;
    font-weight: 700;
}

/* Mapa */

.map-container {
    justify-content: center;
    width: 100%;
    border: 1px solid;
    border-color: #e7e7e7;
    border-radius: 3%;
    background-color: #fff;
    margin-top: 24px;
    box-shadow: 0 2px 3px rgb(42 42 42 / 5%);
    margin-top: 50px;
}

.map {
    width: 100%;
    height: 600px;
}