.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .iframe-container {
        padding-bottom: 100%;
    }
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    margin: 0 auto;
}
.containerbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.box {
    flex: 1 1 calc(22% - 20px); /* 4 boxes por línea */
    margin: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
    margin-bottom: 20px;
}
.box img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}
.box h4 {
    margin-top: 10px;
    font-size: 16px;
}
@media (max-width: 768px) {
    .box {
        flex: 1 1 100%;
        margin: 10px 0;
    }

    .box img {
        width: 100%;
        height: auto;
    }
}
.floating-button { 
    position: fixed;
    float: right;
    right: 20px;
    bottom: 20px; /* Cambia top a bottom para una mejor posición en móvil */
    padding: 10px 15px;
    background-color: rgba(0, 123, 255, 0.7); /* Color de fondo semi transparente */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    opacity: 0.7; /* Opacidad inicial */
}

.floating-button:hover {
    background-color: rgba(0, 123, 255, 1); /* Opaco al pasar el mouse */
    opacity: 1; /* Opacidad al pasar el mouse */
}

/* Media Query para pantallas pequeñas */
@media (max-width: 768px) {
    .floating-button {
        padding: 10px; /* Reduce el padding para móviles */
        font-size: 14px; /* Ajusta el tamaño de fuente */
    }
}
.reserve-button-blue{
    display: inline-block; margin-top: 20px; padding: 10px 15px; background-color: #007BFF; color: white; text-decoration: none; border-radius: 5px;
}
.reserve-button-red{
    display: inline-block; margin-top: 20px; padding: 10px 15px; background-color: #f80612; color: white; text-decoration: none; border-radius: 5px;
}
.reserve-button-green{
    display: inline-block; margin-top: 20px; padding: 10px 15px; background-color: #36f806; color: white; text-decoration: none; border-radius: 5px;
}