.cursor_poiner
{
    cursor: pointer;
}

#idioma_english, #idioma_español
{
    opacity: 0;
}
.no_visible_siempre
{
    display: none;
}
.no_visible
{
    display: none;
}
@media (max-width: 840px)
{
    .no_visible
    {
        display: block;
    }
}

.img_cover_heigh
{
    height: 80vh !important;
    object-fit: cover;
    object-position: center;
}

.flex_custom
{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.w_100
{
    width: 100%;
}

.width_custom_form
{
    width: 50%;
}
@media (max-width: 840px)
{
    .width_custom_form
    {
        width: 90%;
    }
}

.boton_reservas
{
    background-color: black !important;
    color: white;
    transition: all 0.3s ease;
    padding: 1.2rem;
}
.boton_reservas:hover
{
    background-color: #008B8B !important;
}

.margin_bottom
{
    margin-bottom: 10px !important;
}

.col_12
{
    width: 100%;
}
.col_6
{
    width: 50%;
}
.flex_center_center
{
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex_start_center_wrap
{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
}
.p_3
{
    padding: 30px !important;
}

/* ── Modal popup imagen ── */
.modal-promo-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9998;
}
.modal-promo-overlay.activo {
    display: block;
}
.modal-promo {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    max-width: 90vw;
    max-height: 90vh;
}
.modal-promo.activo {
    display: block;
}
.modal-promo-img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
}
.modal-promo-cerrar {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #222;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.2s;
}
.modal-promo-cerrar:hover {
    background: #f0f0f0;
}
@media (max-width: 768px) {
    .modal-promo {
        width: 90%;
    }
    .modal-promo-img {
        width: 100%;
        max-height: 80vh;
    }
}