/* Botón flotante del lado derecho (Reservar) */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 30px;
    background: #25D366; /* Color WhatsApp */
    border: 1px solid #25D366;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-weight: bold;
    font-family: 'Droid Serif', serif;
    transition: all 0.3s ease;
}

/* Botón flotante del lado izquierdo (WhatsApp) */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Posicionado a la izquierda */
    z-index: 1001;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 30px;
    background: #25D366; /* Color WhatsApp */
    border: 1px solid #25D366;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-weight: bold;
    font-family: 'Droid Serif', serif;
    transition: all 0.3s ease;
}

.floating-button:hover {
    color: #25D366;
    background: white;
    border-color: #25D366;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.floating-whatsapp:hover {
    color: #25D366;
    background: white;
    border-color: #25D366;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.floating-button i {
    margin-right: 8px;
    font-size: 16px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        left: 20px; /* Mantener a la izquierda en móviles */
        padding: 12px 16px;
        font-size: 14px;
    }
}
